HomeSort by relevance Sort by last modified time
    Searched refs:lo2 (Results 1 - 24 of 24) sorted by null

  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
oper_32b.h 26 Word32 Mpy_32 (Word16 hi1, Word16 lo1, Word16 hi2, Word16 lo2);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
oper_32b.c 99 * L_32 = (hi1*hi2)<<1 + ( (hi1*lo2)>>15 + (lo1*hi2)>>15 )<<1 *
109 * lo2 lo part of second number *
114 __inline Word32 Mpy_32 (Word16 hi1, Word16 lo1, Word16 hi2, Word16 lo2)
118 L_32 += (hi1 * lo2) >> 15;
132 * L_32 = (hi1*lo2)<<1 + ((lo1*lo2)>>15)<<1 *
  /external/tensorflow/tensorflow/core/platform/
test_benchmark.h 91 Benchmark* RangePair(int lo1, int hi1, int lo2, int hi2);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwb_math_op.h 116 int32 mpy_dpf_32(int16 hi1, int16 lo1, int16 hi2, int16 lo2);
pvamrwb_math_op.cpp 602 * L_32 = (hi1*hi2)<<1 + ( (hi1*lo2)>>15 + (lo1*hi2)>>15 )<<1
612 * lo2 lo part of second number
616 int32 mpy_dpf_32(int16 hi1, int16 lo1, int16 hi2, int16 lo2)
621 L_32 = mac_16by16_to_int32(L_32, mult_int16(hi1, lo2), 1);
  /external/freetype/src/base/
fttrigon.c 87 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; local
98 lo2 = FT_TRIG_SCALE & 0x0000FFFFU;
101 lo = lo1 * lo2;
103 i2 = lo2 * hi1;
ftcalc.c 284 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; local
288 lo2 = y & 0x0000FFFFU; hi2 = y >> 16;
290 lo = lo1 * lo2;
292 i2 = lo2 * hi1;
  /bionic/libc/include/sys/
ucontext.h 246 greg_t lo2;
271 unsigned long lo2;
  /external/tensorflow/tensorflow/core/platform/default/
test_benchmark.cc 100 Benchmark* Benchmark::RangePair(int lo1, int hi1, int lo2, int hi2) {
104 AddRange(&args2, lo2, hi2, 8);
  /external/arm-optimized-routines/math/
pow.c 39 double_t z, r, y, invc, logc, logctail, kd, hi, t1, t2, lo, lo1, lo2, p; local
75 lo2 = t1 - t2 + r;
99 lo = lo1 + lo2 + lo3 + lo4 + p;
  /external/harfbuzz_ng/src/
hb-dsalgs.hh 334 hb_in_ranges (T u, T lo1, T hi1, T lo2, T hi2)
336 return hb_in_range (u, lo1, hi1) || hb_in_range (u, lo2, hi2);
339 hb_in_ranges (T u, T lo1, T hi1, T lo2, T hi2, T lo3, T hi3)
341 return hb_in_range (u, lo1, hi1) || hb_in_range (u, lo2, hi2) || hb_in_range (u, lo3, hi3);
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 134 unsigned lo2 = Value & 0x3; local
136 return (hi19 << 5) | (lo2 << 29);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 142 unsigned lo2 = Value & 0x3; local
144 return (hi19 << 5) | (lo2 << 29);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmltok.c 547 unsigned char lo2; \
589 lo2 = GET_LO(from); \
592 | (lo2 >> 6) \
594 *(*toP)++ = ((lo2 & 0x3f) | 0x80); \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmltok.c 543 unsigned char lo2; \
585 lo2 = GET_LO(from); \
588 | (lo2 >> 6) \
590 *(*toP)++ = ((lo2 & 0x3f) | 0x80); \
    [all...]
  /external/expat/lib/
xmltok.c 675 unsigned char lo2; \
721 lo2 = GET_LO(from); \
724 | (lo2 >> 6) \
726 *(*toP)++ = ((lo2 & 0x3f) | 0x80); \
    [all...]
  /external/google-breakpad/src/client/linux/dump_writer_common/
ucontext_reader.cc 234 out->lo[1] = uc->uc_mcontext.lo2;
  /external/python/cpython2/Modules/expat/
xmltok.c 675 unsigned char lo2; \
721 lo2 = GET_LO(from); \
724 | (lo2 >> 6) \
726 *(*toP)++ = ((lo2 & 0x3f) | 0x80); \
    [all...]
  /external/python/cpython3/Modules/expat/
xmltok.c 678 unsigned char lo2; \
724 lo2 = GET_LO(from); \
727 | (lo2 >> 6) \
729 *(*toP)++ = ((lo2 & 0x3f) | 0x80); \
    [all...]
  /external/google-benchmark/include/benchmark/
benchmark.h 831 // Equivalent to Ranges({{lo1, hi1}, {lo2, hi2}}).
834 Benchmark* RangePair(int64_t lo1, int64_t hi1, int64_t lo2, int64_t hi2) {
837 ranges.push_back(std::make_pair(lo2, hi2));
    [all...]
  /external/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h 831 // Equivalent to Ranges({{lo1, hi1}, {lo2, hi2}}).
834 Benchmark* RangePair(int64_t lo1, int64_t hi1, int64_t lo2, int64_t hi2) {
837 ranges.push_back(std::make_pair(lo2, hi2));
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 861 LLVMValueRef lo, hi, lo2, hi2; local
869 lo2 = LLVMBuildBitCast(builder, tmp[j*2], type64_t, "");
871 lo = lp_build_interleave2(gallivm, type64, lo2, hi2, 0);
872 hi = lp_build_interleave2(gallivm, type64, lo2, hi2, 1);
    [all...]
  /external/v8/src/libsampler/
sampler.cc 125 uint32_t lo2; member in struct:__anon48551
  /external/freetype/src/truetype/
ttinterp.c 1440 FT_UInt32 l, lo1, lo2, lo; local
    [all...]

Completed in 642 milliseconds