Home
last modified time | relevance | path

Searched refs:field (Results 1 – 10 of 10) 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/libc/kernel/uapi/linux/
Dvideodev2.h43field) ((field) == V4L2_FIELD_TOP || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INT… argument
44field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_… argument
45field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INTERLACED_TB || (field) == V4L2… argument
46 #define V4L2_FIELD_HAS_T_OR_B(field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_TOP || … argument
47 …define V4L2_FIELD_IS_INTERLACED(field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_… argument
48 #define V4L2_FIELD_IS_SEQUENTIAL(field) ((field) == V4L2_FIELD_SEQ_TB || (field) == V4L2_FIELD_SEQ_… argument
196 __u32 field; member
535 __u32 field; member
591 __u32 field; member
619 __u32 field; member
[all …]
Dbcache.h22 #define BITMASK(name,type,field,offset,size) static inline __u64 name(const type * k) \ argument
23 { return(k->field >> offset) & ~(~0ULL << size); } static inline void SET_ ##name(type * k, __u64 v…
24 { k->field &= ~(~(~0ULL << size) << offset); k->field |= (v & ~(~0ULL << size)) << offset; \
31 #define KEY_FIELD(name,field,offset,size) BITMASK(name, struct bkey, field, offset, size) argument
Dv4l2-mediabus.h28 __u32 field; member
/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/libc/kernel/uapi/drm/
Damdgpu_drm.h208 #define AMDGPU_TILING_SET(field,value) (((__u64) (value) & AMDGPU_TILING_ ##field ##_MASK) << AMDGP… argument
209 #define AMDGPU_TILING_GET(value,field) (((__u64) (value) >> AMDGPU_TILING_ ##field ##_SHIFT) & AMDG… argument
/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/libc/
DAndroid.bp217 // The name of the tm_gmtoff field in our struct tm.