Searched refs:type1 (Results 1 - 14 of 14) sorted by relevance

/haiku-fatelf/src/libs/ncurses/form/
H A Dfld_ftlink.c40 | FIELDTYPE *type1,
52 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) argument
56 T((T_CALLED("link_fieldtype(%p,%p)"), type1, type2));
57 if (type1 && type2)
65 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS))
67 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE))
69 nftyp->left = type1;
71 type1->ref++;
H A Dllib-lform200 FIELDTYPE *type1,
H A Dllib-lformw200 FIELDTYPE *type1,
/haiku-fatelf/src/bin/gdb/gdb/
H A Dvalarith.c93 struct type *type1, *type2, *valptrtype;
97 type1 = check_typedef (VALUE_TYPE (arg1));
100 if ((TYPE_CODE (type1) == TYPE_CODE_PTR
103 (is_integral_type (type1) || is_integral_type (type2)))
108 if (TYPE_CODE (type1) == TYPE_CODE_PTR)
112 valptrtype = type1;
136 struct type *type1, *type2;
139 type1 = check_typedef (VALUE_TYPE (arg1));
142 if (TYPE_CODE (type1) == TYPE_CODE_PTR)
147 LONGEST sz = find_size_for_pointer_math (type1);
92 struct type *type1, *type2, *valptrtype; local
135 struct type *type1, *type2; local
296 struct type *type1, *type2; local
318 struct type *type1; local
624 struct type *type1 = check_typedef (VALUE_TYPE (arg1)); local
753 struct type *type1, *type2; local
1161 struct type *type1; local
1219 struct type *type1, *type2; local
1280 struct type *type1, *type2; local
[all...]
H A Dgnu-v2-abi.c96 struct type *type1 = check_typedef (VALUE_TYPE (arg1));
119 if (TYPE_TARGET_TYPE (context) != type1)
123 type1 = check_typedef (VALUE_TYPE (arg1));
126 context = type1;
95 struct type *type1 = check_typedef (VALUE_TYPE (arg1)); local
H A Dax-gdb.c92 static int type_wider_than (struct type *type1, struct type *type2);
93 static struct type *max_type (struct type *type1, struct type *type2);
764 type_wider_than (struct type *type1, struct type *type2)
766 return (TYPE_LENGTH (type1) > TYPE_LENGTH (type2)
767 || (TYPE_LENGTH (type1) == TYPE_LENGTH (type2) argument
768 && TYPE_UNSIGNED (type1)
775 max_type (struct type *type1, struct type *type2)
777 return type_wider_than (type1, type2) ? type1 : type2;
756 type_wider_than(struct type *type1, struct type *type2) argument
H A Dhpacc-abi.c88 struct type *type1 = check_typedef (VALUE_TYPE (arg1)); local
H A Dada-lang.c3344 struct type *type1 =
3359 return (!(numeric_type_p (type0) && numeric_type_p (type1)));
3366 return (!(integer_type_p (type0) && integer_type_p (type1)));
3374 return (!(scalar_type_p (type0) && scalar_type_p (type1)));
3381 || (TYPE_CODE (type1) != TYPE_CODE_ARRAY
3382 && (TYPE_CODE (type1) != TYPE_CODE_PTR
3383 || (TYPE_CODE (TYPE_TARGET_TYPE (type1))
3387 return (!(numeric_type_p (type0) && integer_type_p (type1)));
3690 equiv_types (struct type *type0, struct type *type1)
3692 if (type0 == type1)
3339 struct type *type1 = local
3681 equiv_types(struct type *type0, struct type *type1) argument
3716 struct type *type1 = SYMBOL_TYPE (sym1); local
5885 ada_prefer_type(struct type *type0, struct type *type1) argument
6550 struct type *type1 = TYPE_FIELD_TYPE (ada_check_typedef (type), 0); local
6591 struct type *type1 = ada_find_any_type (name); local
7029 struct type *type1, *type2; local
7810 struct type *type1 = VALUE_TYPE (arg1); local
[all...]
H A Dstabsread.c1385 struct type *type1;
1624 type1 = read_type (pp, objfile);
1625 type = make_pointer_type (type1, dbx_lookup_type (typenums));
1629 type1 = read_type (pp, objfile);
1630 type = make_reference_type (type1, dbx_lookup_type (typenums));
1634 type1 = read_type (pp, objfile);
1635 type = make_function_type (type1, dbx_lookup_type (typenums));
1877 type1 = read_type (pp, objfile);
1878 type = create_set_type ((struct type *) NULL, type1);
1381 struct type *type1; local
H A Dhpread.c3199 struct type *type, *type1;
3221 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunc.retval,
3224 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunctype.retval,
3227 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->dfunc_template.retval,
3229 replace_type (type, type1);
3401 struct type *type1 = NULL;
3405 type1 = lookup_function_type (hpread_type_lookup (dn_bufp->ddocfunc.retval,
3410 gdb_assert (type1 != NULL);
3412 replace_type (type, type1);
3184 struct type *type, *type1; local
3386 struct type *type1 = NULL; local
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlregexp.c2072 * @type1: an atom type
2081 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { argument
2082 if ((type1 == XML_REGEXP_EPSILON) ||
2083 (type1 == XML_REGEXP_CHARVAL) ||
2084 (type1 == XML_REGEXP_RANGES) ||
2085 (type1 == XML_REGEXP_SUBREG) ||
2086 (type1 == XML_REGEXP_STRING) ||
2087 (type1 == XML_REGEXP_ANYCHAR))
2097 if (type1 == type2) return(1);
2099 /* simplify subsequent compares by making sure type1 < type
[all...]
/haiku-fatelf/src/bin/rc/
H A Dparser.y582 same_type(type_t type1, type_t type2)
584 return type1.name == type2.name; // no need for strcmp
/haiku-fatelf/src/tests/kits/storage/
H A DAppFileInfoTest.cpp506 type_code type1, type2; local
508 bool equal = (types.GetInfo("types", &type1, &count1) == B_OK
510 && type1 == type2 && count1 == count2);
/haiku-fatelf/src/bin/bash/
H A DMANIFEST1033 tests/type1.sub f

Completed in 215 milliseconds