HomeSort by relevance Sort by last modified time
    Searched refs:shift (Results 151 - 175 of 812) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libmtp/src/
gphoto2-endian-ppc.h 95 #define be64atoh_x(x,off,shift) (((uint64_t)((x)[off]))<<shift)
100 #define le64atoh_x(x,off,shift) (((uint64_t)(x)[off])<<shift)
  /external/libvorbis/lib/
envelope.h 76 extern void _ve_envelope_shift(envelope_lookup *e,long shift);
  /external/openssl/crypto/bn/
bn_recp.c 99 recp->shift=0;
169 if (i != recp->shift)
170 recp->shift=BN_reciprocal(&(recp->Nr),&(recp->N),
172 if (recp->shift == -1) goto err;
bn_gcd.c 263 int shift; local
277 shift = 0;
278 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
280 shift++;
289 if (shift > 0)
291 if (!BN_rshift(B, B, shift)) goto err;
296 shift = 0;
297 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
299 shift++;
308 if (shift > 0
    [all...]
  /external/qemu/audio/
wavcapture.c 97 int stereo, bits16, shift; local
125 shift = bits16 + stereo;
130 le_store (hdr + 28, freq << shift, 4);
131 le_store (hdr + 32, 1 << shift, 2);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
general2.js 68 array1.push(array1.shift());
72 testcases[count++] = new TestCase( SECTION, "Array.push,pop,shift,unshift,slice,splice", true,String(array1) == String(array2));
  /external/webkit/Source/WebCore/platform/
PopupMenuClient.h 75 virtual void listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow = true) = 0;
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLSquareRoot.cpp 54 // Vertical shift of the left end point of the radical (%)
104 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight); local
105 if (shift > 1.)
106 shift = 1.0f;
107 topStartShift = static_cast<int>(gRadicalBottomPointXPos * frontWidth * shift);
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharset.java 106 * @return The shift character
108 abstract byte shift(); method in class:UTF7StyleCharset
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Constants.java 198 case CODE_SHIFT: return "shift";
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 351 const int shift = (GGL_DITHER_BITS - (sbits-dbits)); local
352 if (shift>0) ADD(AL, 0, ireg, ireg, reg_imm(dither.reg, LSR, shift));
353 else if (shift<0) ADD(AL, 0, ireg, ireg, reg_imm(dither.reg, LSL,-shift));
359 int shift = sh-dbits; local
361 MOV(AL, 0, ireg, reg_imm(s.reg, LSR, shift));
369 MOV(AL, 0, d.reg, reg_imm(s.reg, LSR, shift));
371 ORR(AL, 0, d.reg, d.reg, reg_imm(s.reg, LSR, shift));
375 int shift = sh-dh local
    [all...]
blending.cpp 446 const int shift = fragment.size() - fb.size();
447 if (shift>0) RSB(AL, 0, diff.reg, fb.reg, reg_imm(fragment.reg, LSR, shift));
448 else if (shift<0) RSB(AL, 0, diff.reg, fb.reg, reg_imm(fragment.reg, LSL,-shift));
464 const int shift = fragment.size() - fb.size();
465 if (shift>0) SUB(AL, 0, diff.reg, fb.reg, reg_imm(fragment.reg, LSR, shift));
466 else if (shift<0) SUB(AL, 0, diff.reg, fb.reg, reg_imm(fragment.reg, LSL,-shift));
    [all...]
  /external/speex/libspeex/
fftwrap.c 47 int i, shift; local
56 shift=0;
60 shift++;
64 out[i] = SHL16(in[i], shift);
66 return shift;
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len)
74 out[i] = PSHR16(in[i], shift);
275 int shift; local
277 shift = maximize_range(in, in, 32000, t->N);
279 renorm_range(in, in, shift, t->N)
    [all...]
stereo.c 154 int shift; local
187 shift = spx_ilog2(largest)-15;
188 largest = VSHR32(largest, shift-4);
189 smallest = VSHR32(smallest, shift);
206 shift = spx_ilog2(e_tot);
207 e_tot = VSHR32(e_tot, shift-25);
208 e_left = VSHR32(e_left, shift-10);
209 e_right = VSHR32(e_right, shift-10);
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 274 int32_t shift; local
279 shift = 32;
285 if (shift > clz) shift = clz;
288 // translate to a shift of 8 (for converting 16 bit to 8 bit)
289 shift = 25 - shift;
291 if (shift < 3) {
292 shift = 3;
295 shift++
    [all...]
  /system/core/libpixelflinger/
buffer.cpp 322 // and shift / construct the pixel
338 const int shift = (GGL_DITHER_BITS - (sbits-dbits)); local
339 if (shift >= 0) v += (dither >> shift) << sl;
340 else v += (dither << (-shift)) << sl;
368 // so we just have to shift the component to the right location
369 int shift = dh-sh; local
370 in |= v<<shift;
375 int shift = sh-dh; local
376 if (shift > 0) in |= v>>shift
    [all...]
  /dalvik/vm/mterp/x86/
OP_AGET.S 1 %default { "load":"movl", "shift":"4" }
19 $load offArrayObject_contents(%eax,%ecx,$shift),%eax
OP_APUT.S 1 %default { "reg":"rINST", "store":"movl", "shift":"4" }
19 leal offArrayObject_contents(%eax,%ecx,$shift),%eax
  /external/skia/bench/
RectBench.cpp 26 RectBench(void* param, int shift, int stroke = 0)
28 , fShift(shift)
37 w >>= shift; local
38 h >>= shift; local
112 OvalBench(void* param, int shift) : RectBench(param, shift) {}
122 RRectBench(void* param, int shift) : RectBench(param, shift) {}
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_DequantTransformResidualFromPairAndAdd_s.s 50 shift RN 3 label
78 LDRSB shift,[pQPdiv,QP] ;// Shift = QP / 6
91 ;// 'Shift' ranges between [0,8]
92 ;// So we can shift the packed rowLuma values [0b|0a] with a single LSL operation
96 LSL rowLuma01,rowLuma01,shift
97 LSL rowLuma23,rowLuma23,shift
107 ;// We first calculate pVRow[armVCM4P10_PosToVCol4x4[i]]) << Shift which fits into 16 bits (above)
108 ;// Then the product pSrcDst[i] * (pVRow[armVCM4P10_PosToVCol4x4[i]] << Shift) is calculated
119 SMULTB temp1,SrcDst00,rowLuma23 ;// pSrcDst[1] * (pVRow[2]<<Shift)
195 shift RN 3 label
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
antRun.bat 31 shift
37 shift
41 shift
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DXTFlipper.java 54 long shift = (4 * y + x) * 3; local
56 mask <<= shift; local
58 code >>= shift; local
63 long shift = (4 * y + x) * 3; local
65 code = (code & mask) << shift;
66 mask <<= shift; local
  /external/webkit/Source/JavaScriptCore/assembler/
ARMv7Assembler.h 194 // If this is an encoded immediate, then it may describe a shift, or a pattern.
283 // Shift the value down to the low byte position. The assign to
286 // The endoded shift amount is the magnitude of a right rotate.
779 void add(RegisterID rd, RegisterID rn, RegisterID rm, ShiftTypeAndAmount shift)
785 m_formatter.twoWordOp12Reg4FourFours(OP_ADD_reg_T3, rn, FourFours(shift.hi4(), rd, shift.lo4(), rm));
824 void add_S(RegisterID rd, RegisterID rn, RegisterID rm, ShiftTypeAndAmount shift)
830 m_formatter.twoWordOp12Reg4FourFours(OP_ADD_S_reg_T3, rn, FourFours(shift.hi4(), rd, shift.lo4(), rm));
850 void ARM_and(RegisterID rd, RegisterID rn, RegisterID rm, ShiftTypeAndAmount shift)
    [all...]
  /external/v8/test/mjsunit/
array-shift.js 31 array.shift();
47 array.shift();
50 // Note that shift copies values from prototype into the array.
88 array.shift();
91 // Note that shift copies values from prototype into the array.
  /external/tremolo/Tremolo/
mdct.c 228 STIN void mdct_butterflies(DATA_TYPE *x,int points,int shift){
230 int stages=7-shift;
236 mdct_butterfly_generic(x+(points>>i)*j,points>>i,4<<(i+shift));
250 STIN void mdct_bitreverse(DATA_TYPE *x,int n,int shift){
256 DATA_TYPE *xx = x + (b>>shift);
416 int shift; local
418 for (shift=4;!(n&(1<<shift));shift++);
419 shift=13-shift
    [all...]

Completed in 2742 milliseconds

1 2 3 4 5 67 8 91011>>