Home
last modified time | relevance | path

Searched refs:type1 (Results 1 – 16 of 16) sorted by relevance

/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dvalarith.c92 struct type *type1, *type2, *valptrtype; in value_add() local
96 type1 = check_typedef (value_type (arg1)); in value_add()
99 if ((TYPE_CODE (type1) == TYPE_CODE_PTR in value_add()
102 (is_integral_type (type1) || is_integral_type (type2))) in value_add()
107 if (TYPE_CODE (type1) == TYPE_CODE_PTR) in value_add()
111 valptrtype = type1; in value_add()
134 struct type *type1, *type2; in value_sub() local
137 type1 = check_typedef (value_type (arg1)); in value_sub()
140 if (TYPE_CODE (type1) == TYPE_CODE_PTR) in value_sub()
145 LONGEST sz = find_size_for_pointer_math (type1); in value_sub()
[all …]
Dgnu-v2-abi.c94 struct type *type1 = check_typedef (value_type (arg1)); in gnuv2_virtual_fn_field() local
117 if (TYPE_TARGET_TYPE (context) != type1) in gnuv2_virtual_fn_field()
121 type1 = check_typedef (value_type (arg1)); in gnuv2_virtual_fn_field()
124 context = type1; in gnuv2_virtual_fn_field()
Dax-gdb.c91 static int type_wider_than (struct type *type1, struct type *type2);
92 static struct type *max_type (struct type *type1, struct type *type2);
759 type_wider_than (struct type *type1, struct type *type2) in type_wider_than() argument
761 return (TYPE_LENGTH (type1) > TYPE_LENGTH (type2) in type_wider_than()
762 || (TYPE_LENGTH (type1) == TYPE_LENGTH (type2) in type_wider_than()
763 && TYPE_UNSIGNED (type1) in type_wider_than()
770 max_type (struct type *type1, struct type *type2) in max_type() argument
772 return type_wider_than (type1, type2) ? type1 : type2; in max_type()
Dada-lang.c3349 struct type *type1 = in possible_user_operator_p() local
3364 return (!(numeric_type_p (type0) && numeric_type_p (type1))); in possible_user_operator_p()
3371 return (!(integer_type_p (type0) && integer_type_p (type1))); in possible_user_operator_p()
3379 return (!(scalar_type_p (type0) && scalar_type_p (type1))); in possible_user_operator_p()
3386 || (TYPE_CODE (type1) != TYPE_CODE_ARRAY in possible_user_operator_p()
3387 && (TYPE_CODE (type1) != TYPE_CODE_PTR in possible_user_operator_p()
3388 || (TYPE_CODE (TYPE_TARGET_TYPE (type1)) in possible_user_operator_p()
3392 return (!(numeric_type_p (type0) && integer_type_p (type1))); in possible_user_operator_p()
3691 equiv_types (struct type *type0, struct type *type1) in equiv_types() argument
3693 if (type0 == type1) in equiv_types()
[all …]
Dstabsread.c1381 struct type *type1; in read_type() local
1620 type1 = read_type (pp, objfile); in read_type()
1621 type = make_pointer_type (type1, dbx_lookup_type (typenums)); in read_type()
1625 type1 = read_type (pp, objfile); in read_type()
1626 type = make_reference_type (type1, dbx_lookup_type (typenums)); in read_type()
1630 type1 = read_type (pp, objfile); in read_type()
1631 type = make_function_type (type1, dbx_lookup_type (typenums)); in read_type()
1873 type1 = read_type (pp, objfile); in read_type()
1874 type = create_set_type ((struct type *) NULL, type1); in read_type()
Dhpacc-abi.c90 struct type *type1 = check_typedef (value_type (arg1)); in hpacc_virtual_fn_field() local
Dvalue.c368 struct type *type1; in value_contents_equal() local
372 type1 = check_typedef (value_type (val1)); in value_contents_equal()
374 len = TYPE_LENGTH (type1); in value_contents_equal()
Dhpread.c3184 struct type *type, *type1; in hpread_read_function_type() local
3206 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunc.retval, in hpread_read_function_type()
3209 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunctype.retval, in hpread_read_function_type()
3212 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunc_template.retval, in hpread_read_function_type()
3214 replace_type (type, type1); in hpread_read_function_type()
3386 struct type *type1 = NULL; in hpread_read_doc_function_type() local
3390 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->ddocfunc.retval, in hpread_read_doc_function_type()
3395 gdb_assert (type1 != NULL); in hpread_read_doc_function_type()
3397 replace_type (type, type1); in hpread_read_doc_function_type()
/mirbsd/src/lib/libncurses/src/form/
Dfld_ftlink.c52 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) in NCURSES_EXPORT()
56 T((T_CALLED("link_fieldtype(%p,%p)"), type1, type2)); in NCURSES_EXPORT()
57 if (type1 && type2) in NCURSES_EXPORT()
65 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS)) in NCURSES_EXPORT()
67 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE)) in NCURSES_EXPORT()
69 nftyp->left = type1; in NCURSES_EXPORT()
71 type1->ref++; in NCURSES_EXPORT()
/mirbsd/src/usr.bin/mail/
Dcmd1.c292 return(type1(msgvec, cmd, 0, 0)); in pipeit()
302 return(type1(msgvec, NULL, 1, 1)); in more()
313 return(type1(msgvec, NULL, 0, 1)); in More()
324 return(type1(msgvec, NULL, 1, 0)); in type()
335 return(type1(msgvec, NULL, 0, 0)); in Type()
342 type1(int *msgvec, char *cmd, int doign, int page) in type1() function
Dextern.h252 int type1(int *, char *, int, int);
/mirbsd/src/gnu/usr.bin/binutils/opcodes/
Dmaxq-dis.c151 get_reg_name (unsigned char reg_code, type1 arg_pos) in get_reg_name()
651 (type1) 0 /*DST*/), in print_insn()
656 get_reg_name (grp.dst, (type1) 0)); in print_insn()
682 (type1) 1 /*SRC*/), in print_insn()
697 (type1) 1 /*SRC*/)); in print_insn()
/mirbsd/src/gnu/usr.bin/binutils/include/opcode/
Dmaxq.h1036 type1; typedef
1041 type1 type;
/mirbsd/src/lib/libssl/src/doc/apps/
Dreq.pod173 The arg must be formatted as I</type0=value0/type1=value1/type2=...>,
Dca.pod259 The arg must be formatted as I</type0=value0/type1=value1/type2=...>,
/mirbsd/src/lib/libncurses/src/doc/
Dncurses-intro.doc2371 FIELD *link_fieldtype(FIELDTYPE *type1,