/external/srec/srec/clib/ |
matx_ops.c | 76 int ii, jj, shift; local 98 shift = 0; 101 shift++; 105 scale_coef = (1 << shift); 121 return (shift);
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
hp_max.cpp | 140 Word16 shift, shift1, shift2; 196 shift = sub(shift1, shift2); 198 if (shift >= 0) 200 *cor_hp_max = shr(cor_max, shift); // Q15 204 *cor_hp_max = shl(cor_max, negate(shift)); // Q15 251 Word16 shift, shift1, shift2; local 319 shift = sub(shift1, shift2, pOverflow); 321 if (shift >= 0) 323 *cor_hp_max = shr(cor_max, shift, pOverflow); /* Q15 */ 327 *cor_hp_max = shl(cor_max, negate(shift), pOverflow); /* Q15 * [all...] |
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/ |
AKFS_Device.c | 44 const int16 shift, /*!< shift size */ 50 if((shift < 1) || (len < shift)) { 53 for (i = len-1; i >= shift; i--) { 54 v[i] = v[i-shift];
|
/packages/apps/Email/src/com/beetstra/jutf7/ |
UTF7StyleCharsetDecoder.java | 42 private final byte shift;
field in class:UTF7StyleCharsetDecoder 55 this.shift = cs.shift();
74 out.put((char)shift);
87 if (b == shift) {
|
/external/chromium_org/third_party/opus/src/silk/ |
MacroCount.h | 331 static inline opus_int8 silk_LSHIFT8(opus_int8 a, opus_int32 shift){ 334 ret = a << shift; 338 static inline opus_int16 silk_LSHIFT16(opus_int16 a, opus_int32 shift){ 341 ret = a << shift; 345 static inline opus_int32 silk_LSHIFT32(opus_int32 a, opus_int32 shift){ 348 ret = a << shift; 352 static inline opus_int64 silk_LSHIFT64(opus_int64 a, opus_int shift){ 354 return a << shift; 358 static inline opus_int32 silk_LSHIFT_ovflw(opus_int32 a, opus_int32 shift){ 360 return a << shift; [all...] |
/external/speex/libspeex/ |
arch.h | 165 #define SHR16(a,shift) (a) 166 #define SHL16(a,shift) (a) 167 #define SHR32(a,shift) (a) 168 #define SHL32(a,shift) (a) 169 #define PSHR16(a,shift) (a) 170 #define PSHR32(a,shift) (a) 171 #define VSHR32(a,shift) (a) 174 #define SATURATE32PSHR(x,shift,a) (x) 176 #define PSHR(a,shift) (a) 177 #define SHR(a,shift) (a [all...] |
/external/chromium_org/third_party/skia/src/image/ |
SkSurface_Raster.cpp | 44 int shift = 0; local 47 shift = 0; 50 shift = 1; 53 shift = 2; 65 uint64_t minRB = (uint64_t)info.fWidth << shift; 70 size_t alignedRowBytes = rowBytes >> shift << shift;
|
/external/skia/src/image/ |
SkSurface_Raster.cpp | 44 int shift = 0; local 47 shift = 0; 50 shift = 1; 53 shift = 2; 65 uint64_t minRB = (uint64_t)info.fWidth << shift; 70 size_t alignedRowBytes = rowBytes >> shift << shift;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
pixeltransfer.c | 192 * Apply color index shift and offset to an array of pixels. 198 GLint shift = ctx->Pixel.IndexShift; local 201 if (shift > 0) { 203 indexes[i] = (indexes[i] << shift) + offset; 206 else if (shift < 0) { 207 shift = -shift; 209 indexes[i] = (indexes[i] >> shift) + offset; 222 * Apply color index shift, offset and table lookup to an array 245 * Apply stencil index shift, offset and table lookup to an arra 254 GLint shift = ctx->Pixel.IndexShift; local [all...] |
/external/mesa3d/src/mesa/main/ |
pixeltransfer.c | 192 * Apply color index shift and offset to an array of pixels. 198 GLint shift = ctx->Pixel.IndexShift; local 201 if (shift > 0) { 203 indexes[i] = (indexes[i] << shift) + offset; 206 else if (shift < 0) { 207 shift = -shift; 209 indexes[i] = (indexes[i] >> shift) + offset; 222 * Apply color index shift, offset and table lookup to an array 245 * Apply stencil index shift, offset and table lookup to an arra 254 GLint shift = ctx->Pixel.IndexShift; local [all...] |
/external/chromium_org/third_party/leveldatabase/src/util/ |
coding.cc | 116 for (uint32_t shift = 0; shift <= 28 && p < limit; shift += 7) { 121 result |= ((byte & 127) << shift); 123 result |= (byte << shift); 145 for (uint32_t shift = 0; shift <= 63 && p < limit; shift += 7) { 150 result |= ((byte & 127) << shift); 152 result |= (byte << shift); [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
arch.h | 155 #define SHR16(a,shift) (a) 156 #define SHL16(a,shift) (a) 157 #define SHR32(a,shift) (a) 158 #define SHL32(a,shift) (a) 159 #define PSHR32(a,shift) (a) 160 #define VSHR32(a,shift) (a) 162 #define PSHR(a,shift) (a) 163 #define SHR(a,shift) (a) 164 #define SHL(a,shift) (a) 168 #define ROUND16(a,shift) (a [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
keyboard_overlay.css | 80 .keyboard-overlay-key.is-shortcut.modifier-shift { 96 .keyboard-overlay-key.is-shortcut.modifier-shift.modifier-ctrl { 100 .keyboard-overlay-key.is-shortcut.modifier-shift.modifier-alt { 108 .keyboard-overlay-key.is-shortcut.modifier-shift.modifier-ctrl.modifier-alt { 117 .keyboard-overlay-key.pressed.is-shift { 121 .keyboard-overlay-key.pressed.is-shift.modifier-ctrl { 125 .keyboard-overlay-key.pressed.is-shift.modifier-alt { 129 .keyboard-overlay-key.pressed.is-shift.modifier-ctrl.modifier-alt { 137 .keyboard-overlay-key.pressed.is-ctrl.modifier-shift { 145 .keyboard-overlay-key.pressed.is-ctrl.modifier-shift.modifier-alt [all...] |
/external/skia/tests/ |
PathCoverageTest.cpp | 51 int shift = 30 - SkCLZ(distance); local 53 shift &= ~(shift>>31); 54 if (shift > MAX_COEFF_SHIFT) { 55 shift = MAX_COEFF_SHIFT; 57 return 1 << shift;
|
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
homing_amr_wb_dec.cpp | 250 int16 i, j, tmp, shift; local 289 shift = 15 - tmp; 290 param[i] = shl_int16(param[i], shift); 320 shift = 0; 335 tmp >>= shift; local 336 tmp = shl_int16(tmp, shift);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
ad1848.h | 176 #define AD1848_MIXVAL_SINGLE(reg, shift, mask, invert) \ 177 ((reg) | ((shift) << 8) | ((mask) << 16) | ((invert) << 24)) 190 #define AD1848_SINGLE(xname, xindex, reg, shift, mask, invert) \ 194 .private_value = AD1848_MIXVAL_SINGLE(reg, shift, mask, invert) } 196 #define AD1848_SINGLE_TLV(xname, xindex, reg, shift, mask, invert, xtlv) \ 200 .private_value = AD1848_MIXVAL_SINGLE(reg, shift, mask, invert), \
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
ad1848.h | 176 #define AD1848_MIXVAL_SINGLE(reg, shift, mask, invert) \ 177 ((reg) | ((shift) << 8) | ((mask) << 16) | ((invert) << 24)) 190 #define AD1848_SINGLE(xname, xindex, reg, shift, mask, invert) \ 194 .private_value = AD1848_MIXVAL_SINGLE(reg, shift, mask, invert) } 196 #define AD1848_SINGLE_TLV(xname, xindex, reg, shift, mask, invert, xtlv) \ 200 .private_value = AD1848_MIXVAL_SINGLE(reg, shift, mask, invert), \
|
/external/chromium_org/ui/keyboard/resources/webui/ |
main.css | 23 kb-shift-key, 40 kb-shift-key::x-key, 70 kb-shift-key.dark, 91 kb-shift-key.padded-left-special, 97 kb-shift-key.padded-right-special, 153 .shift,
|
/external/compiler-rt/lib/ |
muldf3.c | 74 // Get the significand of a*b. Before multiplying the significands, shift 77 // zero. Normalizing this result is just a conditional left-shift by one 98 // simplify the shift logic. 99 const unsigned int shift = 1U - (unsigned int)productExponent; local 100 if (shift >= typeWidth) return fromRep(productSign); 102 // Otherwise, shift the significand of the result so that the round 104 wideRightShiftWithSticky(&productHi, &productLo, shift);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
EncodedValueUtils.java | 55 int shift = (8 - bytes.length) * 8; local 56 return value << shift >> shift;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
BigDecimalScaleOperationsTest.java | 253 * Move the decimal point to the left; the shift value is positive 258 int shift = 18; local 261 BigDecimal bNumber = aNumber.movePointLeft(shift); 267 * Move the decimal point to the left; the shift value is positive 272 int shift = -18; local 275 BigDecimal bNumber = aNumber.movePointLeft(shift); 281 * Move the decimal point to the right; the shift value is positive 286 int shift = 18; local 289 BigDecimal bNumber = aNumber.movePointRight(shift); 295 * Move the decimal point to the right; the shift value is positiv 301 int shift = 30; local 315 int shift = -18; local 329 int shift = -18; local [all...] |
/dalvik/vm/alloc/ |
HeapBitmap.cpp | 110 const int shift = CLZ(word); local 111 Object* obj = (Object *)(ptrBase + shift * HB_OBJECT_ALIGNMENT); 113 word &= ~(highBit >> shift); 146 const int shift = CLZ(word); local 147 Object *obj = (Object *)(ptrBase + shift * HB_OBJECT_ALIGNMENT); 149 word &= ~(highBit >> shift); 194 int shift = CLZ(garbage); local 195 garbage &= ~(highBit >> shift); 196 *pb++ = (void *)(ptrBase + shift * HB_OBJECT_ALIGNMENT);
|
/dalvik/vm/mterp/mips/ |
OP_AGET.S | 1 %default { "load":"lw", "shift":"2" } 6 * Note: using the usual FETCH/and/shift stuff, this fits in exactly 17 20 .if $shift 21 EASN(a0, a0, a1, $shift) # a0 <- arrayObj + index*width
|
OP_APUT.S | 1 %default { "store":"sw", "shift":"2" } 16 .if $shift 17 EASN(a0, a0, a1, $shift) # a0 <- arrayObj + index*width
|
/external/aac/libAACdec/src/ |
aacdec_pns.cpp | 294 int i, shift, sfExponent; local 308 shift = sfExponent - specScale + 1 + noise_e; 311 if (shift>=0) { 312 shift = fixMin( shift, DFRACT_BITS-1 ); 314 spec [i] = fMultDiv2 (spec [i], sfMatissa) << shift; 317 shift = fixMin( -shift, DFRACT_BITS-1 ); 319 spec [i] = fMultDiv2 (spec [i], sfMatissa) >> shift;
|