Searched refs:shift_right (Results 1 - 5 of 5) sorted by relevance
/third_party/skia/src/core/ |
H A D | SkMipmap.cpp | 169 template <typename T> T shift_right(const T& x, int bits) { in shift_right() function 173 Sk4f shift_right(const Sk4f& x, int bits) { in shift_right() function 209 d[i] = F::Compact(shift_right(c, 1)); in downsample_1_2() 228 d[i] = F::Compact(shift_right(c, 2)); in downsample_1_3() 245 d[i] = F::Compact(shift_right(c, 1)); in downsample_2_1() 263 d[i] = F::Compact(shift_right(c, 2)); in downsample_2_2() 285 d[i] = F::Compact(shift_right(c, 3)); in downsample_2_3() 304 d[i] = F::Compact(shift_right(c, 2)); in downsample_3_1() 338 d[i] = F::Compact(shift_right(sum, 3)); in downsample_3_2() 378 d[i] = F::Compact(shift_right(su in downsample_3_3() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | adpcm.c | 1610 int shift_left, shift_right; in adpcm_decode_frame() 1632 shift_right = 20 - (byte & 0x0F); in adpcm_decode_frame() 1637 next_right_sample = sign_extend(byte, 4) * (1 << shift_right); in adpcm_decode_frame()
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
H A D | code-generator-s390.cc | 2468 intptr_t shift_right = static_cast<intptr_t>(shift_amount); \ in AssembleArchInstruction() 2469 __ srlk(result, prev, Operand(shift_right)); \ in AssembleArchInstruction() 2483 intptr_t shift_right = static_cast<intptr_t>(shift_amount); \ in AssembleArchInstruction() 2484 __ srlk(result, prev, Operand(shift_right)); \ in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | macro-assembler-mips.cc | 1679 int shift_right = 32 - size; in CallRecordWriteStub() local 1680 if (shift_right > 0) { in CallRecordWriteStub() 1681 srl(rt, rt, shift_right); in CallRecordWriteStub()
|
/third_party/node/deps/simdutf/ |
H A D | simdutf.cpp | 18405 const __m512i shift_right = _mm512_setr_epi64( 18416 const __m512i shift = _mm512_shuffle_epi8(shift_right, char_class); [all...] |
Completed in 54 milliseconds