Searched defs:high (Results 1 - 25 of 507) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/builtins/
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 Dfloatdidf.c40 const double high = (int32_t)(a >> 32) * twop32; local
43 const double result = (high - twop52) + low.d;
101 fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */
103 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
H A Dfloatundidf.c39 union { uint64_t x; double d; } high = { .d = twop84 }; local
42 high.x |= a >> 32;
45 const double result = (high.d - twop84_plus_twop52) + low.d;
101 fb.u.s.high = ((e + 1023) << 20) | /* exponent */
102 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
/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);
/external/strace/tests-mx32/
H A Dllseek.c39 const unsigned long high = 0xfacefeed; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
/external/clang/test/CodeGen/
H A D2002-09-18-UnionProblem.c5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
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 D2005-09-24-BitFieldCrash.c9 long long high; member in struct:tree_int_cst::tree_int_cst_lowhi
/external/compiler-rt/lib/builtins/ppc/
H A Dfloatunditf.c18 doublebits high = { .d = twop84 }; local
21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */
24 const double high_addend = high.d - twop84_plus_twop52;
/external/elfutils/tests/
H A Ddwfl-bug-addr-overflow.c47 Dwfl_Module *high = dwfl_report_module (dwfl, "high", local
50 assert (high);
64 assert (mod == high);
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dget_lsp_poly.c46 int16_t high, low; local
67 high = (int16_t)(fPtr[-1] >> 16);
68 low = (int16_t)((fPtr[-1] - ((int32_t)high << 16)) >> 1);
70 tmpW32 = ((high * *lspPtr) << 2) + (((low * *lspPtr) >> 15) << 2);
H A Daugmented_cb_corr.c33 size_t high, /* (i) Lag to end at (typically 39) */
47 for (lagcount=low; lagcount<=high; lagcount++) {
23 WebRtcIlbcfix_AugmentedCbCorr( int16_t *target, int16_t *buffer, int16_t *interpSamples, int32_t *crossDot, size_t low, size_t high, int scale) argument
/external/google-breakpad/src/google_breakpad/common/
H A Dbreakpad_types.h73 uint64_t high; member in struct:__anon6891
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dbitdepth_conversion_vsx.h38 const int32x4_t high = vec_mergeh(even, odd); local
40 vec_vsx_st(high, c, s);
/external/libvpx/libvpx/vpx_dsp/
H A Dvpx_dsp_common.h50 static INLINE int clamp(int value, int low, int high) { argument
51 return value < low ? low : (value > high ? high : value);
54 static INLINE double fclamp(double value, double low, double high) { argument
55 return value < low ? low : (value > high ? high : value);
/external/r8/src/main/java/com/android/tools/r8/code/
H A DBaseInstructionFactory.java10 static Instruction create(int high, int opcode, BytecodeStream stream, argument
14 return Nop.create(high, stream);
16 return new Move(high, stream);
18 return new MoveFrom16(high, stream);
20 return new Move16(high, stream);
22 return new MoveWide(high, stream);
24 return new MoveWideFrom16(high, stream);
26 return new MoveWide16(high, stream);
28 return new MoveObject(high, stream);
30 return new MoveObjectFrom16(high, strea
[all...]
H A DSwitchPayload.java10 SwitchPayload(int high, BytecodeStream stream) { argument
11 super(high, stream);
/external/syslinux/com32/hdt/
H A Dhdt-menu-dmi.c274 uint32_t high = dmi->ipmi.base_address >> 32; local
278 high, (low & ~1));
280 high, (low & ~1));
/external/valgrind/none/tests/s390x/
H A Dcds.c5 uint64_t high; member in struct:__anon25399
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/vixl/examples/aarch64/
H A Dcheck-bounds.cc32 // uint64_t check_bounds(uint64_t value, uint64_t low, uint64_t high)
36 // high -> x2
42 // Now we will compare 'value' and 'high' (x0 and x2) but only if the 'pl'
65 uint64_t high) {
68 simulator->WriteXRegister(2, high);
75 high);
61 run_function(Simulator* simulator, Instruction* function, uint64_t value, uint64_t low, uint64_t high) argument
/external/ImageMagick/coders/
H A Dlabel.c150 high,
175 high=draw_info->pointsize;
176 for (low=1.0; (high-low) > 0.5; )
178 draw_info->pointsize=(low+high)/2.0;
191 high=draw_info->pointsize-0.5;
198 high=draw_info->pointsize-0.5;
200 draw_info->pointsize=(low+high)/2.0-0.5;
148 high, local
/external/e2fsprogs/e2fsck/
H A Ddx_dirinfo.c87 int low, high, mid; local
90 high = ctx->dx_dir_info_count-1;
95 if (ino == ctx->dx_dir_info[high].ino)
96 return &ctx->dx_dir_info[high];
98 while (low < high) {
99 mid = (low+high)/2;
100 if (mid == low || mid == high)
105 high = mid;
/external/e2fsprogs/lib/uuid/
H A Duuid_time.c62 uint32_t high; local
67 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
68 clock_reg = uuid.time_low | ((uint64_t) high << 32);
/external/google-breakpad/src/processor/
H A Dcontained_range_map-inl.h59 AddressType high = base + size - 1; local
62 if (size <= 0 || high < base) {
68 // << HexString(size) << ", " << HexString(high);
76 MapIterator iterator_high = map_->lower_bound(high);
86 // containing child's high address.
87 if (iterator_base->second->base_ == base && iterator_base->first == high) {
99 // is higher than the new range's high address. Set contains_high to true
103 high >= iterator_high->second->base_;
108 (contains_high && high < iterator_high->first)) {
140 // Store the new range in the map by its high addres
[all...]

Completed in 553 milliseconds

1234567891011>>