HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 51 - 75 of 828) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/qemu/distrib/libpng-1.2.46/
pngwtran.c 66 &(png_ptr->shift));
138 int shift, v; local
144 shift = 6;
151 v |= (value << shift);
152 if (shift == 0)
154 shift = 6;
160 shift -= 2;
163 if (shift != 6)
170 int shift, v; local
176 shift = 4
    [all...]
  /external/speex/libspeex/
lpc.c 138 int shift, ac_shift; local
143 shift = 8;
144 while (shift && ac0<0x40000000)
146 shift--;
162 d = ADD32(d,SHR32(MULT16_16(x[j],x[j-i]), shift));
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/srec/srec/cfront/
log_tabl.c 61 logtab->shift = (int)(val + 0.5);
84 int log_lookup(log_table_info *logtab, int operand, int shift)
94 shift++;
98 shift++;
102 log_report("tab: %d %d -> %d\n", operand, shift,
103 (int)((shift) *(logtab->shift) + logtab->table[operand]));
105 return ((int)((shift) *(logtab->shift) + logtab->table[operand]));
122 int ii, aa, bb, cc, value, shift; local
    [all...]
  /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);
  /external/stlport/test/unit/
transform_test.cpp 34 static char shift( char c ) { function in class:TransformTest
77 transform( s.begin(), s.end(), s.begin(), shift );
  /external/vixl/src/
utils-vixl.cc 121 int shift = 1 << i; local
122 value = ((value >> shift) & kMasks[i]) + (value & kMasks[i]);
  /external/webp/src/utils/
bit_reader_inl.h 140 const int shift = kVP8Log2Range[range]; local
142 br->bits_ -= shift;
149 // simplified version of VP8GetBit() for prob=0x80 (note shift is always 1 here)
utils.h 104 const int shift = (1 << i); local
105 const uint32_t x = value >> shift;
108 log += shift;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
c_g_aver.cpp 286 Word16 tmp[M], tmp1, tmp2, shift1, shift2, shift;
309 shift = sub(add(2, shift1), shift2);
310 if (shift >= 0)
312 tmp[i] = shr(tmp[i], shift); // Q15+Qn-Qm-Qx=Q13
316 tmp[i] = shl(tmp[i], negate(shift)); // Q15+Qn-Qm-Qx=Q13
490 Word16 shift; local
524 shift = 2 + shift1 - shift2;
526 if (shift >= 0)
528 *(tmp + i) = shr(*(tmp + i), shift, pOverflow);
533 *(tmp + i) = shl(*(tmp + i), negate(shift), pOverflow)
    [all...]
  /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...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
autocorr.c 40 Word32 i, norm, shift; local
71 shift = 4 - (norm >> 1);
72 if(shift > 0)
77 *p1 = vo_shr_r(*p1, shift);
79 *p1 = vo_shr_r(*p1, shift);
81 *p1 = vo_shr_r(*p1, shift);
83 *p1 = vo_shr_r(*p1, shift);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_stream.c 118 i32 bits, shift; local
152 shift = (i32)(24 + pStrmData->bitPosInWord);
153 out = (u32)(*pStrm++) << shift;
157 shift -= 8;
158 out |= (u32)(*pStrm++) << shift;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
dboolhuff.c 42 int shift = VP8_BD_VALUE_SIZE - 8 - (count + 8); local
45 int x = (int)(shift + CHAR_BIT - bits_left);
63 while(shift >= loop_end)
66 value |= (VP8_BD_VALUE)*bufptr << shift;
69 shift -= CHAR_BIT;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_systemdependent.h 68 const int shift = (1 << i); local
69 const unsigned int x = value >> shift;
72 log += shift;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_reader.c 40 int shift = BD_VALUE_SIZE - CHAR_BIT - (count + CHAR_BIT); local
43 const int x = shift + CHAR_BIT - bits_left;
51 while (shift >= loop_end) {
53 value |= (BD_VALUE)*buffer++ << shift;
54 shift -= CHAR_BIT;
  /ndk/sources/cxx-stl/gabi++/src/
dwarf_helper.cc 58 uintptr_t shift = 0; local
63 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
64 shift += 7;
72 uintptr_t shift = 0; local
77 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
78 shift += 7;
81 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) {
82 result |= static_cast<uintptr_t>(~0) << shift;
  /ndk/tests/device/test-gnustl-full/unit/
transform_test.cpp 34 static char shift( char c ) { function in class:TransformTest
77 transform( s.begin(), s.end(), s.begin(), shift );
  /ndk/tests/device/test-stlport/unit/
transform_test.cpp 34 static char shift( char c ) { function in class:TransformTest
77 transform( s.begin(), s.end(), s.begin(), shift );
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7Charset.java 62 * @see com.beetstra.jutf7.UTF7StyleCharset#shift()
64 byte shift() { method in class:UTF7Charset
UTF7StyleCharset.java 106 * @return The shift character
108 abstract byte shift(); method in class:UTF7StyleCharset
  /bionic/libc/kernel/uapi/linux/tc_act/
tc_pedit.h 41 __u32 shift; member in struct:tc_pedit_key
  /development/ndk/platforms/android-L/include/linux/tc_act/
tc_pedit.h 41 __u32 shift; member in struct:tc_pedit_key
  /external/aac/libSBRdec/src/
transcendent.h 128 int shift; local
138 shift = (int)(a_e - b_e);
140 shiftAbs = (shift>0)? shift : -shift;
142 shiftedMantissa = (shift>0)? (FX_SGL2FX_DBL(b_m) >> shiftAbs) : (FX_SGL2FX_DBL(a_m) >> shiftAbs);
143 otherMantissa = (shift>0)? FX_SGL2FX_DBL(a_m) : FX_SGL2FX_DBL(b_m);
144 *ptrSum_e = (shift>0)? a_e : b_e;
147 /* shift by 1 bit to avoid overflow */
166 int shift; local
215 int preShift, postShift, index, shift; local
271 int preShift, postShift, index, shift; local
347 int shift = result_e - *destScale; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_icon_manager.cc 128 color_utils::HSL shift = {-1, 0, 0.6}; local
129 result = SkBitmapOperations::CreateHSLShiftedBitmap(result, shift);

Completed in 638 milliseconds

1 23 4 5 6 7 8 91011>>