HomeSort by: relevance | last modified time | path
    Searched refs:struct_type (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
amd64-watchpoint-downgrade.c 18 struct struct_type struct
23 struct struct_type global_var;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
amd64-watchpoint-downgrade.c 18 struct struct_type struct
23 struct struct_type global_var;
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
unpack-selftests.c 34 struct type *struct_type = arch_composite_type (arch, "<<selftest>>", local
37 append_composite_type_field (struct_type, "field0", bt->builtin_int8);
38 append_composite_type_field_aligned (struct_type, "field1",
48 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 0) == -1);
49 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 1) == 23);
  /src/external/gpl3/gdb/dist/gdb/unittests/
unpack-selftests.c 34 struct type *struct_type = arch_composite_type (arch, "<<selftest>>", local
37 append_composite_type_field (struct_type, "field0", bt->builtin_int8);
38 append_composite_type_field_aligned (struct_type, "field1",
48 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 0) == -1);
49 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 1) == 23);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile.c 31 struct struct_type { struct
45 volatile struct struct_type *selffield;
60 volatile struct struct_type struct_object;
compile-cplus.c 34 struct struct_type { struct
48 struct struct_type *selffield;
63 volatile struct struct_type struct_object;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile.c 31 struct struct_type { struct
45 volatile struct struct_type *selffield;
60 volatile struct struct_type struct_object;
compile-cplus.c 34 struct struct_type { struct
48 struct struct_type *selffield;
63 volatile struct struct_type struct_object;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
fission-absolute-dwo.exp 48 declare_labels int4_type struct_type
56 struct_type: DW_TAG_structure_type {
79 {DW_AT_type :$struct_type}
fission-relative-dwo.exp 45 declare_labels int4_type struct_type
53 struct_type: DW_TAG_structure_type {
76 {DW_AT_type :$struct_type}
dw2-using-debug-str.exp 40 declare_labels int4_type struct_type
48 struct_type: DW_TAG_structure_type {
71 {DW_AT_type :$struct_type}
arr-stride.exp 82 {name struct_type}
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
dw2-using-debug-str.exp 40 declare_labels int4_type struct_type
48 struct_type: DW_TAG_structure_type {
71 {DW_AT_type :$struct_type}
fission-absolute-dwo.exp 48 declare_labels int4_type struct_type
56 struct_type: DW_TAG_structure_type {
79 {DW_AT_type :$struct_type}
fission-relative-dwo.exp 45 declare_labels int4_type struct_type
53 struct_type: DW_TAG_structure_type {
76 {DW_AT_type :$struct_type}
arr-stride.exp 82 {name struct_type}
fission-type-unit-locexpr.exp 55 # Definition of structure type "struct_type".
62 {DW_AT_name struct_type}
120 # Stub for "struct_type" type unit.
  /src/crypto/external/apache2/openssl/dist/test/helpers/
ssl_test_ctx.c 36 #define IMPLEMENT_SSL_TEST_BOOL_OPTION(struct_type, name, field) \
37 static int parse_##name##_##field(struct_type *ctx, const char *value) \
42 #define IMPLEMENT_SSL_TEST_STRING_OPTION(struct_type, name, field) \
43 static int parse_##name##_##field(struct_type *ctx, const char *value) \
50 #define IMPLEMENT_SSL_TEST_INT_OPTION(struct_type, name, field) \
51 static int parse_##name##_##field(struct_type *ctx, const char *value) \
  /src/crypto/external/bsd/openssl/dist/test/helpers/
ssl_test_ctx.c 37 #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) \
  /src/crypto/external/bsd/openssl.old/dist/test/
ssl_test_ctx.c 41 #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) \
  /src/external/gpl3/gcc/dist/gcc/jit/
libgccjit.h 710 gcc_jit_struct_as_type (gcc_jit_struct *struct_type);
715 gcc_jit_struct_set_fields (gcc_jit_struct *struct_type,
722 gcc_jit_struct_get_field (gcc_jit_struct *struct_type,
727 gcc_jit_struct_get_field_count (gcc_jit_struct *struct_type);
libgccjit.cc 648 gcc::jit::recording::struct_ *struct_type = type->is_struct (); local
649 return (gcc_jit_struct *)struct_type;
931 gcc_jit_struct_as_type (gcc_jit_struct *struct_type)
933 RETURN_NULL_IF_FAIL (struct_type, NULL, NULL, "NULL struct_type");
935 return static_cast <gcc_jit_type *> (struct_type->as_type ());
945 gcc_jit_struct_set_fields (gcc_jit_struct *struct_type,
950 RETURN_IF_FAIL (struct_type, NULL, loc, "NULL struct_type");
951 gcc::jit::recording::context *ctxt = struct_type->m_ctxt
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/
libgccjit.h 701 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);
libgccjit.cc 633 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)
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,
935 RETURN_IF_FAIL (struct_type, NULL, loc, "NULL struct_type");
936 gcc::jit::recording::context *ctxt = struct_type->m_ctxt
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
eval.c 2377 struct type *struct_type = check_typedef (struct_val->type ());
2390 while (fieldno < struct_type->num_fields ()
2391 && struct_type->field (fieldno).is_static ())
2393 if (fieldno >= struct_type->num_fields ())
2395 field_type = struct_type->field (fieldno).type ();
2397 && struct_type->field (fieldno).name ()[0] == '0')
2400 /* Here, struct_type is the type of the inner struct,
2409 field_type = struct_type->field (fieldno).type ();
2419 bitsize = struct_type->field (fieldno).bitsize ();
2420 bitpos = struct_type->field (fieldno).loc_bitpos ()
2375 struct type *struct_type = check_typedef (struct_val->type ()); local
    [all...]

Completed in 63 milliseconds

1 2