Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 6 of 6) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
De_jn.c59 double a, b, temp, di; in __ieee754_jn() local
97 case 0: temp = cos(x)+sin(x); break; in __ieee754_jn()
98 case 1: temp = -cos(x)+sin(x); break; in __ieee754_jn()
99 case 2: temp = -cos(x)-sin(x); break; in __ieee754_jn()
100 case 3: temp = cos(x)-sin(x); break; in __ieee754_jn()
102 b = invsqrtpi*temp/sqrt(x); in __ieee754_jn()
107 temp = b; in __ieee754_jn()
109 a = temp; in __ieee754_jn()
120 temp = x*0.5; b = temp; in __ieee754_jn()
123 b *= temp; /* b = (x/2)^n */ in __ieee754_jn()
[all …]
De_jnf.c38 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.c41 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()
54 xseed[0] = temp[0]; in __dorand48()
55 xseed[1] = temp[1]; in __dorand48()
/bionic/libc/arch-mips/bionic/
Dsetjmp.S170 .macro m_mangle_reg_and_store reg, cookie, temp, offset
171 xor \temp, \reg, \cookie
172 REG_S \temp, \offset
175 .macro m_unmangle_reg_and_load reg, cookie, temp, offset
176 REG_L \temp, \offset
177 xor \reg, \temp, \cookie
240 REG_L t0, SC_FLAG_OFFSET(a0) # move cookie to temp reg
245 # m_mangle_reg_and_store reg, cookie, temp, offset
/bionic/libc/arch-mips64/bionic/
Dsetjmp.S170 .macro m_mangle_reg_and_store reg, cookie, temp, offset
171 xor \temp, \reg, \cookie
172 REG_S \temp, \offset
175 .macro m_unmangle_reg_and_load reg, cookie, temp, offset
176 REG_L \temp, \offset
177 xor \reg, \temp, \cookie
240 REG_L t0, SC_FLAG_OFFSET(a0) # move cookie to temp reg
245 # m_mangle_reg_and_store reg, cookie, temp, offset
/bionic/libc/dns/resolv/
Dres_cache.c1437 char temp[256], *p=temp, *end=p+sizeof(temp); in _dump_query() local
1442 XLOG("QUERY: %s", temp); in _dump_query()
1448 char temp[512], *p=temp, *end=p+sizeof(temp); in _cache_dump_mru() local
1451 p = _bprint(temp, end, "MRU LIST (%2d): ", cache->num_entries); in _cache_dump_mru()
1455 XLOG("%s", temp); in _cache_dump_mru()