Searched refs:struct_type (Results 1 - 25 of 34) sorted by relevance

12

/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/
H A Dunpack-selftests.c35 struct type *struct_type = arch_composite_type (arch, "<<selftest>>", local
38 append_composite_type_field (struct_type, "field0", bt->builtin_int8);
39 append_composite_type_field_aligned (struct_type, "field1",
49 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 0) == -1);
50 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 1) == 23);
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/
H A Dunpack-selftests.c35 struct type *struct_type = arch_composite_type (arch, "<<selftest>>", local
38 append_composite_type_field (struct_type, "field0", bt->builtin_int8);
39 append_composite_type_field_aligned (struct_type, "field1",
49 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 0) == -1);
50 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 1) == 23);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
H A Dcompile.c31 struct struct_type { struct
45 volatile struct struct_type *selffield;
60 volatile struct struct_type struct_object;
H A Dcompile-cplus.c34 struct struct_type { struct
48 struct struct_type *selffield;
63 volatile struct struct_type struct_object;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
H A Dcompile.c31 struct struct_type { struct
45 volatile struct struct_type *selffield;
60 volatile struct struct_type struct_object;
H A Dcompile-cplus.c34 struct struct_type { struct
48 struct struct_type *selffield;
63 volatile struct struct_type struct_object;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
H A Dfission-relative-dwo.exp47 declare_labels int4_type struct_type
55 struct_type: DW_TAG_structure_type {
78 {DW_AT_type :$struct_type}
H A Ddw2-using-debug-str.exp42 declare_labels int4_type struct_type
50 struct_type: DW_TAG_structure_type {
73 {DW_AT_type :$struct_type}
H A Dfission-absolute-dwo.exp50 declare_labels int4_type struct_type
58 struct_type: DW_TAG_structure_type {
81 {DW_AT_type :$struct_type}
H A Darr-stride.exp84 {name struct_type}
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/
H A Dssl_test_ctx.c41 #define IMPLEMENT_SSL_TEST_BOOL_OPTION(struct_type, name, field) \
42 static int parse_##name##_##field(struct_type *ctx, const char *value) \
47 #define IMPLEMENT_SSL_TEST_STRING_OPTION(struct_type, name, field) \
48 static int parse_##name##_##field(struct_type *ctx, const char *value) \
55 #define IMPLEMENT_SSL_TEST_INT_OPTION(struct_type, name, field) \
56 static int parse_##name##_##field(struct_type *ctx, const char *value) \
/netbsd-current/crypto/external/bsd/openssl/dist/test/helpers/
H A Dssl_test_ctx.c37 #define IMPLEMENT_SSL_TEST_BOOL_OPTION(struct_type, name, field) \
38 static int parse_##name##_##field(struct_type *ctx, const char *value) \
43 #define IMPLEMENT_SSL_TEST_STRING_OPTION(struct_type, name, field) \
44 static int parse_##name##_##field(struct_type *ctx, const char *value) \
51 #define IMPLEMENT_SSL_TEST_INT_OPTION(struct_type, name, field) \
52 static int parse_##name##_##field(struct_type *ctx, const char *value) \
/netbsd-current/external/gpl3/gcc/dist/gcc/jit/
H A Dlibgccjit.h701 gcc_jit_struct_as_type (gcc_jit_struct *struct_type);
706 gcc_jit_struct_set_fields (gcc_jit_struct *struct_type,
713 gcc_jit_struct_get_field (gcc_jit_struct *struct_type,
718 gcc_jit_struct_get_field_count (gcc_jit_struct *struct_type);
H A Dlibgccjit.cc633 gcc::jit::recording::struct_ *struct_type = type->is_struct (); local
634 return (gcc_jit_struct *)struct_type;
916 gcc_jit_struct_as_type (gcc_jit_struct *struct_type) argument
918 RETURN_NULL_IF_FAIL (struct_type, NULL, NULL, "NULL struct_type");
920 return static_cast <gcc_jit_type *> (struct_type->as_type ());
930 gcc_jit_struct_set_fields (gcc_jit_struct *struct_type, argument
935 RETURN_IF_FAIL (struct_type, NULL, loc, "NULL struct_type");
936 gcc::jit::recording::context *ctxt = struct_type
972 gcc_jit_struct_get_field(gcc_jit_struct *struct_type, size_t index) argument
995 gcc_jit_struct_get_field_count(gcc_jit_struct *struct_type) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/jit/
H A Dlibgccjit.h640 gcc_jit_struct_as_type (gcc_jit_struct *struct_type);
645 gcc_jit_struct_set_fields (gcc_jit_struct *struct_type,
H A Dlibgccjit.c678 gcc_jit_struct_as_type (gcc_jit_struct *struct_type) argument
680 RETURN_NULL_IF_FAIL (struct_type, NULL, NULL, "NULL struct_type");
682 return static_cast <gcc_jit_type *> (struct_type->as_type ());
692 gcc_jit_struct_set_fields (gcc_jit_struct *struct_type, argument
697 RETURN_IF_FAIL (struct_type, NULL, loc, "NULL struct_type");
698 gcc::jit::recording::context *ctxt = struct_type->m_ctxt;
702 struct_type->get_fields () == NULL, ctxt, loc,
704 struct_type
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Deval.c2363 struct type *struct_type = check_typedef (value_type (struct_val));
2376 while (fieldno < struct_type->num_fields ()
2377 && field_is_static (&struct_type->field (fieldno)))
2379 if (fieldno >= struct_type->num_fields ())
2381 field_type = struct_type->field (fieldno).type ();
2383 && struct_type->field (fieldno).name ()[0] == '0')
2386 /* Here, struct_type is the type of the inner struct,
2395 field_type = struct_type->field (fieldno).type ();
2405 bitsize = TYPE_FIELD_BITSIZE (struct_type, fieldno);
2406 bitpos = struct_type
2361 struct type *struct_type = check_typedef (value_type (struct_val)); local
[all...]
H A Dvalops.c2158 struct type *struct_type = candidate.path.back ();
2173 TYPE_SAFE_NAME (struct_type),
2156 struct type *struct_type = candidate.path.back (); local
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/
H A Dcpcompletion.exp362 set struct_type "template2_struct<template2_ret_type<int> >"
370 "${ret_type} ${struct_type}::${method_name}${param_list}" \
371 "${struct_type}::${method_name}${param_list}"]
379 "${ret_type} ${struct_type}::${method_name}${param_list}" \
381 "${struct_type}::${method_name}${param_list}"] {
396 "${struct_type}::${method_name}" \
397 "${struct_type}::${method_name}${param_list}" \
398 "${ret_type} ${struct_type}::${method_name}" \
399 "${ret_type} ${struct_type}::${method_name}${param_list}"] {
402 [list "${struct_type}
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Deval.c288 struct type *struct_type = check_typedef (value_type (struct_val));
300 while (fieldno < struct_type->num_fields ()
301 && field_is_static (&struct_type->field (fieldno)))
303 if (fieldno >= struct_type->num_fields ())
305 field_type = struct_type->field (fieldno).type ();
307 && TYPE_FIELD_NAME (struct_type, fieldno)[0] == '0')
310 /* Here, struct_type is the type of the inner struct,
319 field_type = struct_type->field (fieldno).type ();
329 bitsize = TYPE_FIELD_BITSIZE (struct_type, fieldno);
330 bitpos = TYPE_FIELD_BITPOS (struct_type, fieldn
286 struct type *struct_type = check_typedef (value_type (struct_val)); local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/
H A Dcpcompletion.exp574 set struct_type "template2_struct<template2_ret_type<int> >"
582 "${ret_type} ${struct_type}::${method_name}${param_list}" \
583 "${struct_type}::${method_name}${param_list}"]
591 "${ret_type} ${struct_type}::${method_name}${param_list}" \
593 "${struct_type}::${method_name}${param_list}"] {
607 "${struct_type}::${method_name}" \
608 "${struct_type}::${method_name}${param_list}" \
609 "${ret_type} ${struct_type}::${method_name}" \
610 "${ret_type} ${struct_type}::${method_name}${param_list}"] {
613 [list "${struct_type}
[all...]
/netbsd-current/sys/fs/udf/
H A Decma167-udf.h71 uint8_t struct_type; member in struct:vrs_desc
/netbsd-current/external/gpl3/gcc.old/dist/gcc/objc/
H A Dobjc-next-runtime-abi-02.c2074 tree struct_type = TREE_TYPE (ref->refdecl); local
2086 constructor = objc_build_constructor (struct_type, initializer);
/netbsd-current/external/gpl3/gcc/dist/gcc/objc/
H A Dobjc-next-runtime-abi-02.cc2075 tree struct_type = TREE_TYPE (ref->refdecl);
2087 constructor = objc_build_constructor (struct_type, initializer);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Ddwarf2out.c19138 tree struct_type;
19305 ctx->struct_type, /* context_type */
22467 DECL_CONTEXT (member), /* struct_type */
24732 analyze_discr_in_predicate (tree operand, tree struct_type)
24737 /* Match field access to members of struct_type only. */
24740 && TREE_TYPE (TREE_OPERAND (operand, 0)) == struct_type
24806 tree struct_type,
24878 struct_type);
24923 struct_type);
24926 struct_type);
19125 tree struct_type; member in struct:vlr_context
24714 analyze_discr_in_predicate(tree operand, tree struct_type) argument
24787 analyze_variants_discr(tree variant_part_decl, tree struct_type, tree *discr_decl, dw_discr_list_ref **discr_lists_p, unsigned *discr_lists_length) argument
[all...]

Completed in 490 milliseconds

12