Searched refs:e2 (Results 1 – 12 of 12) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/ |
A D | expr.c | 51 return e2; in expr_alloc_and() 52 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and() 58 return e2; in expr_alloc_or() 59 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or() 175 if (e1->type != e2->type) switch (e2->type) { in expr_eliminate_eq() 183 e2 = expr_eliminate_yn(e2); in expr_eliminate_eq() 187 #undef e2 206 e2 = expr_copy(e2); in expr_eq() 355 if (e2->type != E_EQUAL && e2->type != E_UNEQUAL && e2->type != E_SYMBOL && e2->type != E_NOT) in expr_join_or() 419 if (e2->type != E_EQUAL && e2->type != E_UNEQUAL && e2->type != E_SYMBOL && e2->type != E_NOT) in expr_join_and() [all …]
|
A D | expr.h | 199 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2); 201 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); 202 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); 205 int expr_eq(struct expr *e1, struct expr *e2); 218 struct expr *expr_simplify_unmet_dep(struct expr *e1, struct expr *e2);
|
/l4re-core-master/lua/lib/contrib/src/ |
A D | lcode.c | 528 int r2 = (e2->k == VNONRELOC) ? e2->u.info : -1; in freeexps() 1361 freeexps(fs, e1, e2); in finishbinexpval() 1418 expdesc temp = *e1; *e1 = *e2; *e2 = temp; /* swap 'e1' and 'e2' */ in swapexps() 1429 if (tonumeral(e2, NULL) && luaK_exp2K(fs, e2)) { /* K operand? */ in codearith() 1475 else if (!(e2->k == VKINT && luaK_exp2RK(fs, e2))) { /* no constants? */ in codebitwise() 1529 swapexps(e1, e2); in codeeq() 1627 freeexp(fs, e2); in codeconcat() 1633 freeexp(fs, e2); in codeconcat() 1651 *e1 = *e2; in luaK_posfix() 1657 *e1 = *e2; in luaK_posfix() [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/ |
A D | generic_128.c | 68 int32_t e2; in generic_binary_to_decimal() local 74 e2 = 1 - bias - mantissaBits + 1 - 2; in generic_binary_to_decimal() 81 e2 = 1 - bias - mantissaBits - 2; in generic_binary_to_decimal() 84 e2 = ieeeExponent - bias - mantissaBits - 2; in generic_binary_to_decimal() 107 if (e2 >= 0) { in generic_binary_to_decimal() 110 const uint32_t q = log10Pow2(e2) - (e2 > 3); in generic_binary_to_decimal() 113 const int32_t i = -e2 + q + k; in generic_binary_to_decimal() 120 printf("%s * 2^%d / 10^%d\n", s(mv), e2, q); in generic_binary_to_decimal() 140 const uint32_t q = log10Pow5(-e2) - (-e2 > 1); in generic_binary_to_decimal() 141 e10 = q + e2; in generic_binary_to_decimal() [all …]
|
A D | d2s.c | 80 int32_t e2; in d2d() local 110 if (e2 >= 0) { in d2d() 113 const uint32_t q = log10Pow2(e2) - (e2 > 3); in d2d() 116 const int32_t i = -e2 + (int32_t) q + k; in d2d() 147 const uint32_t q = log10Pow5(-e2) - (-e2 > 1); in d2d() 148 e10 = (int32_t) q + e2; in d2d() 149 const int32_t i = -e2 - (int32_t) q; in d2d() 415 if (e2 > 0) { in d2d_small_int() 421 if (e2 < -52) { in d2d_small_int() 428 const uint64_t mask = (1ull << -e2) - 1; in d2d_small_int() [all …]
|
A D | d2fixed.c | 342 int32_t e2; in d2fixed_buffered_n() local 361 if (e2 >= -52) { in d2fixed_buffered_n() 362 const uint32_t idx = e2 < 0 ? 0 : indexForExponent((uint32_t) e2); in d2fixed_buffered_n() 370 const uint32_t j = p10bits - e2; in d2fixed_buffered_n() 392 printf("e2=%d\n", e2); in d2fixed_buffered_n() 394 if (e2 < 0) { in d2fixed_buffered_n() 395 const int32_t idx = -e2 / 16; in d2fixed_buffered_n() 528 int32_t e2; in d2exp_buffered_n() local 552 if (e2 >= -52) { in d2exp_buffered_n() 553 const uint32_t idx = e2 < 0 ? 0 : indexForExponent((uint32_t) e2); in d2exp_buffered_n() [all …]
|
A D | f2s.c | 41 int32_t e2; in f2d() local 45 e2 = 1 - FLOAT_BIAS - FLOAT_MANTISSA_BITS - 2; in f2d() 55 printf("-> %u * 2^%d\n", m2, e2 + 2); in f2d() 71 if (e2 >= 0) { in f2d() 72 const uint32_t q = log10Pow2(e2); in f2d() 75 const int32_t i = -e2 + (int32_t) q + k; in f2d() 80 printf("%u * 2^%d / 10^%u\n", mv, e2, q); in f2d() 102 const uint32_t q = log10Pow5(-e2); in f2d() 103 e10 = (int32_t) q + e2; in f2d() 104 const int32_t i = -e2 - (int32_t) q; in f2d() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/ |
A D | tst-tls5mode.c | 5 static __thread char e2 [32] __attribute__ ((aligned (64))); variable 7 TLS_REGISTER (e2)
|
/l4re-core-master/l4util/lib/src/ARCH-amd64/ |
A D | pmc_events.in | 71 e2 BTB_MISSES
|
/l4re-core-master/l4util/lib/src/ARCH-x86/ |
A D | pmc_events.in | 71 e2 BTB_MISSES
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/std/ |
A D | chrono | 1158 * `chrono::duration<long double, chrono::milli>(1.5e2)`.
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/std/ |
A D | chrono | 3185 * `chrono::duration<long double, chrono::milli>(1.5e2)`.
|
Completed in 35 milliseconds