Home
last modified time | relevance | path

Searched refs:lshift (Results 1 – 17 of 17) sorted by relevance

/external/libopus/silk/
DInlines.h103 opus_int a_headrm, b_headrm, lshift; in silk_DIV32_varQ() local
129 lshift = 29 + a_headrm - b_headrm - Qres; in silk_DIV32_varQ()
130 if( lshift < 0 ) { in silk_DIV32_varQ()
131 return silk_LSHIFT_SAT32(result, -lshift); in silk_DIV32_varQ()
133 if( lshift < 32){ in silk_DIV32_varQ()
134 return silk_RSHIFT(result, lshift); in silk_DIV32_varQ()
148 opus_int b_headrm, lshift; in silk_INVERSE32_varQ() local
171 lshift = 61 - b_headrm - Qres; in silk_INVERSE32_varQ()
172 if( lshift <= 0 ) { in silk_INVERSE32_varQ()
173 return silk_LSHIFT_SAT32(result, -lshift); in silk_INVERSE32_varQ()
[all …]
/external/ltrace/sysdeps/linux-gnu/ia64/
Dbreakpoint.c41 int lshift; in extract_bit_field() local
48 lshift = 8 - (from % 8); in extract_bit_field()
51 result |= ((long long)b[i]) << lshift; in extract_bit_field()
52 lshift += 8; in extract_bit_field()
58 result |= ((long long)c) << lshift; in extract_bit_field()
/external/opencv/otherlibs/highgui/
Dgrfmt_jpeg2000.cpp273 int lshift = MAX(0, -rshift); in ReadComponent8u() local
293 int pix = ((pix_row[x] + delta) >> rshift) << lshift; in ReadComponent8u()
300 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in ReadComponent8u()
306 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in ReadComponent8u()
335 int lshift = MAX(0, -rshift); in ReadComponent16u() local
355 int pix = ((pix_row[x] + delta) >> rshift) << lshift; in ReadComponent16u()
362 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in ReadComponent16u()
368 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in ReadComponent16u()
/external/opencv3/modules/imgcodecs/src/
Dgrfmt_jpeg2000.cpp302 int lshift = MAX(0, -rshift); in readComponent8u() local
322 int pix = ((pix_row[x] + delta) >> rshift) << lshift; in readComponent8u()
329 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in readComponent8u()
335 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in readComponent8u()
366 int lshift = MAX(0, -rshift); in readComponent16u() local
386 int pix = ((pix_row[x] + delta) >> rshift) << lshift; in readComponent16u()
393 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in readComponent16u()
399 int pix = ((pix_row[j] + delta) >> rshift) << lshift; in readComponent16u()
/external/libopus/silk/fixed/
Dfind_LTP_FIX.c56 opus_int i, k, lshift; in silk_find_LTP_FIX() local
124 lshift = silk_CLZ32( WLTP_max ) - 1 - 3; /* keep 3 bits free for vq_nearest_neighbor_fix */ in silk_find_LTP_FIX()
125 silk_assert( 26 - 18 + lshift >= 0 ); in silk_find_LTP_FIX()
126 if( 26 - 18 + lshift < 31 ) { in silk_find_LTP_FIX()
127 temp32 = silk_min_32( temp32, silk_LSHIFT( (opus_int32)1, 26 - 18 + lshift ) ); in silk_find_LTP_FIX()
/external/valgrind/VEX/priv/
Dguest_x86_helpers.c113 inline static Int lshift ( Int x, Int n ) in lshift() function
160 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
161 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
181 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
182 of = lshift((argL ^ argR) & (argL ^ res), \
206 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
207 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
231 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
232 of = lshift((argL ^ argR) & (argL ^ res), \
248 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80; \
[all …]
Dguest_amd64_helpers.c153 static inline Long lshift ( Long x, Int n ) in lshift() function
204 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
205 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
225 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
226 of = lshift((argL ^ argR) & (argL ^ res), \
250 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
251 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
275 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
276 of = lshift((argL ^ argR) & (argL ^ res), \
292 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80; \
[all …]
/external/llvm/test/CodeGen/X86/
Dx86-64-double-shifts-var.ll23 ;uint64_t lshift(uint64_t a, uint64_t b, int c)
28 define i64 @lshift(i64 %a, i64 %b, i32 %c) nounwind readnone {
/external/libweave/third_party/chromium/base/third_party/dmg_fp/
Ddtoa.cc973 lshift
1973 b = lshift(b, n);
2307 b = lshift(b, i);
2314 b = lshift(b, ++i);
2339 b = lshift(b, b2);
2341 d = lshift(d, d2);
2986 bb = lshift(bb, bb2);
2990 bd = lshift(bd, bd2);
2992 bs = lshift(bs, bs2);
3042 delta = lshift(delta,Log2P);
[all …]
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_conv.c227 unsigned lshift = dst_width - n; in lp_build_clamped_float_to_unsigned_norm() local
242 if (lshift) { in lp_build_clamped_float_to_unsigned_norm()
245 lshift), ""); in lp_build_clamped_float_to_unsigned_norm()
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dgenerate_test.py90 TypeError, operator.lshift, self.indent_writer, None)
/external/mesa3d/src/gallium/auxiliary/util/
Du_format_pack.py444 lshift = depth - (shift + src_channel.size)
445 value = '%s << %u' % (value, lshift)
/external/opencv3/modules/cudaarithm/src/
Delement_operations.cpp71 void cv::cuda::lshift(InputArray, Scalar_<int>, OutputArray, Stream&) { throw_no_cuda(); } in lshift() function in cv::cuda
409 void cv::cuda::lshift(InputArray _src, Scalar_<int> val, OutputArray _dst, Stream& stream) in lshift() function in cv::cuda
/external/opencv3/modules/cudaarithm/include/opencv2/
Dcudaarithm.hpp281 CV_EXPORTS void lshift(InputArray src, Scalar_<int> val, OutputArray dst, Stream& stream = Stream::…
/external/opencv3/modules/cudaarithm/perf/
Dperf_element_operations.cpp1026 TEST_CYCLE() cv::cuda::lshift(d_src, val, dst); in PERF_TEST_P()
/external/opencv3/modules/cudaarithm/test/
Dtest_element_operations.cpp2283 cv::cuda::lshift(loadMat(src, useRoi), val, dst); in CUDA_TEST_P()
/external/chromium-trace/catapult/third_party/Paste/paste/evalexception/media/
DMochiKit.packed.js219 },lshift:function(a,b){ method