Searched refs:temp (Results 1 – 5 of 5) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | e_jn.c | 57 double a, b, c, s, temp, di; in __ieee754_jn() local 96 case 0: temp = c+s; break; in __ieee754_jn() 97 case 1: temp = -c+s; break; in __ieee754_jn() 98 case 2: temp = -c-s; break; in __ieee754_jn() 99 case 3: temp = c-s; break; in __ieee754_jn() 101 b = invsqrtpi*temp/sqrt(x); in __ieee754_jn() 106 temp = b; in __ieee754_jn() 108 a = temp; in __ieee754_jn() 119 temp = x*0.5; b = temp; in __ieee754_jn() 122 b *= temp; /* b = (x/2)^n */ in __ieee754_jn() [all …]
|
D | e_jnf.c | 38 float a, b, temp, di; in __ieee754_jnf() local 64 temp = b; in __ieee754_jnf() 66 a = temp; in __ieee754_jnf() 76 temp = x*(float)0.5; b = temp; in __ieee754_jnf() 79 b *= temp; /* b = (x/2)^n */ in __ieee754_jnf() 140 temp = b; in __ieee754_jnf() 143 a = temp; in __ieee754_jnf() 148 temp = b; in __ieee754_jnf() 151 a = temp; in __ieee754_jnf() 177 float a, b, temp; in __ieee754_ynf() local [all …]
|
/bionic/libc/upstream-netbsd/lib/libc/stdlib/ |
D | _rand48.c | 41 unsigned short temp[2]; in __dorand48() local 47 temp[0] = (unsigned short) accu; /* lower 16 bits */ in __dorand48() 51 temp[1] = (unsigned short) accu; /* middle 16 bits */ in __dorand48() 56 xseed[0] = temp[0]; in __dorand48() 57 xseed[1] = temp[1]; in __dorand48()
|
/bionic/benchmarks/ |
D | bionic_benchmarks.cpp | 444 int temp; in RegisterXmlBenchmarks() local 445 num_iterations_elem->QueryIntText(&temp); in RegisterXmlBenchmarks() 446 xml_opts.num_iterations = temp; in RegisterXmlBenchmarks() 450 int temp; in RegisterXmlBenchmarks() local 451 cpu_to_lock_elem->QueryIntText(&temp); in RegisterXmlBenchmarks() 452 xml_opts.cpu_to_lock = temp; in RegisterXmlBenchmarks()
|
/bionic/libc/dns/resolv/ |
D | res_cache.c | 1495 char temp[256], *p=temp, *end=p+sizeof(temp); in _dump_query() local 1500 XLOG("QUERY: %s", temp); in _dump_query() 1506 char temp[512], *p=temp, *end=p+sizeof(temp); in _cache_dump_mru() local 1509 p = _bprint(temp, end, "MRU LIST (%2d): ", cache->num_entries); in _cache_dump_mru() 1513 XLOG("%s", temp); in _cache_dump_mru()
|