Searched refs:high (Results 1 - 25 of 525) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Daarch64-neon-vcombine.c7 // CHECK-LABEL: define <16 x i8> @test_vcombine_s8(<8 x i8> %low, <8 x i8> %high) #0 {
8 // CHECK: [[SHUFFLE_I:%.*]] = shufflevector <8 x i8> %low, <8 x i8> %high, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15>
10 int8x16_t test_vcombine_s8(int8x8_t low, int8x8_t high) { argument
11 return vcombine_s8(low, high);
14 // CHECK-LABEL: define <8 x i16> @test_vcombine_s16(<4 x i16> %low, <4 x i16> %high) #0 {
15 // CHECK: [[SHUFFLE_I:%.*]] = shufflevector <4 x i16> %low, <4 x i16> %high, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
17 int16x8_t test_vcombine_s16(int16x4_t low, int16x4_t high) { argument
18 return vcombine_s16(low, high);
21 // CHECK-LABEL: define <4 x i32> @test_vcombine_s32(<2 x i32> %low, <2 x i32> %high) #0 {
22 // CHECK: [[SHUFFLE_I:%.*]] = shufflevector <2 x i32> %low, <2 x i32> %high, <
24 test_vcombine_s32(int32x2_t low, int32x2_t high) argument
31 test_vcombine_s64(int64x1_t low, int64x1_t high) argument
38 test_vcombine_u8(uint8x8_t low, uint8x8_t high) argument
45 test_vcombine_u16(uint16x4_t low, uint16x4_t high) argument
52 test_vcombine_u32(uint32x2_t low, uint32x2_t high) argument
59 test_vcombine_u64(uint64x1_t low, uint64x1_t high) argument
66 test_vcombine_p64(poly64x1_t low, poly64x1_t high) argument
73 test_vcombine_f16(float16x4_t low, float16x4_t high) argument
80 test_vcombine_f32(float32x2_t low, float32x2_t high) argument
87 test_vcombine_p8(poly8x8_t low, poly8x8_t high) argument
94 test_vcombine_p16(poly16x4_t low, poly16x4_t high) argument
101 test_vcombine_f64(float64x1_t low, float64x1_t high) argument
[all...]
H A D2002-09-18-UnionProblem.c5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
/external/valgrind/none/tests/s390x/
H A Dcdsg.c5 uint64_t high; member in struct:__anon23772
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 !
[all...]
H A Dcds.c5 uint64_t high; member in struct:__anon23771
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/
H A Dtpm-nvsize12 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/
H A Dudivmoddi4.c36 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...]
H A Dudivmodti4.c38 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...]
H A Dfixunsdfdi.c25 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;
H A Dlshrdi3.c32 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);
H A Dlshrti3.c32 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);
H A Dashrdi3.c32 /* 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);
H A Dashrti3.c32 /* 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);
H A Dfixunssfdi.c26 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;
H A Dfixunsxfsi.c37 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 Dint_types.h40 si_int high; member in struct:__anon3403::__anon3404
42 si_int high;
55 su_int high; member in struct:__anon3405::__anon3406
57 su_int high;
80 di_int high; member in struct:__anon3407::__anon3408
82 di_int high;
95 du_int high; member in struct:__anon3409::__anon3410
97 du_int high;
105 r.s.high = h;
112 r.s.high
135 udwords high; member in struct:__anon3413
[all...]
H A Dcmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
H A Dcmpti2.c31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
H A Ducmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
H A Ducmpti2.c31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
H A Dclzdi2.c26 const si_int f = -(x.s.high == 0);
27 return __builtin_clz((x.s.high & ~f) | (x.s.low & f)) +
H A Dclzti2.c28 const di_int f = -(x.s.high == 0);
29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
H A Dffsdi2.c28 if (x.s.high == 0)
30 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
H A Dffsti2.c30 if (x.s.high == 0)
32 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
/external/strace/tests/
H A Dllseek.c39 const unsigned long high = 0xfacefeed; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
/external/strace/tests-m32/
H A Dllseek.c39 const unsigned long high = 0xfacefeed; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);

Completed in 1513 milliseconds

1234567891011>>