HomeSort by relevance Sort by last modified time
    Searched refs:hi (Results 1 - 25 of 1241) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_sinl.c 53 long double hi, lo; local
71 hi = __kernel_sinl(z.e, 0, 0);
72 RETURNI(s ? -hi : hi);
76 hi = y[0];
81 hi = __kernel_sinl(hi, lo, 1);
84 hi = __kernel_cosl(hi, lo);
87 hi = - __kernel_sinl(hi, lo, 1)
    [all...]
s_cosl.c 58 long double hi, lo; local
78 hi = y[0];
83 hi = __kernel_cosl(hi, lo);
86 hi = - __kernel_sinl(hi, lo, 1);
89 hi = - __kernel_cosl(hi, lo);
92 hi = __kernel_sinl(hi, lo, 1)
    [all...]
s_tanl.c 59 long double hi, lo; local
77 hi = __kernel_tanl(z.e, 0, 0);
78 RETURNI(s ? -hi : hi);
82 hi = y[0];
88 hi = __kernel_tanl(hi, lo, 0);
92 hi = __kernel_tanl(hi, lo, 1);
96 RETURNI(hi);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
bisect.py 3 def insort_right(a, x, lo=0, hi=None):
8 Optional args lo (default 0) and hi (default len(a)) bound the
14 if hi is None:
15 hi = len(a)
16 while lo < hi:
17 mid = (lo+hi)//2
18 if x < a[mid]: hi = mid
24 def bisect_right(a, x, lo=0, hi=None):
31 Optional args lo (default 0) and hi (default len(a)) bound the
37 if hi is None:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
bisect.py 3 def insort_right(a, x, lo=0, hi=None):
8 Optional args lo (default 0) and hi (default len(a)) bound the
14 if hi is None:
15 hi = len(a)
16 while lo < hi:
17 mid = (lo+hi)//2
18 if x < a[mid]: hi = mid
24 def bisect_right(a, x, lo=0, hi=None):
31 Optional args lo (default 0) and hi (default len(a)) bound the
37 if hi is None:
    [all...]
  /external/python/cpython2/Lib/
bisect.py 3 def insort_right(a, x, lo=0, hi=None):
8 Optional args lo (default 0) and hi (default len(a)) bound the
14 if hi is None:
15 hi = len(a)
16 while lo < hi:
17 mid = (lo+hi)//2
18 if x < a[mid]: hi = mid
24 def bisect_right(a, x, lo=0, hi=None):
31 Optional args lo (default 0) and hi (default len(a)) bound the
37 if hi is None
    [all...]
  /external/python/cpython3/Lib/
bisect.py 3 def insort_right(a, x, lo=0, hi=None):
8 Optional args lo (default 0) and hi (default len(a)) bound the
14 if hi is None:
15 hi = len(a)
16 while lo < hi:
17 mid = (lo+hi)//2
18 if x < a[mid]: hi = mid
22 def bisect_right(a, x, lo=0, hi=None):
29 Optional args lo (default 0) and hi (default len(a)) bound the
35 if hi is None
    [all...]
  /external/clang/test/CodeGen/
ext-vector-indexing.c 8 va.hi[0] = 3.0;
  /external/compiler-rt/test/builtins/Unit/ppc/
DD.h 9 double hi; member in struct:__anon18442::__anon18443
floatditf_test.c 16 expected.hi = tests[i].hi;
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
23 printf("\tExpected %La = ( %a , %a )\n", expected.ld, expected.hi, expected.lo);
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
floatunditf_test.c 16 expected.hi = tests[i].hi;
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
23 printf("\tExpected %La = ( %a , %a )\n", expected.ld, expected.hi, expected.lo);
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
  /external/grpc-grpc-java/core/src/main/java/io/grpc/
BinaryLog.java 38 public final long hi; field in class:BinaryLog.CallId
44 public CallId(long hi, long lo) {
45 this.hi = hi;
  /external/compiler-rt/lib/builtins/ppc/
multc3.c 9 (x).s.hi = crt_copysign(crt_isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \
14 if (crt_isnan((x).s.hi)) { \
15 (x).s.hi = crt_copysign(0.0, (x).s.hi); \
31 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
40 if (crt_isinf(aDD.s.hi) || crt_isinf(bDD.s.hi))
    [all...]
divtc3.c 13 (x).s.hi = crt_copysign(crt_isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \
24 const double logbw = crt_logb(crt_fmax(crt_fabs(cDD.s.hi), crt_fabs(dDD.s.hi) ));
30 cDD.s.hi = crt_scalbn(cDD.s.hi, -ilogbw);
32 dDD.s.hi = crt_scalbn(dDD.s.hi, -ilogbw);
43 real.s.hi = crt_scalbn(real.s.hi, -ilogbw)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
OutOfRangeException.java 35 private final Number hi; field in class:OutOfRangeException
42 * @param hi Higher bound.
46 Number hi) {
47 super(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi);
49 this.hi = hi;
61 return hi;
  /art/test/921-hello-failure/src/
Transform4.java 19 public Transform4(String hi) {
20 greeting = hi;
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Rand.c 50 INT32 hi, lo, x; local
55 hi = next / 127773;
57 x = 16807 * lo - 2836 * hi;
  /external/google-benchmark/src/
benchmark_register.h 9 void AddRange(std::vector<T>* dst, T lo, T hi, int mult) {
11 CHECK_GE(hi, lo);
21 if (i >= hi) break;
27 // Add "hi" (if different from "lo")
28 if (hi != lo) {
29 dst->push_back(hi);
  /external/libcxx/utils/google-benchmark/src/
benchmark_register.h 9 void AddRange(std::vector<T>* dst, T lo, T hi, int mult) {
11 CHECK_GE(hi, lo);
21 if (i >= hi) break;
27 // Add "hi" (if different from "lo")
28 if (hi != lo) {
29 dst->push_back(hi);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
div_32.cpp 94 the range : 0x4000 < hi < 0x7fff
175 Word16 hi; local
191 hi = (Word16)(result >> 16);
192 lo = (result >> 1) - (hi << 15);
194 result = Mpy_32_16(hi, lo, approx, pOverflow);
198 hi = (Word16)(result >> 16);
199 lo = (result >> 1) - (hi << 15);
204 result = Mpy_32(n_hi, n_lo, hi, lo, pOverflow);
  /external/elfutils/libelf/
dl-hash.h 47 unsigned long int hi; local
49 hi = hash & 0xf0000000;
54 if (hi != 0)
55 hash ^= hi >> 24;
57 hash &= ~hi;
62 hash ^= hi >> 24;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
oper_32b.h 24 void VO_L_Extract (Word32 L_32, Word16 *hi, Word16 *lo);
25 Word32 L_Comp (Word16 hi, Word16 lo);
27 Word32 Mpy_32_16 (Word16 hi, Word16 lo, Word16 n);
  /external/compiler-rt/lib/builtins/arm/
sync_fetch_and_umax_4.S 17 #define umax_4(rD, rN, rM) MINMAX_4(rD, rN, rM, hi)
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
relocation-n64.s 27 lui $3, %hi(%neg(%gp_rel(foo))) // RELOC: R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_HI16 foo
28 // ENCBE: lui $3, %hi(%neg(%gp_rel(foo))) # encoding: [0x3c,0x03,A,A]
29 // ENCLE: lui $3, %hi(%neg(%gp_rel(foo))) # encoding: [A,A,0x03,0x3c]
30 // FIXUP: # fixup A - offset: 0, value: %hi(%neg(%gp_rel(foo))), kind: fixup_Mips_GPOFF_HI
37 lui $3, %hi(%neg(%gp_rel(bar))) // RELOC: R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_HI16 .data
38 // ENCBE: lui $3, %hi(%neg(%gp_rel(bar))) # encoding: [0x3c,0x03,A,A]
39 // ENCLE: lui $3, %hi(%neg(%gp_rel(bar))) # encoding: [A,A,0x03,0x3c]
40 // FIXUP: # fixup A - offset: 0, value: %hi(%neg(%gp_rel(bar))), kind: fixup_Mips_GPOFF_HI
49 lui $3, %hi(%neg(%gp_rel(foo))) // RELOC: R_MICROMIPS_GPREL16/R_MICROMIPS_SUB/R_MICROMIPS_HI16 foo
50 // ENCBE: lui $3, %hi(%neg(%gp_rel(foo))) # encoding: [0x41,0xa3,A,A
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
l_comp.h 104 Word32 L_Comp(Word16 hi, Word16 lo, Flag *pOverflow);

Completed in 555 milliseconds

1 2 3 4 5 6 7 8 91011>>