HomeSort by relevance Sort by last modified time
    Searched defs:lshift (Results 1 - 22 of 22) sorted by null

  /external/libopus/silk/
Inlines.h 103 opus_int a_headrm, b_headrm, lshift; local
129 lshift = 29 + a_headrm - b_headrm - Qres;
130 if( lshift < 0 ) {
131 return silk_LSHIFT_SAT32(result, -lshift);
133 if( lshift < 32){
134 return silk_RSHIFT(result, lshift);
148 opus_int b_headrm, lshift; local
171 lshift = 61 - b_headrm - Qres;
172 if( lshift <= 0 ) {
173 return silk_LSHIFT_SAT32(result, -lshift);
    [all...]
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
Flagged.h 149 static constexpr IntFlag lshift(Flag value, int shift) { function in struct:android::_Flagged_helper
369 static constexpr IntFlag sEffectiveMask = _Flagged_helper::lshift(MASK, sFlagShift);
407 mFlags(Flag(_Flagged_helper::lshift(flags & sFlagMask, sFlagShift))) { }
  /external/libopus/silk/fixed/
find_LTP_FIX.c 57 opus_int i, k, lshift; local
125 lshift = silk_CLZ32( WLTP_max ) - 1 - 3; /* keep 3 bits free for vq_nearest_neighbor_fix */
126 silk_assert( 26 - 18 + lshift >= 0 );
127 if( 26 - 18 + lshift < 31 ) {
128 temp32 = silk_min_32( temp32, silk_LSHIFT( (opus_int32)1, 26 - 18 + lshift ) );
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 273 int lshift = MAX(0, -rshift); local
293 int pix = ((pix_row[x] + delta) >> rshift) << lshift;
300 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
306 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
335 int lshift = MAX(0, -rshift); local
355 int pix = ((pix_row[x] + delta) >> rshift) << lshift;
362 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
368 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
misc.c 458 lshift function
gdtoaimp.h 548 #define lshift __lshift_D2A macro
599 extern Bigint *lshift ANSI((Bigint*, int));
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
misc.c 458 lshift function
gdtoaimp.h 521 #define lshift __lshift_D2A macro
572 extern Bigint *lshift (Bigint*, int);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 317 unsigned lshift = dst_width - n; local
332 if (lshift) {
335 lshift), "");
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
bn_test.cc 294 EXPECT_BIGNUMS_EQUAL("LShift >> 1", a.get(), ret.get());
297 EXPECT_BIGNUMS_EQUAL("LShift >> 1", a.get(), ret.get());
306 EXPECT_BIGNUMS_EQUAL("(LShift | 1) >> 1", a.get(), ret.get());
311 bssl::UniquePtr<BIGNUM> lshift = GetBIGNUM(t, "LShift"); local
313 ASSERT_TRUE(lshift);
320 EXPECT_BIGNUMS_EQUAL("A << N", lshift.get(), ret.get());
322 ASSERT_TRUE(BN_rshift(ret.get(), lshift.get(), n));
659 {"LShift", TestLShift},
    [all...]
  /external/mesa3d/src/compiler/glsl/
ir_builder.cpp 426 lshift(operand a, operand b) function in namespace:ir_builder
  /system/keymaster/
ocb.c 169 __m128i lshift = _mm_cvtsi32_si128(bot); local
171 lo = _mm_xor_si128(_mm_sll_epi64(hi, lshift), _mm_srl_epi64(lo, rshift));
221 vector unsigned lshift = vec_splat(bot_vec, 0); local
222 vector unsigned rshift = vec_sub(k32, lshift);
223 hi = vec_sl(hi, lshift);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
dtoa.c 44 * Balloc, multadd, s2b, i2b, mult, pow5mult, lshift, diff, d2b
843 lshift(Bigint *b, int k) function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dtoa.c 44 * Balloc, multadd, s2b, i2b, mult, pow5mult, lshift, diff, d2b
826 lshift(Bigint *b, int k) function
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_peephole.cpp 646 int lshift = 0; local
653 lshift = 32 - width - offset;
660 case TYPE_S32: res.data.s32 = (res.data.s32 << lshift) >> rshift; break;
661 case TYPE_U32: res.data.u32 = (res.data.u32 << lshift) >> rshift; break;
    [all...]
  /external/python/cpython2/Python/
dtoa.c 44 * Balloc, multadd, s2b, i2b, mult, pow5mult, lshift, diff, d2b
843 lshift(Bigint *b, int k) function
    [all...]
  /external/valgrind/VEX/priv/
guest_x86_helpers.c 113 inline static Int lshift ( Int x, Int n ) function
160 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
161 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
181 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
182 of = lshift((argL ^ argR) & (argL ^ res), \
206 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
207 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
231 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
232 of = lshift((argL ^ argR) & (argL ^ res), \
248 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80;
    [all...]
guest_amd64_helpers.c 153 static inline Long lshift ( Long x, Int n ) function
204 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
205 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
225 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
226 of = lshift((argL ^ argR) & (argL ^ res), \
250 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
251 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
275 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
276 of = lshift((argL ^ argR) & (argL ^ res), \
292 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80;
    [all...]
  /prebuilts/ndk/r11/sources/android/support/src/stdio/
strtod.c 1059 lshift function
    [all...]
  /prebuilts/ndk/r13/sources/android/support/src/stdio/
strtod.c 1059 lshift function
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_vgpu10.c 3430 struct tgsi_full_src_register lshift = local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.updatesite_1.0.400.v20130515-2028.jar 

Completed in 2860 milliseconds