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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
aarch64-neon-vcombine.c 8 int8x16_t test_vcombine_s8(int8x8_t low, int8x8_t high) {
10 return vcombine_s8(low, high);
14 int16x8_t test_vcombine_s16(int16x4_t low, int16x4_t high) {
16 return vcombine_s16(low, high);
20 int32x4_t test_vcombine_s32(int32x2_t low, int32x2_t high) {
22 return vcombine_s32(low, high);
26 int64x2_t test_vcombine_s64(int64x1_t low, int64x1_t high) {
28 return vcombine_s64(low, high);
32 uint8x16_t test_vcombine_u8(uint8x8_t low, uint8x8_t high) {
34 return vcombine_u8(low, high);
    [all...]
2002-09-18-UnionProblem.c 5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
  /frameworks/support/design/base/android/support/design/widget/
MathUtils.java 21 static int constrain(int amount, int low, int high) {
22 return amount < low ? low : (amount > high ? high : amount);
25 static float constrain(float amount, float low, float high) {
26 return amount < low ? low : (amount > high ? high : amount);
  /external/valgrind/none/tests/s390x/
cdsg.c 5 uint64_t high; member in struct:__anon26309
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 != op1_before.low || _op1.high != op1_before.high)
    [all...]
cds.c 5 uint64_t high; member in struct:__anon26308
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) {
66 // higher 32 bits of op2 are the lower 32 bits of op3.high
    [all...]
  /external/vboot_reference/utility/
tpm-nvsize 12 high=1500
13 try=$high
17 ## echo trying $try [ $low $high ]
24 elif [ $try -lt $high ]; then
26 try=$(( ( $high + $low ) / 2 ))
28 # special case: when try == high, expand the search
31 high=$try
47 high=$try
48 try=$(( ( $high + $low ) / 2 ))
  /external/compiler-rt/lib/builtins/
udivmoddi4.c 36 if (n.s.high == 0)
38 if (d.s.high == 0)
56 /* n.s.high != 0 */
59 if (d.s.high == 0)
66 *rem = n.s.high % d.s.low;
67 return n.s.high / d.s.low;
69 /* d.s.high != 0 */
78 r.s.high = n.s.high % d.s.high;
    [all...]
udivmodti4.c 38 if (n.s.high == 0)
40 if (d.s.high == 0)
58 /* n.s.high != 0 */
61 if (d.s.high == 0)
68 *rem = n.s.high % d.s.low;
69 return n.s.high / d.s.low;
71 /* d.s.high != 0 */
80 r.s.high = n.s.high % d.s.high;
    [all...]
fixunsdfdi.c 25 su_int high = a / 4294967296.f; /* a / 0x1p32f; */
26 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */
27 return ((du_int)high << 32) | low;
lshrdi3.c 32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
lshrti3.c 32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
ashrdi3.c 32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
ashrti3.c 32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
fixunssfdi.c 26 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local
27 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */
28 return ((du_int)high << 32) | low;
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);
int_types.h 40 si_int high; member in struct:__anon9266::__anon9267
42 si_int high;
55 su_int high; member in struct:__anon9268::__anon9269
57 su_int high;
79 di_int high; member in struct:__anon9270::__anon9271
81 di_int high;
94 du_int high; member in struct:__anon9272::__anon9273
96 du_int high;
104 r.s.high = h;
111 r.s.high = h
134 udwords high; member in struct:__anon9276
    [all...]
cmpdi2.c 29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
cmpti2.c 31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
ucmpdi2.c 29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
ucmpti2.c 31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
  /frameworks/rs/driver/runtime/arch/
clamp.c 25 extern T __attribute__((overloadable)) clamp(T amount, T low, T high) { \
26 return amount < low ? low : (amount > high ? high : amount); \
46 extern T##2 __attribute__((overloadable)) clamp(T##2 amount, T##2 low, T##2 high) { \
48 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); \
49 r.y = amount.y < low.y ? low.y : (amount.y > high.y ? high.y : amount.y); \
53 extern T##3 __attribute__((overloadable)) clamp(T##3 amount, T##3 low, T##3 high) { \
55 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x);
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
vpx_dsp_common.h 44 static INLINE int clamp(int value, int low, int high) {
45 return value < low ? low : (value > high ? high : value);
48 static INLINE double fclamp(double value, double low, double high) {
49 return value < low ? low : (value > high ? high : value);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modf.c 39 if(j0<20) { /* integer part in high x */
46 u_int32_t high; local
48 GET_HIGH_WORD(high,x);
49 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
57 u_int32_t high; local
63 GET_HIGH_WORD(high,x);
64 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
69 u_int32_t high; local
71 GET_HIGH_WORD(high,x);
72 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 *
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
CameraProfileTest.java 31 private void checkQuality(int low, int mid, int high) {
32 Log.v(TAG, "low = " + low + ", mid = " + mid + ", high = " + high);
35 assertTrue(high >= 0 && high <= 100);
36 assertTrue(low <= mid && mid <= high);
42 int high = CameraProfile.getJpegEncodingQualityParameter(CameraProfile.QUALITY_HIGH); local
43 checkQuality(low, mid, high);
51 int high = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_HIGH); local
52 checkQuality(low, mid, high);
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicInlines.h 85 static inline int4 clamp(int4 amount, int low, int high) {
87 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
88 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
89 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z);
90 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w);
94 static inline float4 clamp(float4 amount, float low, float high) {
    [all...]

Completed in 3784 milliseconds

1 2 3 4 5 6 7 8 91011>>