Searched refs:right_shift (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/execution/arm64/ |
H A D | simulator-arm64.cc | 5734 int right_shift = (16 << highestSetBit) - immhimmb; 5753 sri(vf, rd, rn, right_shift); 5756 sshr(vf, rd, rn, right_shift); 5759 ushr(vf, rd, rn, right_shift); 5762 sshr(vf, rd, rn, right_shift).Round(vf); 5765 ushr(vf, rd, rn, right_shift).Round(vf); 5768 ssra(vf, rd, rn, right_shift); 5771 usra(vf, rd, rn, right_shift); 5774 srsra(vf, rd, rn, right_shift); 5777 ursra(vf, rd, rn, right_shift); [all...] |
/third_party/vixl/src/aarch64/ |
H A D | simulator-aarch64.cc | 9317 int right_shift = (16 << highest_set_bit) - immh_immb; in Simulator() local 9336 sri(vf, rd, rn, right_shift); in Simulator() 9339 sshr(vf, rd, rn, right_shift); in Simulator() 9342 ushr(vf, rd, rn, right_shift); in Simulator() 9345 sshr(vf, rd, rn, right_shift).Round(vf); in Simulator() 9348 ushr(vf, rd, rn, right_shift).Round(vf); in Simulator() 9351 ssra(vf, rd, rn, right_shift); in Simulator() 9354 usra(vf, rd, rn, right_shift); in Simulator() 9357 srsra(vf, rd, rn, right_shift); in Simulator() 9360 ursra(vf, rd, rn, right_shift); in Simulator() 9425 int right_shift = (16 << highest_set_bit) - immh_immb; Simulator() local [all...] |
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | pngfix.c | 334 uarb_shift(uarb inout, int ndigits, unsigned int right_shift) in uarb_shift() argument 335 /* Shift inout right by right_shift bits, right_shift must be in the range in uarb_shift() 342 assert(right_shift >= 1 && right_shift <= 15); in uarb_shift() 346 png_uint_16 temp = (png_uint_16)(carry | (inout[i] >> right_shift)); in uarb_shift() 349 carry = (png_uint_16)((inout[i] << (16-right_shift)) & 0xffff); in uarb_shift()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-glyf-table.hh | 135 _write_loca (IteratorIn it, unsigned right_shift, IteratorOut dest) in _write_loca() 144 return offset >> right_shift; in _write_loca()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_lower_to_hw_instr.cpp | 913 unsigned right_shift = input_data.physReg().byte() * 8; in emit_gfx10_wave64_bpermute() local 914 bld.vop2(aco_opcode::v_lshrrev_b32, dst, Operand::c32(right_shift), in emit_gfx10_wave64_bpermute()
|
Completed in 29 milliseconds