/third_party/python/Modules/_decimal/libmpdec/ |
H A D | crt.c | 47 mpd_uint_t hi1, hi2, lo; in _crt_mulP1P2_3() local 52 _mpd_mul_words(&hi2, &lo, UH_P1P2, v); in _crt_mulP1P2_3() 54 if (lo < hi1) hi2++; in _crt_mulP1P2_3() 57 w[2] = hi2; in _crt_mulP1P2_3()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | fttrigon.c | 86 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; in ft_trig_downscale() local 98 hi2 = FT_TRIG_SCALE >> 16; in ft_trig_downscale() 101 i1 = lo1 * hi2; in ft_trig_downscale() 103 hi = hi1 * hi2; in ft_trig_downscale()
|
H A D | ftcalc.c | 283 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; in ft_multo64() local 287 lo2 = y & 0x0000FFFFU; hi2 = y >> 16; in ft_multo64() 290 i1 = lo1 * hi2; in ft_multo64() 292 hi = hi1 * hi2; in ft_multo64()
|
/third_party/musl/arch/mips/bits/ |
H A D | signal.h | 36 unsigned long hi1, lo1, hi2, lo2, hi3, lo3; member
|
/third_party/musl/arch/mips64/bits/ |
H A D | signal.h | 45 greg_t hi2; member
|
/third_party/musl/arch/mipsn32/bits/ |
H A D | signal.h | 45 greg_t hi2; member
|
/third_party/backends/backend/ |
H A D | qcam.c | 524 unsigned int hi2, lo2; in qc_readbytes() local 544 hi2 = (read_lpstatus (q) >> 3) & 0x1f; in qc_readbytes() 549 hi2 ^= 0x10; in qc_readbytes() 558 buffer[4] = ((lo2 & 0x70) >> 4) | ((hi2 & 1) << 3); in qc_readbytes() 559 buffer[5] = (hi2 & 0x1e) >> 1; in qc_readbytes() 567 buffer[3] = ((lo2 & 0x40) >> 6) | (hi2 << 1); in qc_readbytes() 573 buffer[1] = ((hi2 & 0x1e) >> 1) | ((hi & 0x1e) << 3); in qc_readbytes() 574 buffer[2] = lo2 | ((hi2 & 0x1) << 7); in qc_readbytes()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-algs.hh | 818 hb_in_ranges (T u, T lo1, T hi1, T lo2, T hi2) in hb_in_ranges() argument 820 return hb_in_range (u, lo1, hi1) || hb_in_range (u, lo2, hi2); in hb_in_ranges() 823 hb_in_ranges (T u, T lo1, T hi1, T lo2, T hi2, T lo3, T hi3) in hb_in_ranges() argument 825 return hb_in_range (u, lo1, hi1) || hb_in_range (u, lo2, hi2) || hb_in_range (u, lo3, hi3); in hb_in_ranges()
|
/third_party/benchmark/include/benchmark/ |
H A D | benchmark.h | 1141 // Equivalent to Ranges({{lo1, hi1}, {lo2, hi2}}). 1144 Benchmark* RangePair(int64_t lo1, int64_t hi1, int64_t lo2, int64_t hi2) { in RangePair() argument 1147 ranges.push_back(std::make_pair(lo2, hi2)); in RangePair()
|
/third_party/node/deps/v8/src/libsampler/ |
H A D | sampler.cc | 118 uint32_t hi2;
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_fs.c | 1582 LLVMValueRef lo, hi, lo2, hi2; in fs_twiddle_transpose() local 1591 hi2 = LLVMBuildBitCast(builder, tmp[j*2 + 1], type64_t, ""); in fs_twiddle_transpose() 1592 lo = lp_build_interleave2(gallivm, type64, lo2, hi2, 0); in fs_twiddle_transpose() 1593 hi = lp_build_interleave2(gallivm, type64, lo2, hi2, 1); in fs_twiddle_transpose()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_lowering_nvc0.cpp | 240 Value *x32_minus_shift, *pred, *hi1, *hi2; in handleShift() local 257 bld.mkOp2(op, type, (hi2 = bld.getSSA()), src[0], in handleShift() 260 bld.mkOp2(OP_UNION, TYPE_U32, (dst[1] = bld.getSSA()), hi1, hi2); in handleShift()
|
/third_party/skia/third_party/externals/freetype/src/truetype/ |
H A D | ttinterp.c | 1414 FT_Int32 m, s, hi1, hi2, hi; in TT_DotFix14() local 1430 hi2 = ( m >> 16 ) + ( (FT_Int32)l >> 31 ) + ( lo2 < l ); in TT_DotFix14() 1434 hi = hi1 + hi2 + ( lo < lo1 ); in TT_DotFix14()
|