Home
last modified time | relevance | path

Searched refs:field (Results 1 – 16 of 16) sorted by relevance

/bionic/libc/include/sys/
Dqueue.h107 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument
108 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
109 (listelm)->field.le_next->field.le_prev = \
110 &(elm)->field.le_next; \
111 (listelm)->field.le_next = (elm); \
112 (elm)->field.le_prev = &(listelm)->field.le_next; \
115 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument
116 (elm)->field.le_prev = (listelm)->field.le_prev; \
117 (elm)->field.le_next = (listelm); \
118 *(listelm)->field.le_prev = (elm); \
[all …]
/bionic/tests/libs/
Delftls_skew_align_test_helper.cpp38 int field; member
43 int field; member
67 CHECK(var1.field == 13); in main()
68 CHECK(var2.field == 17); in main()
71 CHECK(var3.field == 0); in main()
72 CHECK(var4.field == 0); in main()
Delftls_align_test_helper.cpp34 int field; member
39 int field; member
59 CHECK(var1.field == 13); in main()
60 CHECK(var2.field == 17); in main()
61 CHECK(var3.field == 19); in main()
/bionic/tests/
Dstruct_layout_test.cpp30 #define CHECK_OFFSET(name, field, offset) \ in tests() argument
31 check_offset(#name, #field, offsetof(name, field), offset); in tests()
132 auto check_offset = [&](const char* name, const char* field, size_t offset, in TEST()
134 EXPECT_EQ(expected_offset, offset) << "offsetof(" << name << ", " << field << ")"; in TEST()
150 auto print_offset = [&](const char* name, const char* field, size_t offset, in TEST() argument
153 printf(" CHECK_OFFSET(%s, %s, %zu);\n", name, field, offset); in TEST()
/bionic/libc/kernel/uapi/linux/
Dvideodev2.h31field) ((field) == V4L2_FIELD_TOP || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INT… argument
32field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_… argument
33field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INTERLACED_TB || (field) == V4L2… argument
34 #define V4L2_FIELD_HAS_T_OR_B(field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_TOP || … argument
35 …define V4L2_FIELD_IS_INTERLACED(field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_… argument
36 #define V4L2_FIELD_IS_SEQUENTIAL(field) ((field) == V4L2_FIELD_SEQ_TB || (field) == V4L2_FIELD_SEQ_… argument
185 __u32 field; member
582 __u32 field; member
638 __u32 field; member
666 __u32 field; member
[all …]
Didxd.h274 uint64_t field[8]; member
325 uint64_t field[4]; member
347 uint64_t field[8]; member
Dv4l2-mediabus.h17 __u32 field; member
/bionic/libc/kernel/uapi/drm/
Ddrm_fourcc.h295 #define AMD_FMT_MOD_SET(field,value) ((__u64) (value) << AMD_FMT_MOD_ ##field ##_SHIFT) argument
296 #define AMD_FMT_MOD_GET(field,value) (((value) >> AMD_FMT_MOD_ ##field ##_SHIFT) & AMD_FMT_MOD_ ##f… argument
297 #define AMD_FMT_MOD_CLEAR(field) (~((__u64) AMD_FMT_MOD_ ##field ##_MASK << AMD_FMT_MOD_ ##field ##… argument
Damdgpu_drm.h219 #define AMDGPU_TILING_SET(field,value) (((__u64) (value) & AMDGPU_TILING_ ##field ##_MASK) << AMDGP… argument
220 #define AMDGPU_TILING_GET(value,field) (((__u64) (value) >> AMDGPU_TILING_ ##field ##_SHIFT) & AMDG… argument
/bionic/libc/upstream-netbsd/lib/libc/isc/
Deventlib_p.h188 #define emulMaskInit(ctx, field, ev, lastnext) \ argument
189 ctx->field.ctx = ctx; \
190 ctx->field.type = ev; \
191 ctx->field.result = lastnext;
/bionic/libc/bionic/
Dgrp_pwd_file.cpp58 bool FieldToUid(const char* field, uid_t* uid) { in FieldToUid() argument
59 if (field == nullptr) { in FieldToUid()
65 uid_t result = strtoul(field, &end, 0); in FieldToUid()
66 if (errno != 0 || field == end || *end != ':') { in FieldToUid()
/bionic/tests/headers/posix/
DREADME.md5 `.c` file in this directory. Every constant, macro, type, struct field,
/bionic/benchmarks/
DREADME.md67 following in the args field:
/bionic/docs/
Delf-tls.md50 The DTV's "generation" field is used to lazily update/reallocate the DTV when new modules are loaded
406 > question therefore is the exact field layouts required. Happily, the implementors of libpthread
419 `_thread_db_link_map_l_tls_modid` | Offset of a `link_map` field containing the module's 1-based TL…
646 `pthread_internal_t::tid` field. Past examples: http://b/17389248, [aosp/107467]. Reorganizing
/bionic/
DREADME.md89 # and it contains a field called st_size", but they won't necessarily say
/bionic/libc/
DAndroid.bp258 // The name of the tm_gmtoff field in our struct tm.