Searched refs:arg_type (Results 1 - 25 of 261) sorted by relevance

1234567891011

/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dstap-probe.h36 arg_type (arg_type_),
59 struct type *arg_type; member in struct:stap_parse_info
H A Di386-darwin-tdep.c186 struct type *arg_type = value_enclosing_type (args[i]); local
188 if (i386_m128_p (arg_type) && num_m128 < 4)
200 i386_darwin_arg_type_alignment (arg_type));
204 TYPE_LENGTH (arg_type));
213 args_space += align_up (TYPE_LENGTH (arg_type), 4);
H A Dlm32-tdep.c256 struct type *arg_type = check_typedef (value_type (arg)); local
261 switch (arg_type->code ())
268 if (TYPE_LENGTH (arg_type) < 4)
270 arg_type = builtin_type (gdbarch)->builtin_int32;
271 arg = value_cast (arg_type, arg);
279 val = extract_unsigned_integer (contents, TYPE_LENGTH (arg_type),
288 write_memory_unsigned_integer (sp, TYPE_LENGTH (arg_type), byte_order,
H A Dalpha-tdep.c329 struct type *arg_type = check_typedef (value_type (arg));
332 switch (arg_type->code ())
339 if (TYPE_LENGTH (arg_type) == 4)
343 arg_type = builtin_type (gdbarch)->builtin_int32;
344 arg = value_cast (arg_type, arg);
346 if (TYPE_LENGTH (arg_type) < ALPHA_REGISTER_SIZE)
348 arg_type = builtin_type (gdbarch)->builtin_int64;
349 arg = value_cast (arg_type, arg);
357 && TYPE_LENGTH (arg_type) == 4)
359 arg_type
327 struct type *arg_type = check_typedef (value_type (arg)); local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dstap-probe.h36 arg_type (arg_type_),
59 struct type *arg_type; member in struct:stap_parse_info
H A Di386-darwin-tdep.c186 struct type *arg_type = value_enclosing_type (args[i]); local
188 if (i386_m128_p (arg_type) && num_m128 < 4)
200 i386_darwin_arg_type_alignment (arg_type));
204 arg_type->length ());
213 args_space += align_up (arg_type->length (), 4);
H A Dlm32-tdep.c241 struct type *arg_type = check_typedef (value_type (arg)); local
246 switch (arg_type->code ())
253 if (arg_type->length () < 4)
255 arg_type = builtin_type (gdbarch)->builtin_int32;
256 arg = value_cast (arg_type, arg);
264 val = extract_unsigned_integer (contents, arg_type->length (),
273 write_memory_unsigned_integer (sp, arg_type->length (), byte_order,
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-generated-matchers.h65 // and refer to its type by 'arg_type'.
101 // Note that the type of the value being matched (arg_type) is
108 // takes an int, 'arg_type' will be int; if it takes an unsigned long,
109 // 'arg_type' will be unsigned long; and so on.
204 // 'arg_type' as that's determined by the context in which the matcher
268 template <typename arg_type>\
270 GTEST_REFERENCE_TO_CONST_(arg_type)> {\
275 GTEST_REFERENCE_TO_CONST_(arg_type) arg,\
295 template <typename arg_type>\
296 operator ::testing::Matcher<arg_type>() cons
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/pru/
H A Dpru-passes.c117 tree arg_type = TREE_VALUE (p);
118 if (chkp_type_has_function_pointer (arg_type))
162 tree arg_type = TREE_VALUE (p);
163 if (chkp_type_has_function_pointer (arg_type))
116 tree arg_type = TREE_VALUE (p); local
161 tree arg_type = TREE_VALUE (p); local
/netbsd-current/external/gpl3/gcc/dist/gcc/config/pru/
H A Dpru-passes.cc117 tree arg_type = TREE_VALUE (p);
118 if (chkp_type_has_function_pointer (arg_type))
162 tree arg_type = TREE_VALUE (p);
163 if (chkp_type_has_function_pointer (arg_type))
116 tree arg_type = TREE_VALUE (p); local
161 tree arg_type = TREE_VALUE (p); local
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dprintf-args.h74 } arg_type; typedef in typeref:enum:__anon6913
79 arg_type type;
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/intl/
H A Dprintf-args.h75 } arg_type; typedef in typeref:enum:__anon525
80 arg_type type;
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/libasprintf/
H A Dprintf-args.h75 } arg_type; typedef in typeref:enum:__anon533
80 arg_type type;
/netbsd-current/external/gpl2/texinfo/dist/intl/
H A Dprintf-args.h77 } arg_type; typedef in typeref:enum:__anon794
82 arg_type type;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-semantics.c179 tree arg_type = TREE_TYPE (arg); local
183 if (TREE_CODE (arg_type) == COMPLEX_TYPE)
188 else if (INTEGRAL_TYPE_P (arg_type) || SCALAR_FLOAT_TYPE_P (arg_type))
192 : omit_one_operand_loc (location, arg_type,
/netbsd-current/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-semantics.cc179 tree arg_type = TREE_TYPE (arg); local
183 if (TREE_CODE (arg_type) == COMPLEX_TYPE)
188 else if (INTEGRAL_TYPE_P (arg_type) || SCALAR_FLOAT_TYPE_P (arg_type))
192 : omit_one_operand_loc (location, arg_type,
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/spu/
H A Dspu-c.c130 tree var, arg_type, param_type = TREE_VALUE (param);
147 arg_type = TREE_TYPE (var);
156 || !SCALAR_TYPE_P (arg_type)
158 && !lang_hooks.types_compatible_p (param_type, arg_type))
129 tree var, arg_type, param_type = TREE_VALUE (param); local
/netbsd-current/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-objc-common.c158 tree arg_type = get_aka_type (TREE_VALUE (args)); local
159 arg_types.safe_push (arg_type);
160 type_ok_p &= (arg_type == TREE_VALUE (args));
168 tree arg_type; local
169 FOR_EACH_VEC_ELT_REVERSE (arg_types, i, arg_type)
170 args = tree_cons (NULL_TREE, arg_type, args);
/netbsd-current/external/gpl3/gcc/dist/gcc/c/
H A Dc-objc-common.cc158 tree arg_type = get_aka_type (TREE_VALUE (args)); local
159 arg_types.safe_push (arg_type);
160 type_ok_p &= (arg_type == TREE_VALUE (args));
168 tree arg_type; local
169 FOR_EACH_VEC_ELT_REVERSE (arg_types, i, arg_type)
170 args = tree_cons (NULL_TREE, arg_type, args);
/netbsd-current/external/gpl3/binutils.old/dist/ld/
H A Dldmisc.c72 int arg_type; local
118 arg_type = Bad;
128 arg_type = Vma;
132 arg_type = Ptr;
139 arg_type = Ptr;
146 arg_type = RelAddr;
151 arg_type = Int;
158 arg_type = Long;
165 if (arg_type != Bad)
169 args[arg_no].type = arg_type;
[all...]
/netbsd-current/external/gpl3/binutils/dist/ld/
H A Dldmisc.c73 int arg_type; local
119 arg_type = Bad;
129 arg_type = Vma;
133 arg_type = Ptr;
140 arg_type = Ptr;
147 arg_type = RelAddr;
152 arg_type = Int;
159 arg_type = Long;
166 if (arg_type != Bad)
170 args[arg_no].type = arg_type;
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/
H A Dldmisc.c73 int arg_type; local
119 arg_type = Bad;
129 arg_type = Vma;
133 arg_type = Ptr;
140 arg_type = Ptr;
147 arg_type = RelAddr;
152 arg_type = Int;
159 arg_type = Long;
166 if (arg_type != Bad)
170 args[arg_no].type = arg_type;
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/
H A Dconfig.c138 if (( Conf[i].arg_type & ARGS_TYPES ) == ARG_BINARY ) {
155 int rc, arg_user, arg_type, arg_syn, iarg; local
161 if(Conf->arg_type == ARG_IGNORED) {
166 arg_type = Conf->arg_type & ARGS_TYPES;
167 arg_user = Conf->arg_type & ARGS_USERLAND;
168 arg_syn = Conf->arg_type & ARGS_SYNTAX;
170 if((arg_type == ARG_DN) && c->argc == 1) {
218 if(arg_type && !Conf->arg_item && !(arg_syn & ARG_OFFSET)) {
227 if(arg_type
375 int rc, arg_type; local
446 int rc, arg_type; local
764 int arg_type = ct->arg_type & ARGS_TYPES; local
794 int arg_type = ct->arg_type & ARGS_TYPES; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Domp-simd-clone.c163 enum cgraph_simd_clone_arg_type arg_type; local
168 arg_type
172 arg_type
177 arg_type
184 arg_type = SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP;
185 clone_info->args[argno].arg_type = arg_type;
208 enum cgraph_simd_clone_arg_type arg_type; local
213 arg_type
217 arg_type
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Domp-simd-clone.cc163 enum cgraph_simd_clone_arg_type arg_type; local
168 arg_type
172 arg_type
177 arg_type
184 arg_type = SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP;
185 clone_info->args[argno].arg_type = arg_type;
208 enum cgraph_simd_clone_arg_type arg_type; local
213 arg_type
217 arg_type
[all...]

Completed in 494 milliseconds

1234567891011