Home
last modified time | relevance | path

Searched refs:two (Results 1 – 25 of 33) sorted by relevance

12

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_tanhf.c23 static const float one=1.0, two=2.0, huge = 1.0e30; variable
46 t = expm1f(two*fabsf(x)); in tanhf()
47 z = one - two/(t+two); in tanhf()
49 t = expm1f(-two*fabsf(x)); in tanhf()
50 z= -t/(t+two); in tanhf()
Ds_tanh.c46 static const double one = 1.0, two = 2.0, huge = 1.0e300; variable
69 t = expm1(two*fabs(x)); in tanh()
70 z = one - two/(t+two); in tanh()
72 t = expm1(-two*fabs(x)); in tanh()
73 z= -t/(t+two); in tanh()
De_jnf.c29 two = 2.0000000000e+00, /* 0x40000000 */ variable
136 v = two/x; in __ieee754_jnf()
144 di -= two; in __ieee754_jnf()
152 di -= two; in __ieee754_jnf()
De_jn.c48 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
179 v = two/x; in __ieee754_jn()
187 di -= two; in __ieee754_jn()
195 di -= two; in __ieee754_jn()
Ds_erff.c28 two = 2, variable
171 if(hx<0&&ix>=0x40a00000) return two-tiny;/* x < -5 */ in erfcf()
177 if(hx>0) return r/x; else return two-r/x; in erfcf()
179 if(hx>0) return tiny*tiny; else return two-tiny; in erfcf()
Ds_erf.c120 two = 2, variable
294 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */ in erfc()
301 if(hx>0) return r/x; else return two-r/x; in erfc()
303 if(hx>0) return tiny*tiny; else return two-tiny; in erfc()
De_powf.c31 two = 2.0, variable
245 r = (z*t1)/(t1-two)-(w+z*w); in __ieee754_powf()
De_pow.c73 two = 2.0, variable
303 r = (z*t1)/(t1-two)-(w+z*w); in __ieee754_pow()
/bionic/tests/
Dsetjmp_test.cpp70 SigSets() : one(MakeSigSet(0)), two(MakeSigSet(1)) { in SigSets()
84 sigset64_t two; member
104 sigprocmask64(SIG_SETMASK, &ss.two, nullptr); in TEST()
108 AssertSigmaskEquals(ss.two); in TEST()
122 sigprocmask64(SIG_SETMASK, &ss.two, nullptr); in TEST()
131 AssertSigmaskEquals(ss.two); in TEST()
144 sigprocmask64(SIG_SETMASK, &ss.two, nullptr); in TEST()
148 AssertSigmaskEquals(ss.two); in TEST()
160 sigprocmask64(SIG_SETMASK, &ss.two, nullptr); in TEST()
Dsearch_test.cpp150 q_node two(2); in TEST() local
156 insque(&two, &one); in TEST()
165 for (q_node* q = &two; q != nullptr; q = q->prev) { in TEST()
178 remque(&two); in TEST()
190 insque(&two, &one); in TEST()
205 remque(&two); in TEST()
Dfenv_test.cpp146 fexcept_t two; // FE_OVERFLOW | FE_UNDERFLOW in TEST() local
148 ASSERT_EQ(0, fegetexceptflag(&two, FE_OVERFLOW | FE_UNDERFLOW)); in TEST()
157 ASSERT_EQ(0, fesetexceptflag(&two, FE_ALL_EXCEPT)); in TEST()
Dlink_test.cpp254 uintptr_t two; in TEST() member
/bionic/libc/malloc_hooks/
DREADME.md8 There are two ways to enable these hooks, set a special system
23 On 32 bit systems, these two deprecated functions are also replaced:
56 For the two deprecated functions pvalloc and valloc, if \_\_memalign\_hook
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Ds_erfl.c33 two = 2; variable
317 if(x < -9) return two-tiny; /* x < -9 */ in erfcl()
325 if(x>0) return r/ax; else return two-r/ax; in erfcl()
327 if(x>0) return tiny*tiny; else return two-tiny; in erfcl()
De_powl.c89 two = 2.0L, variable
430 r = (z * t1) / (t1 - two) - (w + z * w); in powl()
/bionic/libc/async_safe/
DREADME.md10 threads. Therefore, we maintain these two separate mechanisms.
/bionic/benchmarks/linker_relocation/
DREADME.md21 `gen_bench.py` has two modes:
/bionic/docs/
Dfdsan.md10 For example, given two threads running the following code:
29 thread one thread two
38 …notes)] or security vulnerabilities are also possible (e.g. suppose thread two was saving user dat…
231 fdsan operates via two main primitives. `android_fdsan_exchange_owner_tag` modifies a file descript…
363 …* [Example one](https://android-review.googlesource.com/c/platform/system/core/+/721985), [two](ht…
366 …* [Example one](https://android-review.googlesource.com/c/platform/system/bt/+/710104), [two](http…
Dnative_allocator.md10 It is important to note that there are two modes for a native allocator
92 of allocation routines such as what happens when a non-power of two alignment
147 For all of these benchmark runs, it can be useful to add these two options:
303 This will build two executables:
308 And these two benchmark executables:
Ddefines.md47 itself, use `__ANDROID_NDK__` to differentiate between those two circumstances.
/bionic/libc/system_properties/
Dprop_area.cpp217 static int cmp_prop_name(const char* one, uint32_t one_len, const char* two, uint32_t two_len) { in cmp_prop_name() argument
223 return strncmp(one, two, one_len); in cmp_prop_name()
/bionic/libc/malloc_debug/
DREADME_api.md4 in a process. The libc library in Android exports two calls that can be
DREADME_marshmallow_and_earlier.md30 On 32 bit systems, these two deprecated functions are also replaced:
/bionic/benchmarks/
DREADME.md72 AT_<any power of two between 2 and 16384>_ALIGNED_<ONE|TWO>BUF
106 Google Benchmark uses two settings to control how many times to run each benchmark, "iterations" and
/bionic/libc/
DSYSCALLS.TXT162 # sizeof(off_t) == sizeof(off64_t), so there we emit two symbols that are
163 # aliases. On 32-bit systems, we have two different system calls.
176 # (mmap only gets two lines because we only used the 64-bit variant on 32-bit systems.)
179 # (fallocate only gets two lines because there is no 32-bit variant.)

12