Searched defs:low (Results 1 - 25 of 249) sorted by relevance

12345678910

/external/fec/
H A Dsumsq_sse2_assist.s20 movaps low,%xmm3 # load mask
38 movd %xmm0,%eax # low 32 bits of sum
49 low: .byte 255,255,255,255,0,0,0,0,255,255,255,255,0,0,0,0 label
/external/compiler-rt/lib/builtins/
H A Dfixunsdfdi.c26 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
27 return ((du_int)high << 32) | low;
H A Dfixunssfdi.c27 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
28 return ((du_int)high << 32) | low;
H A Dfloatdidf.c38 union { int64_t x; double d; } low = { .d = twop52 }; local
41 low.x |= a & INT64_C(0x00000000ffffffff);
43 const double result = (high - twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
H A Dfloatundidf.c40 union { uint64_t x; double d; } low = { .d = twop52 }; local
43 low.x |= a & UINT64_C(0x00000000ffffffff);
45 const double result = (high.d - twop84_plus_twop52) + low.d;
103 fb.u.low = (su_int)a; /* mantissa-low */
/external/compiler-rt/lib/builtins/ppc/
H A Dfloatditf.c15 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 Dfloatunditf.c19 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;
/external/strace/tests/
H A Dllseek.c44 const unsigned long low = 0xdeadbeef; local
47 int 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
H A Daarch64-neon-vcombine.c8 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...]
H A D2005-09-24-BitFieldCrash.c8 unsigned long long low; member in struct:tree_int_cst::tree_int_cst_lowhi
/external/elfutils/tests/
H A Ddwfl-bug-addr-overflow.c51 Dwfl_Module *low = dwfl_report_module (dwfl, "low", local
54 assert (low);
66 assert (mod == low);
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dget_lsp_poly.c46 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);
H A Daugmented_cb_corr.c31 size_t low, /* (i) Lag to start from (typically
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/clang/test/OpenMP/
H A Dordered_codegen.cpp218 void foo_simd(int low, int up) { argument
222 for (int i = low; i < up; ++i) {
/external/google-breakpad/src/google_breakpad/common/
H A Dbreakpad_types.h74 uint64_t low; member in struct:__anon6302
/external/libvpx/libvpx/vpx_dsp/
H A Dvpx_dsp_common.h44 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/lldb/include/lldb/Utility/
H A DRange.h28 Range (ValueType low = 0,
47 SetLow (ValueType low) argument
49 m_low = low;
/external/pdfium/third_party/libopenjpeg20/
H A Dtgt.h60 OPJ_INT32 low; member in struct:opj_tgt_node
/external/valgrind/none/tests/s390x/
H A Dcds.c6 uint64_t low; member in struct:__anon19578
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/vixl/examples/
H A Dcheck-bounds.cc33 // uint64_t check_bounds(uint64_t value, uint64_t low, uint64_t high)
36 // low -> x1
39 // First we compare 'value' with the 'low' bound. If x1 <= x0 the N flag will
63 uint64_t value, uint64_t low, uint64_t high) {
65 simulator->set_xreg(1, low);
71 low, high);
62 run_function(Simulator *simulator, Instruction * function, uint64_t value, uint64_t low, uint64_t high) argument
/external/ImageMagick/coders/
H A Dlabel.c151 low;
176 for (low=1.0; (high-low) > 0.5; )
178 draw_info->pointsize=(low+high)/2.0;
189 low=draw_info->pointsize+0.5;
196 low=draw_info->pointsize+0.5;
200 draw_info->pointsize=(low+high)/2.0-0.5;
149 low; local
/external/e2fsprogs/e2fsck/
H A Ddx_dirinfo.c83 int low, high, mid; local
85 low = 0;
89 if (ino == ctx->dx_dir_info[low].ino)
90 return &ctx->dx_dir_info[low];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
103 low = mid;
/external/eigen/test/
H A Dnullary.cpp44 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...]
/external/libevent/include/event2/
H A Dbufferevent_struct.h58 size_t low; member in struct:event_watermark

Completed in 559 milliseconds

12345678910