HomeSort by relevance Sort by last modified time
    Searched refs:shift (Results 226 - 250 of 1221) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
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/openssl/crypto/bn/
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/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);
  /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/chromium_org/third_party/icu/source/common/
ubidi_props.h 119 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
arch.h 153 size_t valsize, size_t shift, int warn);
160 int shift, const yasm_bytecode *bc,
336 * significant bits by the shift parameter. The destination bits are
344 * \param shift left shift (in bits)
350 size_t valsize, size_t shift, int warn);
354 * significant bits by the shift parameter. The destination bits are
361 * \param shift left shift (in bits); may be negative to specify right
362 * shift (standard warnings include truncation to boundary
    [all...]
  /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/chromium_org/third_party/harfbuzz-ng/src/
hb-set-private.hh 43 template <typename mask_t, unsigned int shift>
58 ASSERT_STATIC (shift < sizeof (hb_codepoint_t) * 8);
59 ASSERT_STATIC (shift + num_bits <= sizeof (hb_codepoint_t) * 8);
70 if ((b >> shift) - (a >> shift) >= mask_bits - 1)
86 return ((mask_t) 1) << ((g >> shift) & (mask_bits - 1));
323 static const unsigned int SHIFT = 5;
324 static const unsigned int BITS = (1 << SHIFT);
329 elt_t &elt (hb_codepoint_t g) { return elts[g >> SHIFT]; }
330 elt_t elt (hb_codepoint_t g) const { return elts[g >> SHIFT]; }
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
packrender.h 173 int shift = (64-16) - ((int)(cp) >> (64-6)); \
174 *(int *)cp = (*(int *)cp & ~(0xffff << shift)) | ((a & 0xffff) << shift); }
178 int shift = (64-32) - ((int)(cp) >> (64-6)); \
179 *(int *)cp = (*(int *)cp & ~(0xffffffff << shift)) | ((a & 0xffffffff) << shift); }
packsingle.h 99 int shift = (64-16) - ((int)(cp) >> (64-6)); \
100 *(int *)cp = (*(int *)cp & ~(0xffff << shift)) | ((a & 0xffff) << shift); }
104 int shift = (64-32) - ((int)(cp) >> (64-6)); \
105 *(int *)cp = (*(int *)cp & ~(0xffffffff << shift)) | ((a & 0xffffffff) << shift); }
  /external/chromium_org/ui/aura/test/
ui_controls_factory_aurax11.cc 94 bool shift,
99 window, key, control, shift, alt, command, base::Closure());
105 bool shift,
114 if (shift)
120 ui::XKeysymForWindowsKeyCode(key, shift));
128 if (shift)
  /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/mesa3d/src/glx/
packrender.h 173 int shift = (64-16) - ((int)(cp) >> (64-6)); \
174 *(int *)cp = (*(int *)cp & ~(0xffff << shift)) | ((a & 0xffff) << shift); }
178 int shift = (64-32) - ((int)(cp) >> (64-6)); \
179 *(int *)cp = (*(int *)cp & ~(0xffffffff << shift)) | ((a & 0xffffffff) << shift); }
packsingle.h 99 int shift = (64-16) - ((int)(cp) >> (64-6)); \
100 *(int *)cp = (*(int *)cp & ~(0xffff << shift)) | ((a & 0xffff) << shift); }
104 int shift = (64-32) - ((int)(cp) >> (64-6)); \
105 *(int *)cp = (*(int *)cp & ~(0xffffffff << shift)) | ((a & 0xffffffff) << shift); }
  /external/chromium_org/third_party/freetype/src/base/
ftoutln.c 56 #define SCALED( x ) ( ( (x) << shift ) - delta )
72 FT_Int shift; local
79 shift = func_interface->shift;
932 FT_Vector in, out, shift; local
970 /* shift only if turn is less than ~160 degrees */
975 /* shift components are aligned along lateral bisector */
977 shift.x = in.y + out.y;
978 shift.y = in.x + out.x;
981 shift.x = -shift.x
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
kiss_fft.c 564 st->shift = 0;
565 while (nfft<<st->shift != base->nfft && st->shift < 32)
566 st->shift++;
567 if (st->shift>=32)
572 st->shift = -1;
601 if (cfg->shift < 0)
616 int shift; local
618 /* st->shift can be -1 */
619 shift = st->shift>0 ? st->shift : 0
675 int shift; local
    [all...]
  /external/freetype/src/base/
ftoutln.c 56 #define SCALED( x ) ( ( (x) << shift ) - delta )
72 FT_Int shift; local
79 shift = func_interface->shift;
932 FT_Vector in, out, shift; local
970 /* shift only if turn is less than ~160 degrees */
975 /* shift components are aligned along lateral bisector */
977 shift.x = in.y + out.y;
978 shift.y = in.x + out.x;
981 shift.x = -shift.x
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
win64-except.c 471 int shift; local
495 size = 0; low = 8; high = 128; shift = 3; mask = 0x7;
499 size = 2; low = 136; high = 8*64*1024-8; shift = 3;
501 size = 4; low = high = 0; shift = 0;
506 size = 2; low = 0; high = 8*64*1024-8; shift = 3; mask = 0x7;
509 size = 2; low = 0; high = 16*64*1024-16; shift = 4; mask = 0xF;
512 size = 4; low = high = 0; shift = 0; mask = 0x7;
515 size = 4; low = high = 0; shift = 0; mask = 0xF;
545 code->info = (yasm_intnum_get_uint(intn) >> shift)-1;
551 yasm_intnum_get_sized(intn, buf, size, size*8, -shift, 0, 1)
    [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/chromium_org/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.
114 assertEquals(1, array.shift());
120 assertEquals(1, array.shift());
  /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 2485 milliseconds

1 2 3 4 5 6 7 8 91011>>