/bionic/libc/include/sys/ |
D | queue.h | 107 #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/ |
D | elftls_skew_align_test_helper.cpp | 38 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()
|
D | elftls_align_test_helper.cpp | 34 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/ |
D | struct_layout_test.cpp | 30 #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/ |
D | videodev2.h | 31 …field) ((field) == V4L2_FIELD_TOP || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INT… argument 32 …field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_… argument 33 …field) ((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 …]
|
D | idxd.h | 274 uint64_t field[8]; member 325 uint64_t field[4]; member 347 uint64_t field[8]; member
|
D | v4l2-mediabus.h | 17 __u32 field; member
|
/bionic/libc/kernel/uapi/drm/ |
D | drm_fourcc.h | 295 #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
|
D | amdgpu_drm.h | 219 #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/ |
D | eventlib_p.h | 188 #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/ |
D | grp_pwd_file.cpp | 58 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/ |
D | README.md | 5 `.c` file in this directory. Every constant, macro, type, struct field,
|
/bionic/benchmarks/ |
D | README.md | 67 following in the args field:
|
/bionic/docs/ |
D | elf-tls.md | 50 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/ |
D | README.md | 89 # and it contains a field called st_size", but they won't necessarily say
|
/bionic/libc/ |
D | Android.bp | 258 // The name of the tm_gmtoff field in our struct tm.
|