Home
last modified time | relevance | path

Searched defs:e (Results 1 – 25 of 40) sorted by relevance

12

/bionic/libc/include/
Dassert.h51 # define assert(e) ((void)0) argument
52 # define _assert(e) ((void)0) argument
54 # define _assert(e) assert(e) argument
56 # define assert(e) ((e) ? (void)0 : __assert2(__FILE__, __LINE__, __func__, #e)) argument
58 # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e)) argument
/bionic/linker/
Dlinked_list.h149 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) { in visit() local
159 for (LinkedListEntry<T>* e = head_, *p = nullptr; e != nullptr;) { in remove_if() local
184 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) { in find_if() local
202 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) { in find() local
213 for (LinkedListEntry<T>* e = head_; sz < array_length && e != nullptr; e = e->next) { in copy_to_array() local
221 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) { in contains() local
/bionic/tests/
Ddirent_test.cpp165 dirent* e = readdir(d); in TEST() local
185 dirent* e = readdir(d); in TEST() local
207 dirent* e; in TEST() local
224 dirent64* e; in TEST() local
242 dirent* e = NULL; in TEST() local
260 dirent64* e = NULL; in TEST() local
278 dirent* e; in TEST() local
306 dirent* e = NULL; in TEST() local
Dsys_select_test.cpp82 fd_set e; in TEST() local
137 fd_set e; in TEST() local
/bionic/libc/bionic/
Dclearenv.cpp33 char** e = environ; in clearenv() local
Dmntent.cpp43 mntent* getmntent_r(FILE* fp, struct mntent* e, char* buf, int buf_len) { in getmntent_r()
/bionic/libc/upstream-netbsd/android/include/
Dnetbsd-compat.h26 #define _DIAGASSERT(e) /* nothing */ argument
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dremque.c42 struct qelem *e = element; in remque() local
Dinsque.c42 struct qelem *e = entry; in insque() local
/bionic/libm/
Dsignbit.c50 int __signbitl(long double e) in __signbitl()
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_truncl.c45 int e = u.bits.exp - LDBL_MAX_EXP + 1; in truncl() local
Ds_modfl.c61 int e; in modfl() local
Ds_floorl.c58 int e = u.bits.exp - LDBL_MAX_EXP + 1; in floorl() local
Ds_ceill.c58 int e = u.bits.exp - LDBL_MAX_EXP + 1; in ceill() local
Ds_expm1f.c44 float y,hi,lo,c,t,e,hxs,hfx,r1,twopk; in expm1f() local
Ds_expm1.c135 double y,hi,lo,c,t,e,hxs,hfx,r1,twopk; in expm1() local
Ds_tanhl.c87 long double e, long double f) in divl()
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dhdtoa.c220 __hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, in __hldtoa()
326 __hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, in __hldtoa()
Dgethex.c50 Long e, e1; local
Dstrtodg.c186 int bdif, e, j, k, k1, nb, rv; local
347 int dsign, e, e1, e2, emin, esign, finished, i, inex, irv; local
/bionic/libc/upstream-netbsd/common/lib/libc/hash/sha1/
Dsha1.c107 do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R01()
117 do_R2(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R2()
127 do_R3(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R3()
137 do_R4(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R4()
152 uint32_t a, b, c, d, e; in SHA1Transform() local
/bionic/libc/dns/resolv/
Dres_cache.c1105 entry_free( Entry* e ) in entry_free()
1114 entry_mru_remove( Entry* e ) in entry_mru_remove()
1121 entry_mru_add( Entry* e, Entry* list ) in entry_mru_add()
1135 entry_hash( const Entry* e ) in entry_hash()
1146 entry_init_key( Entry* e, const void* query, int querylen ) in entry_init_key()
1165 Entry* e; in entry_alloc() local
1451 Entry* e; in _cache_dump_mru() local
1546 Entry* e ) in _cache_add_p()
1565 Entry* e = *lookup; in _cache_remove_p() local
1598 Entry* e; in _cache_remove_expired() local
[all …]
Dres_stats.c61 int e = 0; // errors in android_net_res_stats_aggregate() local
/bionic/libc/kernel/uapi/linux/
Dmap_to_7segment.h39 #define _SEG7(l,a,b,c,d,e,f,g) (a << BIT_SEG7_A | b << BIT_SEG7_B | c << BIT_SEG7_C | d << BIT_SEG7… argument
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregcomp.c194 #define SETERROR(e) seterr(p, (e)) argument
195 #define REQUIRE(co, e) (void) ((co) || SETERROR(e)) argument
196 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) argument
197 #define MUSTEAT(c, e) (void) (REQUIRE(MORE() && GETNEXT() == (c), e)) argument
198 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) argument
1212 int e) in seterr()

12