HomeSort by relevance Sort by last modified time
    Searched refs:low (Results 51 - 75 of 1479) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/builtins/
lshrti3.c 33 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
paritydi2.c 24 return __paritysi2(x.s.high ^ x.s.low);
parityti2.c 26 return __paritydi2(x.s.high ^ x.s.low);
fixunssfdi.c 27 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
28 return ((du_int)high << 32) | low;
ashrdi3.c 34 result.s.low = input.s.high >> (b - bits_in_word);
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
ashrti3.c 34 result.s.low = input.s.high >> (b - bits_in_dword);
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
  /toolchain/binutils/binutils-2.25/gas/
flonum-mult.c 88 int P; /* Scan product low-order -> high. */
101 size_of_a = a->leader - a->low;
102 size_of_b = b->leader - b->low;
104 size_of_product = product->high - product->low;
128 printf ("a:low[%d.]=%04x b:low[%d.]=%04x work_before=%08x\n",
129 A, a->low[A], B, b->low[B], work);
135 work += (unsigned long) a->low[A] * (unsigned long) b->low[B]
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
augmented_cb_corr.h 36 size_t low, /* (i) Lag to start from (typically
get_lsp_poly.c 46 int16_t high, low; local
68 low = (int16_t)((fPtr[-1] - ((int32_t)high << 16)) >> 1);
70 tmpW32 = ((high * *lspPtr) << 2) + (((low * *lspPtr) >> 15) << 2);
  /external/strace/tests/
llseek.c 44 const unsigned long low = 0xdeadbeef; local
47 int rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_AK8975.h 32 #define AK8975_HDATA_CONVERTER(hi, low, asa) \
33 (AKFLOAT)((int16)((((uint16)(hi))<<8)+(uint16)(low))*(((asa)/256.0f) + 0.5f))
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
vle-reloc-def-2.s 31 .globl low
32 low: label
vle-reloc-2.s 10 e_or2i 1, low@l
17 e_and2i. 1, low@l
24 e_or2is 1, low@l
31 e_lis 1, low@l
38 e_and2is. 1, low@l
45 e_cmp16i 1, low@l
52 e_cmpl16i 1, low@l
59 e_cmph16i 1, low@l
66 e_cmphl16i 1, low@l
73 e_add2i. 1, low@
    [all...]
  /external/chromium-trace/catapult/experimental/heatmap/
math.js 1 function constrain(value, low, high) {
2 if (value < low)
3 return low;
  /external/valgrind/memcheck/tests/s390x/
cds.c 6 uint64_t low; member in struct:__anon25722
29 // Return a quad-word that only bits low[32:63] are undefined
36 val.low |= 0xFFFFFFFF00000000ull;
49 op3.high = op3.low = 0xdeadbeefdeadbabeull;
58 op1.high = op1.low = 42;
60 op3.high = op3.low = 0xdeadbeefdeadbabeull;
69 op1.high = op1.low = 42;
cdsg.c 6 uint64_t low; member in struct:__anon25723
37 op2.high = op2.low = 42;
38 op3.high = op3.low = 0xdeadbeefdeadbabeull;
46 op1.high = op1.low = 42;
48 op3.high = op3.low = 0xdeadbeefdeadbabeull;
56 op1.high = op1.low = 42;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
pic2.s 14 add3 r12,r12,#low(_GLOBAL_OFFSET_TABLE_+4)
20 or3 r12,r12,#low(_GLOBAL_OFFSET_TABLE_+4)
34 add3 r12,r12,#low(sym2@GOT)
36 or3 r12,r12,#low(sym2@GOT)
51 add3 r0,r0,#low(gotoff@GOTOFF)
53 or3 r0,r0,#low(gotoff@GOTOFF)
  /external/eigen/test/
nullary.cpp 44 Scalar low = (size == 1 ? high : internal::random<Scalar>(-500,500)); local
45 if (low>high) std::swap(low,high);
47 const Scalar step = ((size == 1) ? 1 : (high-low)/(size-1));
51 m.setLinSpaced(size,low,high);
55 n(i) = low+i*step;
60 m = VectorType::LinSpaced(size,low,high);
68 //VERIFY( m(0) == low );
71 m = VectorType::LinSpaced(Sequential,size,low,high);
76 //VERIFY( m(0) == low );
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/
CharBufferTest.java 49 char high = '\uD83D', low = '\uDE02'; local
50 String surrogateCP = new String(new char[]{high, low, low, '0'});
53 assertEquals(Character.toCodePoint(high, low), cb.codePoints().toArray()[0]);
54 assertEquals((int) low, cb.codePoints().toArray()[1]); // Unmatched surrogate.
  /external/opencv3/3rdparty/libjasper/
jpc_tagtree.c 273 int low; local
289 low = 0;
291 if (low > node->low_) {
294 node->low_ = low;
296 low = node->low_;
299 while (low < threshold) {
300 if (low >= node->value_) {
312 ++low;
314 node->low_ = low;
333 int low; local
    [all...]
  /art/runtime/interpreter/mterp/mips/
op_const_wide.S 2 FETCH(a0, 1) # a0 <- bbbb (low)
3 FETCH(a1, 2) # a1 <- BBBB (low middle)
6 or a0, a1 # a0 <- BBBBbbbb (low word)
  /external/chromium-trace/catapult/telemetry/telemetry/value/
histogram.py 13 def __init__(self, low, high, count=0):
14 self.low = low
20 'low': self.low,
27 '"low": %i' % self.low,
47 low=bucket['low'],
  /frameworks/volley/src/test/java/com/android/volley/
RequestTest.java 31 TestRequest low = new TestRequest(Priority.LOW); local
32 low.setSequence(sequence++);
33 TestRequest low2 = new TestRequest(Priority.LOW);
40 // "Low" should sort higher because it's really processing order.
41 assertTrue(low.compareTo(high) > 0);
42 assertTrue(high.compareTo(low) < 0);
43 assertTrue(low.compareTo(low2) < 0);
44 assertTrue(low.compareTo(immediate) > 0);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_common.h 55 static INLINE int clamp(int value, int low, int high) {
56 return value < low ? low : (value > high ? high : value);
59 static INLINE double fclamp(double value, double low, double high) {
60 return value < low ? low : (value > high ? high : value);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
vle-reloc.s 12 e_or2i 1, low@l
19 e_and2i. 1, low@l
27 e_or2is 1, low@l
34 e_lis 1, low@l
41 e_and2is. 1, low@l
48 e_cmp16i 1, low@l
55 e_cmpl16i 1, low@l
62 e_cmph16i 1, low@l
69 e_cmphl16i 1, low@l
76 e_add2i. 1, low@
    [all...]

Completed in 1777 milliseconds

1 23 4 5 6 7 8 91011>>