/external/clang/test/CodeGen/ |
H A D | aarch64-neon-vcombine.c | 8 int8x16_t test_vcombine_s8(int8x8_t low, int8x8_t high) { argument 10 return vcombine_s8(low, high); 14 int16x8_t test_vcombine_s16(int16x4_t low, int16x4_t high) { argument 16 return vcombine_s16(low, high); 20 int32x4_t test_vcombine_s32(int32x2_t low, int32x2_t high) { argument 22 return vcombine_s32(low, high); 26 int64x2_t test_vcombine_s64(int64x1_t low, int64x1_t high) { argument 28 return vcombine_s64(low, high); 32 uint8x16_t test_vcombine_u8(uint8x8_t low, uint8x8_t high) { argument 34 return vcombine_u8(low, hig 38 test_vcombine_u16(uint16x4_t low, uint16x4_t high) argument 44 test_vcombine_u32(uint32x2_t low, uint32x2_t high) argument 50 test_vcombine_u64(uint64x1_t low, uint64x1_t high) argument 56 test_vcombine_p64(poly64x1_t low, poly64x1_t high) argument 62 test_vcombine_f16(float16x4_t low, float16x4_t high) argument 68 test_vcombine_f32(float32x2_t low, float32x2_t high) argument 74 test_vcombine_p8(poly8x8_t low, poly8x8_t high) argument 80 test_vcombine_p16(poly16x4_t low, poly16x4_t high) argument 86 test_vcombine_f64(float64x1_t low, float64x1_t high) argument [all...] |
/external/vboot_reference/utility/ |
H A D | tpm-nvsize | 11 low=1 17 ## echo trying $try [ $low $high ] 21 if [ $try -eq $low ]; then 22 echo $low 25 low=$try 26 try=$(( ( $high + $low ) / 2 )) 29 low=$try 43 if [ $try -eq $low ]; then 48 try=$(( ( $high + $low ) / 2 ))
|
/external/valgrind/none/tests/s390x/ |
H A D | cdsg.c | 6 uint64_t low; member in struct:__anon20811 28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low); 29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low); 30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low); 44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low); 45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low); 46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low); 54 if (_op3.low != op3_before.low || _op3.high != op3_before.high) { 62 if (_op1.low ! [all...] |
H A D | cds.c | 6 uint64_t low; member in struct:__anon20810 23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low); 25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low); 39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low); 41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low); 50 if (op3.low != op3_before.low || op3.high != op3_before.high) { 58 if (op1.low != op1_before.low || op1.high != op1_before.high) { 62 // lower 32 bits of op2 are the lower 32 bits of op3.low [all...] |
/external/compiler-rt/lib/builtins/ |
H A D | udivmoddi4.c | 45 *rem = n.s.low % d.s.low; 46 return n.s.low / d.s.low; 53 *rem = n.s.low; 57 if (d.s.low == 0) 66 *rem = n.s.high % d.s.low; 67 return n.s.high / d.s.low; 70 if (n.s.low == 0) 79 r.s.low [all...] |
H A D | udivmodti4.c | 47 *rem = n.s.low % d.s.low; 48 return n.s.low / d.s.low; 55 *rem = n.s.low; 59 if (d.s.low == 0) 68 *rem = n.s.high % d.s.low; 69 return n.s.high / d.s.low; 72 if (n.s.low == 0) 81 r.s.low [all...] |
H A D | ashldi3.c | 32 result.s.low = 0; 33 result.s.high = input.s.low << (b - bits_in_word); 39 result.s.low = input.s.low << b; 40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
|
H A D | ashlti3.c | 32 result.s.low = 0; 33 result.s.high = input.s.low << (b - bits_in_dword); 39 result.s.low = input.s.low << b; 40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
|
H A D | multi3.c | 28 r.s.low = (a & lower_mask) * (b & lower_mask); 29 du_int t = r.s.low >> bits_in_dword_2; 30 r.s.low &= lower_mask; 32 r.s.low += (t & lower_mask) << bits_in_dword_2; 34 t = r.s.low >> bits_in_dword_2; 35 r.s.low &= lower_mask; 37 r.s.low += (t & lower_mask) << bits_in_dword_2; 53 r.all = __mulddi3(x.s.low, y.s.low); 54 r.s.high += x.s.high * y.s.low [all...] |
H A D | fixunsxfdi.c | 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 39 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 43 return fb.u.low.all >> (63 - e);
|
H A D | fixunsxfsi.c | 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 38 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 42 return fb.u.low.s.high >> (31 - e);
|
H A D | fixunsxfti.c | 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 38 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 42 tu_int r = fb.u.low.all;
|
H A D | int_types.h | 39 su_int low; member in struct:__anon3299::__anon3300 43 su_int low; 54 su_int low; member in struct:__anon3301::__anon3302 58 su_int low; 78 du_int low; member in struct:__anon3303::__anon3304 82 du_int low; 93 du_int low; member in struct:__anon3305::__anon3306 97 du_int low; 105 r.s.low = l; 112 r.s.low 133 udwords low; member in struct:__anon3309 [all...] |
H A D | cmpdi2.c | 33 if (x.s.low < y.s.low) 35 if (x.s.low > y.s.low)
|
H A D | cmpti2.c | 35 if (x.s.low < y.s.low) 37 if (x.s.low > y.s.low)
|
H A D | ucmpdi2.c | 33 if (x.s.low < y.s.low) 35 if (x.s.low > y.s.low)
|
H A D | ucmpti2.c | 35 if (x.s.low < y.s.low) 37 if (x.s.low > y.s.low)
|
H A D | muldi3.c | 26 r.s.low = (a & lower_mask) * (b & lower_mask); 27 su_int t = r.s.low >> bits_in_word_2; 28 r.s.low &= lower_mask; 30 r.s.low += (t & lower_mask) << bits_in_word_2; 32 t = r.s.low >> bits_in_word_2; 33 r.s.low &= lower_mask; 35 r.s.low += (t & lower_mask) << bits_in_word_2; 53 r.all = __muldsi3(x.s.low, y.s.low); 54 r.s.high += x.s.high * y.s.low [all...] |
H A D | ctzdi2.c | 26 const si_int f = -(x.s.low == 0); 27 return __builtin_ctz((x.s.high & f) | (x.s.low & ~f)) +
|
H A D | ctzti2.c | 28 const di_int f = -(x.s.low == 0); 29 return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) +
|
/external/libvpx/libvpx/vpx_dsp/ |
H A D | vpx_dsp_common.h | 44 static INLINE int clamp(int value, int low, int high) { argument 45 return value < low ? low : (value > high ? high : value); 48 static INLINE double fclamp(double value, double low, double high) { argument 49 return value < low ? low : (value > high ? high : value);
|
/external/opencv3/modules/flann/include/opencv2/flann/ |
H A D | random.h | 58 * @param low Lower limit 61 inline double rand_double(double high = 1.0, double low = 0) 63 return low + ((high-low) * (std::rand() / (RAND_MAX + 1.0))); 69 * @param low Lower limit 72 inline int rand_int(int high = RAND_MAX, int low = 0) 74 return low + (int) ( double(high-low) * (std::rand() / (RAND_MAX + 1.0)));
|
/external/chromium-trace/catapult/experimental/heatmap/ |
H A D | math.js | 1 function constrain(value, low, high) { 2 if (value < low) 3 return low;
|
/external/compiler-rt/lib/builtins/ppc/ |
H A D | floatditf.c | 15 doublebits low = { .d = twop52 }; local 16 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */ 21 * high_addend and low.d, and we wish to return their sum 31 result.s.hi = high_addend + low.d; 32 result.s.lo = (high_addend - result.s.hi) + low.d;
|
H A D | floatunditf.c | 19 doublebits low = { .d = twop52 }; local 22 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */ 27 * high_addend and low.d, and we wish to return their sum 36 result.s.hi = high_addend + low.d; 37 result.s.lo = (high_addend - result.s.hi) + low.d;
|