HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 101 - 125 of 217) sorted by null

1 2 3 45 6 7 8 9

  /external/sonivox/arm-hybrid-22k/lib_src/
eas_pcm.c 376 /* calculate shift for frequencies > 1.0 */
456 * pitch - pitch shift in cents
1359 EAS_INT shift; local
1382 temp <<= shift; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_pcm.c 376 /* calculate shift for frequencies > 1.0 */
456 * pitch - pitch shift in cents
1359 EAS_INT shift; local
1382 temp <<= shift; local
    [all...]
  /external/speex/libspeex/
lsp.c 503 int shift = QIMP-13; local
506 a = PSHR32(xp[m][j+2] + xout1 + xq[m][j+2] - xout2, shift);
  /external/tremolo/Tremolo/
floor0.c 201 ogg_int32_t qexp=0,shift; local
237 if(!(shift=MLOOP_1[(pi|qi)>>25]))
238 if(!(shift=MLOOP_2[(pi|qi)>>19]))
239 shift=MLOOP_3[(pi|qi)>>16];
241 qi=(qi>>shift)*labs(ilsp[j-1]-wi);
242 pi=(pi>>shift)*labs(ilsp[j]-wi);
243 qexp+=shift;
245 if(!(shift=MLOOP_1[(pi|qi)>>25]))
246 if(!(shift=MLOOP_2[(pi|qi)>>19]))
247 shift=MLOOP_3[(pi|qi)>>16]
262 pi>>=shift; local
263 qi>>=shift; local
279 pi>>=shift; local
280 qi>>=shift; local
    [all...]
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...]
  /external/v8/test/cctest/
test-macro-assembler-x64.cc 1738 int shift = shifts[i]; local
1880 int shift = shifts[i]; local
1983 int shift = shifts[i]; local
    [all...]
  /frameworks/base/awt/java/awt/
AWTKeyStroke.java 44 * shift) were used in conjunction with the keystroke. The following masks
320 int shift = (InputEvent.SHIFT_MASK | InputEvent.SHIFT_DOWN_MASK); local
327 allMod = addMask(allMod, shift);
342 * modifiers := shift | control | ctrl | meta | alt | altGraph <br>
624 if (strMod.equals("shift")) { //$NON-NLS-1$
  /frameworks/base/awt/java/awt/image/
MultiPixelPackedSampleModel.java 255 int shift = dataElementSize - (bitnum & (dataElementSize - 1)) - pixelBitStride; local
257 return (elem >> shift) & bitMask;
450 final int shift = dataElementSize - (bitnum & (dataElementSize - 1)) - pixelBitStride; local
451 final int mask = ~(bitMask << shift);
476 elem |= (s & bitMask) << shift;
  /frameworks/base/libs/surfaceflinger/
BlurFilter.cpp 80 inline uint16_t to(int shift, int last, int dither) const {
91 R += (dither << shift) >> BLUR_DITHER_BITS;
92 G += (dither << shift) >> BLUR_DITHER_BITS;
93 B += (dither << shift) >> BLUR_DITHER_BITS;
95 R >>= shift; local
96 G >>= shift; local
97 B >>= shift; local
127 inline uint32_t to(int shift, int last, int dither) const {
139 R >>= shift; local
140 G >>= shift; local
141 B >>= shift; local
175 L >>= shift; local
210 A >>= shift; local
235 const int shift = 31 - clz(kernelSizeUser); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
trans4m_freq_2_time_fxp.cpp 58 The result of a shift is undefined if the right operand is greater than
60 To avoid undefined shift by 32, a check of the shift has been
62 than 32. By design the shift up is related to the global gain,
65 input buffer or excessive down shift is detected.
96 - Corrected negative shift when computing rounding factor
577 Int shift; local
630 * "The result [of a shift] is undefined if the right operand is
633 * => avoid shift by 32 or 16
656 Int shift = exp + 15 - SCALING local
758 Int shift = -exp; local
1581 Int shift; local
1663 Int shift = exp + 15 - SCALING; local
1774 Int shift = -exp; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
vlc.cpp 42 int shift; member in struct:tagShiftOffset
478 ptr = &NumCoeffTrailOnes[temp][(code >> ptr_indx->shift) + ptr_indx->offset];
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 953 int byte0, byte1, byte2, shift, tmpvar; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 268 int shift = bitOffset % 8; local
270 packedChars[++byteOffset] |= value << shift;
272 if (shift > 1) {
273 packedChars[++byteOffset] = (byte)(value >> (8 - shift));
318 int shift = bitOffset % 8; local
321 gsmVal = (0x7f & (pdu[offset + byteOffset] >> shift));
324 if (shift > 1) {
326 gsmVal &= 0x7f >> (shift - 1);
328 gsmVal |= 0x7f & (pdu[offset + byteOffset + 1] << (8 - shift));
  /bionic/libc/kernel/common/linux/
timex.h 51 int shift; member in struct:timex
  /bionic/linker/
linker_format.c 569 int shift = 64 - 8*bytelen; local
570 value = (uint64_t)(((int64_t)(value << shift)) >> shift);
  /cts/tools/dasm/src/java_cup/
lalr_state.java 29 * of these states to parse. The parser has two operations, shift and reduce.
30 * In a shift, it consumes one token and makes a transition to a new state.
347 new_items.add(itm.shift());
433 * out of the state (shift entries) or reductions from the state to some
440 * are resolved by always shifting for shift/reduce conflicts and choosing
494 /* if the other act was not a shift */
495 if (other_act.kind() != parse_action.SHIFT)
513 /* if its on an terminal add a shift entry */
530 /* shift always wins */
592 /* must be a shift on a terminal or non-terminal *
    [all...]
  /external/bison/lib/
quotearg.c 157 int shift = uc % INT_BITS; local
158 int r = (*p >> shift) & 1;
159 *p ^= ((i & 1) ^ r) << shift;
401 its end, find an error, or come back to the initial shift
  /external/bluetooth/glib/glib/
ghash.c 127 g_hash_table_set_shift (GHashTable *hash_table, gint shift)
132 hash_table->size = 1 << shift;
133 hash_table->mod = prime_mod [shift];
135 for (i = 0; i < shift; i++)
158 gint shift; local
160 shift = g_hash_table_find_closest_shift (size);
161 shift = MAX (shift, HASH_TABLE_MIN_SHIFT);
163 g_hash_table_set_shift (hash_table, shift);
    [all...]
  /external/freetype/src/base/
ftoutln.c 55 #define SCALED( x ) ( ( (x) << shift ) - delta )
71 FT_Int shift; local
78 shift = func_interface->shift;
  /external/freetype/src/sfnt/
ttsbit.c 124 FT_Byte shift = (FT_Byte)( x_offset & 7 ); /* current write shift */ local
125 FT_Byte space = (FT_Byte)( 8 - shift );
147 if ( shift )
149 cur[0] |= (FT_Byte)( val >> shift );
182 cur[0] |= (FT_Byte)( val >> shift );
    [all...]
  /external/icu4c/common/
unisetspan.cpp 91 void shift(int32_t delta) { function in class:OffsetList
776 offsets.shift(spanLength);
    [all...]
  /external/iproute2/include/linux/tc_ematch/
tc_em_meta.h 20 __u8 shift; member in struct:tcf_meta_val
  /external/iproute2/tc/
f_u32.c 741 } else if (matches(*argv, "shift") == 0) {
742 int shift; local
744 if (get_integer(&shift, *argv, 0))
746 sel->offshift = shift;
  /external/openssl/ssl/
d1_pkt.c 1594 unsigned int shift; local
    [all...]
  /external/qemu/audio/
sdlaudio.c 154 static int aud_to_sdlfmt (audfmt_e fmt, int *shift)
158 *shift = 0;
162 *shift = 0;
166 *shift = 1;
170 *shift = 1;
310 int samples = len >> hw->info.shift;
350 buf += chunk << hw->info.shift;
391 int samples = bytes >> hw->info.shift;
401 bytes = hwsamples << hw->info.shift;
422 return total >> hw->info.shift;
521 int shift; local
    [all...]

Completed in 1016 milliseconds

1 2 3 45 6 7 8 9