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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/re2/util/
random.cc 15 uint32 lo = A * (int32)(seed_ & 0xFFFF); local
17 lo += (hi & 0x7FFF) << 16;
18 if (lo > M) {
19 lo &= M;
20 ++lo;
22 lo += hi >> 15;
23 if (lo > M) {
24 lo &= M;
25 ++lo;
27 return (seed_ = (int32) lo);
    [all...]
  /external/regex-re2/util/
random.cc 15 uint32 lo = A * (int32)(seed_ & 0xFFFF); local
17 lo += (hi & 0x7FFF) << 16;
18 if (lo > M) {
19 lo &= M;
20 ++lo;
22 lo += hi >> 15;
23 if (lo > M) {
24 lo &= M;
25 ++lo;
27 return (seed_ = (int32) lo);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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
12 if lo < 0:
13 raise ValueError('lo must be non-negative')
16 while lo < hi:
17 mid = (lo+hi)//2
19 else: lo = mid+1
20 a.insert(lo, x)
24 def bisect_right(a, x, lo=0, hi=None):
31 Optional args lo (default 0) and hi (default len(a)) bound th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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
12 if lo < 0:
13 raise ValueError('lo must be non-negative')
16 while lo < hi:
17 mid = (lo+hi)//2
19 else: lo = mid+1
20 a.insert(lo, x)
24 def bisect_right(a, x, lo=0, hi=None):
31 Optional args lo (default 0) and hi (default len(a)) bound th
    [all...]
  /external/compiler-rt/test/Unit/ppc/
DD.h 10 double lo; member in struct:__anon19152::__anon19153
floatditf_test.c 17 expected.lo = tests[i].lo;
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 17 expected.lo = tests[i].lo;
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);
  /frameworks/base/core/java/android/util/
ContainerHelpers.java 27 int lo = 0; local
30 while (lo <= hi) {
31 final int mid = (lo + hi) >>> 1;
35 lo = mid + 1;
42 return ~lo; // value not present
46 int lo = 0; local
49 while (lo <= hi) {
50 final int mid = (lo + hi) >>> 1;
54 lo = mid + 1;
61 return ~lo; // value not presen
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
move.pass.cpp 24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
28 lo.push_back(i);
31 assert(l2 == lo);
33 assert(l2.get_allocator() == lo.get_allocator());
37 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
41 lo.push_back(i);
44 assert(l2 == lo);
46 assert(l2.get_allocator() == lo.get_allocator());
51 std::vector<bool, min_allocator<bool> > lo(min_allocator<bool>{});
55 lo.push_back(i)
    [all...]
assign_move.pass.cpp 24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
28 lo.push_back(i);
32 assert(l2 == lo);
34 assert(l2.get_allocator() == lo.get_allocator());
38 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
42 lo.push_back(i);
46 assert(l2 == lo);
52 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
56 lo.push_back(i);
60 assert(l2 == lo);
    [all...]
move_alloc.pass.cpp 24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
28 lo.push_back(i);
31 assert(l2 == lo);
37 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
41 lo.push_back(i);
44 assert(l2 == lo);
50 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
54 lo.push_back(i);
57 assert(l2 == lo);
64 std::vector<bool, min_allocator<bool> > lo(min_allocator<bool>{})
    [all...]
  /frameworks/base/libs/androidfw/
AssetDir.cpp 42 int lo, hi, cur;
44 lo = 0;
46 while (lo <= hi) {
49 cur = (hi + lo) / 2;
56 lo = cur + 1;
  /frameworks/support/v4/java/android/support/v4/util/
ContainerHelpers.java 46 int lo = 0; local
49 while (lo <= hi) {
50 int mid = (lo + hi) >>> 1;
54 lo = mid + 1;
61 return ~lo; // value not present
65 int lo = 0; local
68 while (lo <= hi) {
69 final int mid = (lo + hi) >>> 1;
73 lo = mid + 1;
80 return ~lo; // value not presen
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cosl.c 56 long double hi, lo; local
77 lo = y[1];
81 hi = __kernel_cosl(hi, lo);
84 hi = - __kernel_sinl(hi, lo, 1);
87 hi = - __kernel_cosl(hi, lo);
90 hi = __kernel_sinl(hi, lo, 1);
s_sinl.c 51 long double hi, lo; local
75 lo = y[1];
79 hi = __kernel_sinl(hi, lo, 1);
82 hi = __kernel_cosl(hi, lo);
85 hi = - __kernel_sinl(hi, lo, 1);
88 hi = - __kernel_cosl(hi, lo);
  /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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
move.pass.cpp 25 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
29 lo.push_back(i);
32 assert(l2 == lo);
34 assert(l2.get_allocator() == lo.get_allocator());
38 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5));
42 lo.push_back(i);
45 assert(l2 == lo);
47 assert(l2.get_allocator() == lo.get_allocator());
52 std::list<MoveOnly, min_allocator<MoveOnly> > lo(min_allocator<MoveOnly>{});
56 lo.push_back(i)
    [all...]
assign_move.pass.cpp 25 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
29 lo.push_back(i);
33 assert(l2 == lo);
35 assert(l2.get_allocator() == lo.get_allocator());
39 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
43 lo.push_back(i);
47 assert(l2 == lo);
53 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5));
57 lo.push_back(i);
61 assert(l2 == lo);
    [all...]
  /art/runtime/verifier/
dex_gc_map.cc 35 int lo = 0; local
37 while (hi >= lo) {
38 int mid = (hi + lo) / 2;
41 lo = mid + 1;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
l_comp.h 104 Word32 L_Comp(Word16 hi, Word16 lo, Flag *pOverflow);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
assign_move.pass.cpp 25 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
29 lo.push_back(i);
33 assert(l2 == lo);
35 assert(l2.get_allocator() == lo.get_allocator());
39 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
43 lo.push_back(i);
47 assert(l2 == lo);
53 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5));
57 lo.push_back(i);
61 assert(l2 == lo);
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
oper_32b.c 26 * L_32 = hi<<16 + lo<<1 *
29 * hi and lo are 16 bit signed integers. *
53 * lo : (L_32 - hi<<16)>>1 *
57 __inline void VO_L_Extract (Word32 L_32, Word16 *hi, Word16 *lo)
60 *lo = (Word16)((L_32 & 0xffff) >> 1);
70 * L_32 = hi<<16 + lo<<1 *
75 * lo lsf (with sign) *
85 Word32 L_Comp (Word16 hi, Word16 lo)
91 return (L_mac (L_32, lo, 1)); /* = hi<<16 + lo<<1 *
197 Word16 approx, hi, lo, n_hi, n_lo; local
    [all...]
  /external/chromium_org/third_party/re2/re2/
unicode_groups.h 27 uint16 lo; member in struct:re2::URange16
33 uint32 lo; member in struct:re2::URange32
  /external/chromium_org/third_party/skia/src/core/
Sk64.cpp 11 #define shift_left(hi, lo) \
12 hi = (hi << 1) | (lo >> 31); \
13 lo <<= 1
15 #define shift_left_bits(hi, lo, bits) \
17 hi = (hi << (bits)) | (lo >> (32 - (bits))); \
18 lo <<= (bits)
25 uint32_t lo = fLo; local
30 hi = -hi - Sk32ToBool(lo);
31 lo = 0 - lo;
107 uint32_t lo = fLo; local
204 uint32_t lo = fLo; local
281 uint32_t lo = fLo; local
    [all...]
  /external/regex-re2/re2/
unicode_groups.h 27 uint16 lo; member in struct:re2::URange16
33 uint32 lo; member in struct:re2::URange32

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>