/dalvik/vm/mterp/mips/ |
OP_USHR_LONG_2ADDR.S | 3 * Long integer shift, 2addr version. vA is 64-bit value/result, vB is 4 * 32-bit shift distance. 14 srl v1, a1, a2 # rhi<- ahi >> (shift&31) 15 srl v0, a0, a2 # rlo<- alo >> (shift&31) 16 not a0, a2 # alo<- 31-n (shift is 5b) 18 sll a1, a0 # ahi<- ahi << (32-(shift&31)) 20 andi a2, 0x20 # shift & 0x20 21 movn v0, v1, a2 # rlo<- rhi (if shift&0x20) 22 movn v1, zero, a2 # rhi<- 0 (if shift&0x20)
|
OP_SHL_LONG.S | 3 * Long integer shift. This is different from the generic 32/64-bit 4 * binary operations because vAA/vBB are 64-bit but vCC (the shift 6 * 6 bits of the shift distance. 20 sll v0, a0, a2 # rlo<- alo << (shift&31) 21 not v1, a2 # rhi<- 31-shift (shift is 5b) 23 srl a0, v1 # alo<- alo >> (32-(shift&31)) 24 sll v1, a1, a2 # rhi<- ahi << (shift&31) 26 andi a2, 0x20 # shift< shift & 0x2 [all...] |
OP_SHR_LONG.S | 3 * Long integer shift. This is different from the generic 32/64-bit 4 * binary operations because vAA/vBB are 64-bit but vCC (the shift 6 * 6 bits of the shift distance. 19 sra v1, a1, a2 # rhi<- ahi >> (shift&31) 20 srl v0, a0, a2 # rlo<- alo >> (shift&31) 22 not a0, a2 # alo<- 31-shift (shift is 5b) 24 sll a1, a0 # ahi<- ahi << (32-(shift&31)) 26 andi a2, 0x20 # shift & 0x20 27 movn v0, v1, a2 # rlo<- rhi (if shift&0x20 [all...] |
OP_SHR_LONG_2ADDR.S | 3 * Long integer shift, 2addr version. vA is 64-bit value/result, vB is 4 * 32-bit shift distance. 14 sra v1, a1, a2 # rhi<- ahi >> (shift&31) 15 srl v0, a0, a2 # rlo<- alo >> (shift&31) 17 not a0, a2 # alo<- 31-shift (shift is 5b) 19 sll a1, a0 # ahi<- ahi << (32-(shift&31)) 21 andi a2, 0x20 # shift & 0x20 22 movn v0, v1, a2 # rlo<- rhi (if shift&0x20) 23 movn v1, a3, a2 # rhi<- sign(ahi) (if shift&0x20 [all...] |
/external/compiler-rt/lib/ |
floatsisf.c | 42 // Shift a into the significand field, rounding if it is a right-shift 44 const int shift = significandBits - exponent; local 45 result = (rep_t)a << shift ^ implicitBit; 47 const int shift = exponent - significandBits; local 48 result = (rep_t)a >> shift ^ implicitBit; 49 rep_t round = (rep_t)a << (typeWidth - shift);
|
floatsidf.c | 42 // Shift a into the significand field and clear the implicit bit. Extra 45 const int shift = significandBits - exponent; local 46 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
|
floatunsidf.c | 34 // Shift a into the significand field and clear the implicit bit. 35 const int shift = significandBits - exponent; local 36 result = (rep_t)a << shift ^ implicitBit;
|
/system/core/include/private/pixelflinger/ |
ggl_fixed.h | 110 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) CONST; 111 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) { 113 if (__builtin_constant_p(shift)) { 118 : "%[x]"(x), [y]"r"(y), [lshift] "I"(32-shift), [rshift] "I"(shift) 126 : "%[x]"(x), [y]"r"(y), [lshift] "r"(32-shift), [rshift] "r"(shift) 133 inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) CONST; 134 inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) { 136 if (__builtin_constant_p(shift)) { [all...] |
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
ms_stereo.c | 65 Word32 idx, shift; local 77 shift = norm_l(nrgL); 78 nrgL = Div_32(thrL << shift, nrgL << shift); 80 shift = norm_l(nrgR); 81 nrgR = Div_32(thrR << shift, nrgR << shift); 89 shift = norm_l(nrgL); 90 nrgL = Div_32(minThreshold << shift, nrgL << shift); [all...] |
/external/speex/libspeex/ |
fixed_generic.h | 45 #define SHR16(a,shift) ((a) >> (shift)) 46 #define SHL16(a,shift) ((a) << (shift)) 47 #define SHR32(a,shift) ((a) >> (shift)) 48 #define SHL32(a,shift) ((a) << (shift)) 49 #define PSHR16(a,shift) (SHR16((a)+((1<<((shift))>>1)),shift) [all...] |
lpc_bfin.h | 49 int shift, ac_shift; local 58 shift = 8; 59 while (shift && ac0<0x40000000) 61 shift--; 72 nshift = -shift; 115 d = ADD32(d,SHR32(MULT16_16(x[j],x[j]), shift)); 124 d = ADD32(d,SHR32(MULT16_16(x[j],x[j-i]), shift));
|
/external/chromium_org/third_party/skia/src/core/ |
SkBitmap_scroll.cpp | 26 int shift; local 31 shift = 0; 35 shift = 1; 38 shift = 2; 101 src -= dx << shift; 104 dst += dx << shift; 114 width <<= shift; // now width is the number of bytes to move per line local
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/ |
buildAll.bat | 37 if x%1==x-mapVersionTag set mapVersionTag=%2 && shift && shift && goto processcmdlineargs
38 if x%1==x-vm set vm=%2 && shift && shift && goto processcmdlineargs
39 if x%1==x-bc set bootclasspath=-Dbootclasspath=%2 && shift && shift && goto processcmdlineargs
40 if x%1==x-target set target=%2 && shift && shift && goto processcmdlineargs
41 if x%1==x-buildID set buildID=-DbuildId=%2 && shift && shift && goto processcmdlineargs [all...] |
/external/skia/src/core/ |
SkBitmap_scroll.cpp | 26 int shift; local 31 shift = 0; 35 shift = 1; 38 shift = 2; 101 src -= dx << shift; 104 dst += dx << shift; 114 width <<= shift; // now width is the number of bytes to move per line local
|
/external/chromium_org/chrome/test/remoting/ |
key_code_conv.cc | 16 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift) { 24 *shift = false; 31 *shift = true;
|
/hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/include/ |
ExynosVideoDec.h | 28 #define OPERATE_BIT(x, mask, shift) ((x & (mask << shift)) >> shift)
|
/external/chromium_org/third_party/freetype/src/base/ |
fttrigon.c | 118 FT_Int shift; local 124 shift = FT_MSB( FT_ABS( x ) | FT_ABS( y ) ); 126 if ( shift <= FT_TRIG_SAFE_MSB ) 128 shift = FT_TRIG_SAFE_MSB - shift; 129 vec->x = (FT_Pos)( (FT_ULong)x << shift ); 130 vec->y = (FT_Pos)( (FT_ULong)y << shift ); 134 shift -= FT_TRIG_SAFE_MSB; 135 vec->x = x >> shift; 136 vec->y = y >> shift; 365 FT_Int shift; local 402 FT_Int shift; local 438 FT_Int shift; local [all...] |
/external/freetype/src/base/ |
fttrigon.c | 118 FT_Int shift; local 124 shift = FT_MSB( FT_ABS( x ) | FT_ABS( y ) ); 126 if ( shift <= FT_TRIG_SAFE_MSB ) 128 shift = FT_TRIG_SAFE_MSB - shift; 129 vec->x = (FT_Pos)( (FT_ULong)x << shift ); 130 vec->y = (FT_Pos)( (FT_ULong)y << shift ); 134 shift -= FT_TRIG_SAFE_MSB; 135 vec->x = x >> shift; 136 vec->y = y >> shift; 365 FT_Int shift; local 402 FT_Int shift; local 438 FT_Int shift; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
NavigationPolicy.h | 46 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy*);
|
/external/chromium_org/gpu/command_buffer/common/ |
bitfield_helpers.h | 14 template<int shift, int length> class BitField { 16 static const unsigned int kShift = shift;
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
Int32RShiftToInt16_Sat_32x16.c | 31 LVM_INT16 shift ) 38 temp = *src >> shift;
|
/external/chromium_org/third_party/opus/src/silk/ |
MacroDebug.h | 547 static inline opus_int8 silk_LSHIFT8_(opus_int8 a, opus_int32 shift, char *file, int line){ 550 ret = a << shift; 551 fail |= shift < 0; 552 fail |= shift >= 8; 553 fail |= (opus_int64)ret != ((opus_int64)a) << shift; 556 fprintf (stderr, "silk_LSHIFT8(%d, %d) in %s: line %d\n", a, shift, file, line); 566 static inline opus_int16 silk_LSHIFT16_(opus_int16 a, opus_int32 shift, char *file, int line){ 569 ret = a << shift; 570 fail |= shift < 0; 571 fail |= shift >= 16 [all...] |
/system/core/libpixelflinger/arch-mips/ |
t32cb16blend.S | 25 * blend one of 2 16bpp RGB pixels held in dreg selected by shift 29 * the the second pixel (shift==16) will be merged into 36 .macro pixel dreg src fb shift 52 ext $t8,\dreg,\shift+6+5,5 # dst[\shift:15..11] 54 ext $t0,\dreg,\shift+5,6 # start green extraction dst[\shift:10..5] 58 ins \fb,$t8,\shift+6+5,5 # dst[\shift:15..11] 62 ext $t0,\dreg,\shift,5 # start blue extraction dst[\shift:4..0 [all...] |
/external/chromium_org/third_party/opus/src/silk/float/ |
residual_energy_FLP.c | 101 opus_int shift; local 105 shift = LPC_order + subfr_length; 108 silk_LPC_analysis_filter_FLP( LPC_res, a[ 0 ], x + 0 * shift, 2 * shift, LPC_order ); 109 nrgs[ 0 ] = ( silk_float )( gains[ 0 ] * gains[ 0 ] * silk_energy_FLP( LPC_res_ptr + 0 * shift, subfr_length ) ); 110 nrgs[ 1 ] = ( silk_float )( gains[ 1 ] * gains[ 1 ] * silk_energy_FLP( LPC_res_ptr + 1 * shift, subfr_length ) ); 113 silk_LPC_analysis_filter_FLP( LPC_res, a[ 1 ], x + 2 * shift, 2 * shift, LPC_order ); 114 nrgs[ 2 ] = ( silk_float )( gains[ 2 ] * gains[ 2 ] * silk_energy_FLP( LPC_res_ptr + 0 * shift, subfr_length ) ); 115 nrgs[ 3 ] = ( silk_float )( gains[ 3 ] * gains[ 3 ] * silk_energy_FLP( LPC_res_ptr + 1 * shift, subfr_length ) ) [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
fixed_generic.h | 39 /** 16x32 multiplication, followed by a 16-bit shift right. Results fits in 32 bits */ 42 /** 16x32 multiplication, followed by a 16-bit shift right (round-to-nearest). Results fits in 32 bits */ 45 /** 16x32 multiplication, followed by a 15-bit shift right. Results fits in 32 bits */ 48 /** 32x32 multiplication, followed by a 31-bit shift right. Results fits in 32 bits */ 67 /** Arithmetic shift-right of a 16-bit value */ 68 #define SHR16(a,shift) ((a) >> (shift)) 69 /** Arithmetic shift-left of a 16-bit value */ 70 #define SHL16(a,shift) ((opus_int16)((opus_uint16)(a)<<(shift))) [all...] |