HomeSort by relevance Sort by last modified time
    Searched defs:lshift (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/smhasher/src/
Bitvec.h 79 inline void lshift ( void * blob, int len, int c ) function
104 inline void lshift ( T & blob, int c ) function
129 template<> inline void lshift ( uint32_t & blob, int c ) { blob <<= c; } function
130 template<> inline void lshift ( uint64_t & blob, int c ) { blob <<= c; } function
  /external/chromium_org/third_party/opus/src/silk/
Inlines.h 103 opus_int a_headrm, b_headrm, lshift; local
129 lshift = 29 + a_headrm - b_headrm - Qres;
130 if( lshift < 0 ) {
131 return silk_LSHIFT_SAT32(result, -lshift);
133 if( lshift < 32){
134 return silk_RSHIFT(result, lshift);
148 opus_int b_headrm, lshift; local
171 lshift = 61 - b_headrm - Qres;
172 if( lshift <= 0 ) {
173 return silk_LSHIFT_SAT32(result, -lshift);
    [all...]
  /external/chromium_org/third_party/opus/src/silk/fixed/
find_LTP_FIX.c 56 opus_int i, k, lshift; local
124 lshift = silk_CLZ32( WLTP_max ) - 1 - 3; /* keep 3 bits free for vq_nearest_neighbor_fix */
125 silk_assert( 26 - 18 + lshift >= 0 );
126 if( 26 - 18 + lshift < 31 ) {
127 temp32 = silk_min_32( temp32, silk_LSHIFT( (opus_int32)1, 26 - 18 + lshift ) );
pitch_analysis_core_FIX.c 105 opus_int32 contour_bias_Q20, diff, lz, lshift; local
342 lshift = silk_LIMIT_32( lz - 1, 0, 15 );
343 temp32 = silk_DIV32( silk_LSHIFT( cross_corr, lshift ), silk_RSHIFT( energy, 15 - lshift ) + 1 ); /* Q15 */
348 lshift = silk_LIMIT_32( lz - 1, 0, 15 );
350 C[ k ][ d ] = silk_DIV32( silk_LSHIFT( temp32, lshift ), silk_RSHIFT( energy, 15 - lshift ) + 1 ); /* Q15*/
527 lshift = silk_LIMIT_32( lz - 1, 0, 13 );
528 CCmax_new = silk_DIV32( silk_LSHIFT( cross_corr, lshift ), silk_RSHIFT( energy, 13 - lshift ) + 1 )
    [all...]
  /external/openfst/src/include/fst/
signed-log-weight.h 101 const int lshift = 5; local
103 return h1 << lshift ^ h1 >> rshift ^ h2;
pair-weight.h 92 const int lshift = 5; local
94 return h1 << lshift ^ h1 >> rshift ^ h2;
compose-filter.h 127 const int lshift = 5; local
129 return h1 << lshift ^ h1 >> rshift ^ h2;
encode.h 99 const int lshift = 5; local
102 hash = hash << lshift ^ hash >> rshift ^ x->olabel;
104 hash = hash << lshift ^ hash >> rshift ^ x->weight.Hash();
determinize.h 300 int lshift = element.state_id % (CHAR_BIT * sizeof(size_t) - 1) + 1; local
301 int rshift = CHAR_BIT * sizeof(size_t) - lshift;
303 hash ^= n << lshift ^ n >> rshift ^ element.weight.Hash();
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h 75 int lshift = 5; local
77 return h1 << lshift ^ h1 >> rshift ^ h2;
encode.h 84 int lshift = x->ilabel % kPrime; local
85 int rshift = sizeof(size_t) - lshift;
86 size_t hash = x->ilabel << lshift;
determinize.h 434 int lshift = element.state_id % kPrime; local
435 int rshift = sizeof(size_t) - lshift;
436 hash ^= element.state_id << lshift ^
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 273 int lshift = MAX(0, -rshift); local
293 int pix = ((pix_row[x] + delta) >> rshift) << lshift;
300 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
306 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
335 int lshift = MAX(0, -rshift); local
355 int pix = ((pix_row[x] + delta) >> rshift) << lshift;
362 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
368 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 227 unsigned lshift = dst_width - n; local
242 if (lshift) {
245 lshift), "");
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 227 unsigned lshift = dst_width - n; local
242 if (lshift) {
245 lshift), "");
  /external/qemu/target-i386/
exec.h 71 static inline target_long lshift(target_long x, int n) function
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 417 static ALWAYS_INLINE void lshift(BigInt& b, int k) function in namespace:WTF
1066 lshift(b, b2);
1068 lshift(S, s2);
1089 lshift(mhi, m2);
1097 lshift(mhi, Log2P);
1133 lshift(b, 1);
1176 lshift(b, 1);
    [all...]
  /bionic/libc/stdlib/
strtod.c 816 lshift function
    [all...]
  /external/valgrind/main/VEX/priv/
guest_amd64_helpers.c 150 static inline Long lshift ( Long x, Int n ) function
201 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
202 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
222 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
223 of = lshift((argL ^ argR) & (argL ^ res), \
247 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
248 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
272 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
273 of = lshift((argL ^ argR) & (argL ^ res), \
289 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80;
    [all...]
guest_x86_helpers.c 112 inline static Int lshift ( Int x, Int n ) function
159 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
160 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
180 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
181 of = lshift((argL ^ argR) & (argL ^ res), \
205 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
206 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
230 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
231 of = lshift((argL ^ argR) & (argL ^ res), \
247 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80;
    [all...]
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.c 2426 unsigned i, lshift, height, bits; local
2455 unsigned i, lshift, height, bits; local
    [all...]
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.c 2415 unsigned i, lshift, height, bits; local
2444 unsigned i, lshift, height, bits; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar 

Completed in 661 milliseconds