Searched refs:offsetof (Results 1 - 25 of 217) sorted by relevance

123456789

/external/libvpx/vp8/encoder/
H A Dasm_enc_offsets.c37 DEFINE(vp8_block_coeff, offsetof(BLOCK, coeff));
38 DEFINE(vp8_block_zbin, offsetof(BLOCK, zbin));
39 DEFINE(vp8_block_round, offsetof(BLOCK, round));
40 DEFINE(vp8_block_quant, offsetof(BLOCK, quant));
41 DEFINE(vp8_block_quant_fast, offsetof(BLOCK, quant_fast));
42 DEFINE(vp8_block_zbin_extra, offsetof(BLOCK, zbin_extra));
43 DEFINE(vp8_block_zrun_zbin_boost, offsetof(BLOCK, zrun_zbin_boost));
44 DEFINE(vp8_block_quant_shift, offsetof(BLOCK, quant_shift));
46 DEFINE(vp8_blockd_qcoeff, offsetof(BLOCKD, qcoeff));
47 DEFINE(vp8_blockd_dequant, offsetof(BLOCK
[all...]
/external/libvpx/vp8/decoder/
H A Dasm_dec_offsets.c28 DEFINE(detok_scan, offsetof(DETOK, scan));
29 DEFINE(detok_ptr_block2leftabove, offsetof(DETOK, ptr_block2leftabove));
30 DEFINE(detok_coef_tree_ptr, offsetof(DETOK, vp8_coef_tree_ptr));
31 DEFINE(detok_teb_base_ptr, offsetof(DETOK, teb_base_ptr));
32 DEFINE(detok_norm_ptr, offsetof(DETOK, norm_ptr));
33 DEFINE(detok_ptr_coef_bands_x, offsetof(DETOK, ptr_coef_bands_x));
35 DEFINE(detok_A, offsetof(DETOK, A));
36 DEFINE(detok_L, offsetof(DETOK, L));
38 DEFINE(detok_qcoeff_start_ptr, offsetof(DETOK, qcoeff_start_ptr));
39 DEFINE(detok_current_bc, offsetof(DETO
[all...]
/external/oprofile/libabi/
H A Dop_abi.c37 { "offsetof_node_key", offsetof(odb_node_t, key) },
38 { "offsetof_node_value", offsetof(odb_node_t, value) },
39 { "offsetof_node_next", offsetof(odb_node_t, next) },
41 { "offsetof_descr_size", offsetof(odb_descr_t, size) },
42 { "offsetof_descr_current_size", offsetof(odb_descr_t, current_size) },
44 { "offsetof_header_magic", offsetof(struct opd_header, magic) },
45 { "offsetof_header_version", offsetof(struct opd_header, version) },
46 { "offsetof_header_cpu_type", offsetof(struct opd_header, cpu_type) },
47 { "offsetof_header_ctr_event", offsetof(struct opd_header, ctr_event) },
48 { "offsetof_header_ctr_um", offsetof(struc
[all...]
/external/libvpx/vp8/common/
H A Dasm_com_offsets.c33 DEFINE(yv12_buffer_config_y_width, offsetof(YV12_BUFFER_CONFIG, y_width));
34 DEFINE(yv12_buffer_config_y_height, offsetof(YV12_BUFFER_CONFIG, y_height));
35 DEFINE(yv12_buffer_config_y_stride, offsetof(YV12_BUFFER_CONFIG, y_stride));
36 DEFINE(yv12_buffer_config_uv_width, offsetof(YV12_BUFFER_CONFIG, uv_width));
37 DEFINE(yv12_buffer_config_uv_height, offsetof(YV12_BUFFER_CONFIG, uv_height));
38 DEFINE(yv12_buffer_config_uv_stride, offsetof(YV12_BUFFER_CONFIG, uv_stride));
39 DEFINE(yv12_buffer_config_y_buffer, offsetof(YV12_BUFFER_CONFIG, y_buffer));
40 DEFINE(yv12_buffer_config_u_buffer, offsetof(YV12_BUFFER_CONFIG, u_buffer));
41 DEFINE(yv12_buffer_config_v_buffer, offsetof(YV12_BUFFER_CONFIG, v_buffer));
42 DEFINE(yv12_buffer_config_border, offsetof(YV12_BUFFER_CONFI
[all...]
/external/clang/test/CodeGen/
H A Darm-aapcs-zerolength-bitfield.c12 static int arr1_offset[(offsetof(struct t1, bar) == 1) ? 0 : -1];
21 static int arr2_offset[(offsetof(struct t2, bar) == 2) ? 0 : -1];
30 static int arr3_offset[(offsetof(struct t3, bar) == 4) ? 0 : -1];
39 static int arr4_offset[(offsetof(struct t4, bar) == 4) ? 0 : -1];
48 static int arr5_offset[(offsetof(struct t5, bar) == 8) ? 0 : -1];
58 static int arr6_offset[(offsetof(struct t6, bar2) == 2) ? 0 : -1];
68 static int arr7_offset[(offsetof(struct t7, bar2) == 3) ? 0 : -1];
78 static int arr8_offset[(offsetof(struct t8, bar2) == 5) ? 0 : -1];
88 static int arr9_offset[(offsetof(struct t9, bar2) == 5) ? 0 : -1];
98 static int arr10_offset[(offsetof(struc
[all...]
H A Darm-apcs-zerolength-bitfield.c16 static int arr1_offset[(offsetof(struct t1, bar) == 4) ? 0 : -1];
25 static int arr2_offset[(offsetof(struct t2, bar) == 4) ? 0 : -1];
34 static int arr3_offset[(offsetof(struct t3, bar) == 4) ? 0 : -1];
43 static int arr4_offset[(offsetof(struct t4, bar) == 4) ? 0 : -1];
52 static int arr5_offset[(offsetof(struct t5, bar) == 4) ? 0 : -1];
62 static int arr6_offset[(offsetof(struct t6, bar2) == 5) ? 0 : -1];
72 static int arr7_offset[(offsetof(struct t7, bar2) == 5) ? 0 : -1];
82 static int arr8_offset[(offsetof(struct t8, bar2) == 5) ? 0 : -1];
92 static int arr9_offset[(offsetof(struct t9, bar2) == 5) ? 0 : -1];
102 static int arr10_offset[(offsetof(struc
[all...]
/external/kernel-headers/original/linux/
H A Dstddef.h20 #undef offsetof macro
22 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
24 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
/external/clang/test/Sema/
H A Dpragma-pack-2.c12 extern int a0[offsetof(struct s0, f1) == 4 ? 1 : -1];
19 extern int a1[offsetof(struct s1, f1) == 2 ? 1 : -1];
32 extern int a3_0[offsetof(struct s3_0, f1) == 1 ? 1 : -1];
33 extern int a3_1[offsetof(struct s3_1, f1) == 4 ? 1 : -1];
46 extern int a4_0[offsetof(struct s4_0, f1) == 1 ? 1 : -1];
47 extern int a4_1[offsetof(struct s4_1, f1) == 4 ? 1 : -1];
58 extern int s5_0[offsetof(struct s5_0, f1) == 2 ? 1 : -1];
H A Dpragma-align-mac68k.c17 extern int a1_0[offsetof(struct s1, f0) == 0 ? 1 : -1];
18 extern int a1_1[offsetof(struct s1, f1) == 2 ? 1 : -1];
26 extern int a2_0[offsetof(struct s2, f0) == 0 ? 1 : -1];
27 extern int a2_1[offsetof(struct s2, f1) == 2 ? 1 : -1];
35 extern int a3_0[offsetof(struct s3, f0) == 0 ? 1 : -1];
36 extern int a3_1[offsetof(struct s3, f1) == 2 ? 1 : -1];
44 extern int a4_0[offsetof(struct s4, f0) == 0 ? 1 : -1];
45 extern int a4_1[offsetof(struct s4, f1) == 1 ? 1 : -1];
95 extern int a11_0[offsetof(struct s11, f0) == 0 ? 1 : -1];
96 extern int a11_1[offsetof(struc
[all...]
H A Dpragma-pack-5.c37 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
45 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
H A Doffsetof.c3 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) macro
17 x = offsetof(struct external_sun3_core, c_regs);
21 x = __builtin_offsetof(int, X[42].f2); // expected-error {{offsetof requires struct}}
31 int v1 = offsetof (struct s1, a) == 0 ? 0 : f();
54 int test1[__builtin_offsetof(struct incomplete, foo)]; // expected-error {{offsetof of incomplete type 'struct incomplete'}}
/external/valgrind/main/coregrind/
H A Dm_vki.c116 vg_assert(offsetof(t1,sa_handler) == offsetof(t2.ksa_handler));
117 vg_assert(offsetof(t1.sa_tramp) == offsetof(t2.sa_tramp));
118 vg_assert(offsetof(t1.sa_mask) == offsetof(t2.sa_mask));
119 vg_assert(offsetof(t1.sa_flags) == offsetof(t2.sa_flags));
120 vg_assert(offsetof(f1.sa_handler) == offsetof(f
[all...]
/external/iptables/libiptc/
H A Dlinux_stddef.h11 #undef offsetof macro
12 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
25 (type *)( (char *)__mptr - offsetof(type,member) );})
/external/libvpx/nestegg/halloc/src/
H A Dmacros.h18 #include <stddef.h> /* offsetof */
23 #define structof(p,t,f) ((t*)(- offsetof(t,f) + (char*)(p)))
/external/qemu/
H A Dgen-icount.h17 tcg_gen_ld_i32(count, cpu_env, offsetof(CPUState, icount_decr.u32));
23 tcg_gen_st16_i32(count, cpu_env, offsetof(CPUState, icount_decr.u16.low));
39 tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUState, can_do_io));
46 tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUState, can_do_io));
/external/valgrind/main/memcheck/tests/linux/
H A Dsigqueue.c18 fprintf(stdout, "offsetof(siginfo_t, si_signo) = %zd\n",
19 offsetof(siginfo_t, si_signo));
20 fprintf(stdout, "offsetof(siginfo_t, si_errno) = %zd\n",
21 offsetof(siginfo_t, si_errno));
22 fprintf(stdout, "offsetof(siginfo_t, si_code) = %zd\n",
23 offsetof(siginfo_t, si_code));
24 fprintf(stdout, "offsetof(siginfo_t, _sifields) = %zd\n",
25 offsetof(siginfo_t, _sifields));
/external/elfutils/libelf/
H A Delf_getident.c80 || (offsetof (struct Elf, state.elf32.ehdr)
81 == offsetof (struct Elf, state.elf64.ehdr))
H A Delf_newscn.c76 assert (offsetof (Elf, state.elf.scns_last)
77 == offsetof (Elf, state.elf32.scns_last));
78 assert (offsetof (Elf, state.elf.scns_last)
79 == offsetof (Elf, state.elf64.scns_last));
80 assert (offsetof (Elf, state.elf32.scns)
81 == offsetof (Elf, state.elf64.scns));
93 || (offsetof (Elf, state.elf32.scns)
94 == offsetof (Elf, state.elf64.scns))
H A Delf_end.c140 || (offsetof (struct Elf, state.elf32.rawchunks)
141 == offsetof (struct Elf, state.elf64.rawchunks))
154 || (offsetof (struct Elf, state.elf32.scns)
155 == offsetof (struct Elf, state.elf64.scns))
205 || (offsetof (struct Elf, state.elf32.scns)
206 == offsetof (struct Elf, state.elf64.scns))
217 || (offsetof (struct Elf, state.elf32.shdr)
218 == offsetof (struct Elf, state.elf64.shdr))
225 || (offsetof (struct Elf, state.elf32.phdr)
226 == offsetof (struc
[all...]
/external/blktrace/
H A Drbtree.h113 #undef offsetof macro
115 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
117 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
122 (type *)( (char *)__mptr - offsetof(type,member) );})
/external/qemu/hw/
H A Dsmbios.c118 smbios_add_field(0, offsetof(struct smbios_type_0, vendor_str),
121 smbios_add_field(0, offsetof(struct smbios_type_0, bios_version_str),
124 smbios_add_field(0, offsetof(struct smbios_type_0,
130 smbios_add_field(0, offsetof(struct smbios_type_0,
132 smbios_add_field(0, offsetof(struct smbios_type_0,
142 smbios_add_field(1, offsetof(struct smbios_type_1, manufacturer_str),
145 smbios_add_field(1, offsetof(struct smbios_type_1, product_name_str),
148 smbios_add_field(1, offsetof(struct smbios_type_1, version_str),
151 smbios_add_field(1, offsetof(struct smbios_type_1, serial_number_str),
160 smbios_add_field(1, offsetof(struc
[all...]
/external/clang/lib/include/
H A Dstddef.h62 #define offsetof(t, d) __builtin_offsetof(t, d) macro
/external/elfutils/libdwfl/
H A Dlines.c64 cu->lines = malloc (offsetof (struct Dwfl_Lines, idx[nlines]));
/external/clang/lib/Headers/
H A Dstddef.h62 #define offsetof(t, d) __builtin_offsetof(t, d) macro
/external/elfutils/libdw/
H A Dlibdw_alloc.c70 2 * minsize + offsetof (struct libdw_memblock, mem)));
77 newp->size = size - offsetof (struct libdw_memblock, mem);

Completed in 990 milliseconds

123456789