Searched refs:a_type (Results 1 - 25 of 60) sorted by relevance

123

/external/jemalloc/include/jemalloc/internal/
H A Drb.h27 #define rb_node(a_type) \
29 a_type *rbn_left; \
30 a_type *rbn_right_red; \
33 #define rb_node(a_type) \
35 a_type *rbn_left; \
36 a_type *rbn_right; \
42 #define rb_tree(a_type) \
44 a_type *rbt_root; \
48 #define rbtn_left_get(a_type, a_field, a_node) \
50 #define rbtn_left_set(a_type, a_fiel
[all...]
H A Dph.h19 #define phn(a_type) \
21 a_type *phn_prev; \
22 a_type *phn_next; \
23 a_type *phn_lchild; \
27 #define ph(a_type) \
29 a_type *ph_root; \
33 #define phn_lchild_get(a_type, a_field, a_phn) \
35 #define phn_lchild_set(a_type, a_field, a_phn, a_lchild) do { \
39 #define phn_next_get(a_type, a_field, a_phn) \
41 #define phn_prev_set(a_type, a_fiel
[all...]
H A Dql.h2 #define ql_head(a_type) \
4 a_type *qlh_first; \
9 #define ql_elm(a_type) qr(a_type)
67 #define ql_head_remove(a_head, a_type, a_field) do { \
68 a_type *t = ql_first(a_head); \
72 #define ql_tail_remove(a_head, a_type, a_field) do { \
73 a_type *t = ql_last(a_head, a_field); \
H A Dtsd.h54 * Note that all of the functions deal in terms of (a_type *) rather than
55 * (a_type) so that it is possible to support non-pointer types (unlike
56 * pthreads TSD). example_tsd_cleanup() is passed an (a_type *) pointer that is
58 * function argument to (a_type *), then dereference the resulting pointer to
80 #define malloc_tsd_types(a_name, a_type)
82 #define malloc_tsd_types(a_name, a_type)
84 #define malloc_tsd_types(a_name, a_type) \
87 a_type val; \
90 #define malloc_tsd_types(a_name, a_type) \
93 a_type va
[all...]
H A Dqr.h2 #define qr(a_type) \
4 a_type *qre_next; \
5 a_type *qre_prev; \
/external/elfutils/backends/
H A Dalpha_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument
39 if (a_type != AT_HWCAP)
H A Darm_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument
39 if (a_type != AT_HWCAP)
H A Di386_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument
39 if (a_type != AT_HWCAP)
H A Dppc_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument
39 if (a_type != AT_HWCAP)
H A Dsparc_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument
39 if (a_type != AT_HWCAP)
/external/python/cpython2/Modules/
H A Dcgen.py197 for a_type, a_mode, a_factor, a_sub in database:
207 a_type, a_mode, a_factor, a_sub)
230 a_type, a_mode, a_factor, a_sub = database[i]
231 print '\t' + a_type,
248 a_type, a_mode, a_factor, a_sub = database[i]
263 a_type, a_mode, a_factor, a_sub = database[i]
273 a_type, a_mode, a_factor, a_sub = database[i]
274 if a_type[:9] == 'unsigned ':
275 xtype = a_type[9:]
277 xtype = a_type
[all...]
/external/valgrind/memcheck/tests/linux/
H A Dproc-auxv.c29 auxv_p->a_type != AT_NULL;
32 if (auxv_p->a_type == AT_ENTRY)
34 if (auxv_p->a_type == AT_PLATFORM)
45 if (auxv.a_type == AT_ENTRY)
47 if (auxv.a_type == AT_PLATFORM)
/external/valgrind/none/tests/solaris/
H A Dproc_auxv.c32 fprintf(stderr, "expected: type=%d, val=%ld\n", auxv->a_type,
34 fprintf(stderr, "got: type=%d, val=%ld\n", rauxv.a_type,
39 if (auxv->a_type == AT_NULL)
72 while (auxv->a_type != AT_NULL) {
73 if (auxv->a_type == AT_SUN_EXECNAME) {
/external/elfutils/libebl/
H A Deblauxvinfo.c88 ebl_auxv_info (Ebl *ebl, GElf_Xword a_type, const char **name, argument
91 int result = ebl->auxv_info (a_type, name, format);
92 if (result == 0 && a_type < nauxv_types && auxv_types[a_type].name != NULL)
95 *name = auxv_types[a_type].name;
96 *format = auxv_types[a_type].format;
/external/fio/arch/
H A Darch-sh.h35 for (auxv = (Elf32_auxv_t *) envp; auxv->a_type != AT_NULL; auxv++) {
36 if (auxv->a_type == AT_HWCAP) {
/external/elfutils/libelf/
H A Dgelf_update_auxv.c71 if (unlikely (src->a_type > 0xffffffffll)
87 auxv->a_type = src->a_type;
H A Dgelf_getauxv.c81 dst->a_type = src->a_type;
/external/google-breakpad/src/common/android/include/
H A Delf.h79 uint32_t a_type; member in struct:__anon6849
86 uint64_t a_type; member in struct:__anon6851
/external/linux-kselftest/tools/testing/selftests/powerpc/
H A Dutils.c50 while (p->a_type != AT_NULL) {
51 if (p->a_type == type) {
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest-test-part.h60 TestPartResult(Type a_type, argument
64 : type_(a_type),
/external/googletest/googletest/include/gtest/
H A Dgtest-test-part.h60 TestPartResult(Type a_type, argument
64 : type_(a_type),
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest-test-part.h60 TestPartResult(Type a_type, argument
64 : type_(a_type),
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-test-part.h60 TestPartResult(Type a_type, argument
64 : type_(a_type),
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-test-part.h60 TestPartResult(Type a_type, argument
64 : type_(a_type),
/external/protobuf/gtest/include/gtest/
H A Dgtest-test-part.h60 TestPartResult(Type a_type, argument
64 : type_(a_type),

Completed in 705 milliseconds

123