Searched refs:e1 (Results 1 - 8 of 8) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
H A Dstrtodg.c347 int dsign, e, e1, e2, emin, esign, finished, i, inex, irv; local
553 e1 = e -= nf;
598 e1 -= e;
608 e1 -= i;
631 e1 -= e2;
642 e1 -= e;
647 e1 += nd - k;
649 /* Get starting approximation = rv * 10**e1 */
652 if (e1 > 0) {
653 if ( (i = e1
[all...]
H A Dgethex.c50 Long e, e1; local
140 e1 = n - 0x10;
142 if (e1 & 0xf8000000)
144 e1 = 10*e1 + n - 0x10;
147 e1 = -e1;
148 e += e1;
H A Dstrtod.c94 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
340 e1 = e -= nf;
430 e1 += nd - k;
452 /* Get starting approximation = rv * 10**e1 */
454 if (e1 > 0) {
455 if ( (i = e1 & 15) !=0)
457 if (e1 &= ~15) {
458 if (e1 > DBL_MAX_10_EXP) {
499 e1 >>= 4;
500 for(j = 0; e1 >
[all...]
H A Dmisc.c871 1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9,
/bionic/libc/bionic/
H A Dmalloc_debug_common.cpp122 const HashEntry* e1 = *static_cast<HashEntry* const*>(arg1); local
126 if (e1 == NULL) {
131 size_t nbAlloc1 = e1->allocations;
133 size_t size1 = e1->size & ~SIZE_FLAG_MASK;
H A Dmalloc_debug_leak.cpp178 HashEntry* e1 = g_hash_table->slots[i]; local
179 while (e1 != NULL) {
180 if (e1 == entry) {
183 e1 = e1->next;
/bionic/libc/kernel/tools/
H A Dcpp.py993 def is_equal_node(self,e1,e2):
994 if e1[0] != e2[0] or len(e1) != len(e2):
997 op = e1[0]
999 return e1[0] == e2[0]
1001 return self.is_equal_node(e1[1],e2[1]) and self.is_equal_node(e1[2],e2[2])
/bionic/libc/dns/resolv/
H A Dres_cache.c1182 entry_equals( const Entry* e1, const Entry* e2 ) argument
1186 if (e1->querylen != e2->querylen) {
1189 _dnsPacket_init(pack1, e1->query, e1->querylen);

Completed in 148 milliseconds