HomeSort by relevance Sort by last modified time
    Searched full:offsetof (Results 1 - 25 of 526) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp8/encoder/
asm_enc_offsets.c 23 DEFINE(vp8_block_coeff, offsetof(BLOCK, coeff));
24 DEFINE(vp8_block_zbin, offsetof(BLOCK, zbin));
25 DEFINE(vp8_block_round, offsetof(BLOCK, round));
26 DEFINE(vp8_block_quant, offsetof(BLOCK, quant));
27 DEFINE(vp8_block_quant_fast, offsetof(BLOCK, quant_fast));
28 DEFINE(vp8_block_zbin_extra, offsetof(BLOCK, zbin_extra));
29 DEFINE(vp8_block_zrun_zbin_boost, offsetof(BLOCK, zrun_zbin_boost));
30 DEFINE(vp8_block_quant_shift, offsetof(BLOCK, quant_shift));
32 DEFINE(vp8_blockd_qcoeff, offsetof(BLOCKD, qcoeff));
33 DEFINE(vp8_blockd_dequant, offsetof(BLOCKD, dequant))
    [all...]
  /frameworks/wilhelm/src/
classes.c 27 {MPH_OBJECT, INTERFACE_IMPLICIT_PREREALIZE, offsetof(C3DGroup, mObject)},
29 offsetof(C3DGroup, mDynamicInterfaceManagement)},
30 {MPH_3DLOCATION, INTERFACE_IMPLICIT, offsetof(C3DGroup, m3DLocation)},
31 {MPH_3DDOPPLER, INTERFACE_DYNAMIC_GAME, offsetof(C3DGroup, m3DDoppler)},
32 {MPH_3DSOURCE, INTERFACE_EXPLICIT_GAME, offsetof(C3DGroup, m3DSource)},
33 {MPH_3DMACROSCOPIC, INTERFACE_OPTIONAL, offsetof(C3DGroup, m3DMacroscopic)},
56 {MPH_OBJECT, INTERFACE_IMPLICIT_PREREALIZE, offsetof(CAudioPlayer, mObject)},
58 offsetof(CAudioPlayer, mDynamicInterfaceManagement)},
59 {MPH_PLAY, INTERFACE_IMPLICIT, offsetof(CAudioPlayer, mPlay)},
60 {MPH_3DDOPPLER, INTERFACE_DYNAMIC_GAME, offsetof(CAudioPlayer, m3DDoppler)}
    [all...]
  /ndk/tests/device/test-unwind-struct/jni/
main.c 21 CHECK_EQ(0, offsetof(struct _Unwind_Control_Block, exception_class));
22 CHECK_EQ(8, offsetof(struct _Unwind_Control_Block, exception_cleanup));
25 CHECK_EQ(0, offsetof(struct _Unwind_Exception, exception_class));
26 CHECK_EQ(8, offsetof(struct _Unwind_Exception, exception_cleanup));
27 CHECK_EQ(12, offsetof(struct _Unwind_Exception, private_1));
28 CHECK_EQ(16, offsetof(struct _Unwind_Exception, private_2));
31 CHECK_EQ(0, offsetof(struct _Unwind_Exception, exception_class));
32 CHECK_EQ(8, offsetof(struct _Unwind_Exception, exception_cleanup));
33 CHECK_EQ(12, offsetof(struct _Unwind_Exception, private_1));
34 CHECK_EQ(16, offsetof(struct _Unwind_Exception, private_2))
    [all...]
  /external/oprofile/libabi/
op_abi.c 37 { "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(struct opd_header, ctr_um) }
    [all...]
  /external/valgrind/main/memcheck/tests/linux/
sigqueue.c 18 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/kernel-headers/original/linux/
stddef.h 20 #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/PCH/
cxx-offsetof-base.h 1 // Header for PCH test cxx-offsetof-base.cpp
  /external/libvpx/libvpx/vp8/decoder/
asm_dec_offsets.c 17 DEFINE(bool_decoder_user_buffer_end, offsetof(BOOL_DECODER, user_buffer_end));
18 DEFINE(bool_decoder_user_buffer, offsetof(BOOL_DECODER, user_buffer));
19 DEFINE(bool_decoder_value, offsetof(BOOL_DECODER, value));
20 DEFINE(bool_decoder_count, offsetof(BOOL_DECODER, count));
21 DEFINE(bool_decoder_range, offsetof(BOOL_DECODER, range));
  /external/libvpx/libvpx/vp8/common/
asm_com_offsets.c 25 DEFINE(yv12_buffer_config_y_width, offsetof(YV12_BUFFER_CONFIG, y_width));
26 DEFINE(yv12_buffer_config_y_height, offsetof(YV12_BUFFER_CONFIG, y_height));
27 DEFINE(yv12_buffer_config_y_stride, offsetof(YV12_BUFFER_CONFIG, y_stride));
28 DEFINE(yv12_buffer_config_uv_width, offsetof(YV12_BUFFER_CONFIG, uv_width));
29 DEFINE(yv12_buffer_config_uv_height, offsetof(YV12_BUFFER_CONFIG, uv_height));
30 DEFINE(yv12_buffer_config_uv_stride, offsetof(YV12_BUFFER_CONFIG, uv_stride));
31 DEFINE(yv12_buffer_config_y_buffer, offsetof(YV12_BUFFER_CONFIG, y_buffer));
32 DEFINE(yv12_buffer_config_u_buffer, offsetof(YV12_BUFFER_CONFIG, u_buffer));
33 DEFINE(yv12_buffer_config_v_buffer, offsetof(YV12_BUFFER_CONFIG, v_buffer));
34 DEFINE(yv12_buffer_config_border, offsetof(YV12_BUFFER_CONFIG, border))
    [all...]
  /external/clang/test/Sema/
pragma-pack-2.c 13 extern int a0[offsetof(struct s0, f1) == 4 ? 1 : -1];
20 extern int a1[offsetof(struct s1, f1) == 2 ? 1 : -1];
33 extern int a3_0[offsetof(struct s3_0, f1) == 1 ? 1 : -1];
34 extern int a3_1[offsetof(struct s3_1, f1) == 4 ? 1 : -1];
47 extern int a4_0[offsetof(struct s4_0, f1) == 1 ? 1 : -1];
48 extern int a4_1[offsetof(struct s4_1, f1) == 4 ? 1 : -1];
59 extern int s5_0[offsetof(struct s5_0, f1) == 2 ? 1 : -1];
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/linux/
stddef.h 24 #undef offsetof macro
26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro

Completed in 676 milliseconds

1 2 3 4 5 6 7 8 91011>>