Searched refs:shift_dist (Results 1 – 3 of 3) sorted by relevance
/third_party/mesa3d/src/util/ |
D | softfloat.c | 559 int8_t shift_dist; in _mesa_norm_round_pack_f64() local 561 shift_dist = _mesa_count_leading_zeros64(m) - 1; in _mesa_norm_round_pack_f64() 562 e -= shift_dist; in _mesa_norm_round_pack_f64() 563 if ((10 <= shift_dist) && ((unsigned) e < 0x7fd)) { in _mesa_norm_round_pack_f64() 565 result.u = (s << 63) + ((m ? e : 0) << 52) + (m << (shift_dist - 10)); in _mesa_norm_round_pack_f64() 568 return _mesa_roundtozero_f64(s, e, m << shift_dist); in _mesa_norm_round_pack_f64() 686 unsigned shift_dist = 0; in _mesa_double_sub_rtz() local 733 shift_dist = _mesa_count_leading_zeros64(m_diff) - 11; in _mesa_double_sub_rtz() 734 e = a_flt_e - shift_dist; in _mesa_double_sub_rtz() 736 shift_dist = a_flt_e; in _mesa_double_sub_rtz() [all …]
|
/third_party/vixl/src/aarch64/ |
D | simulator-aarch64.cc | 2487 int shift_dist = shift_and_lane_size.first; in Simulator() local 2493 shift_dist = (8 << lane_size) - shift_dist; in Simulator() 2494 sli(vform, zd, zn, shift_dist); in Simulator() 2497 sri(vform, zd, zn, shift_dist); in Simulator() 3091 int shift_dist = shift_and_lane_size.first; in Simulator() local 3095 srsra(vform, zd, zn, shift_dist); in Simulator() 3098 ssra(vform, zd, zn, shift_dist); in Simulator() 3101 ursra(vform, zd, zn, shift_dist); in Simulator() 3104 usra(vform, zd, zn, shift_dist); in Simulator() 3422 int shift_dist = shift_and_lane_size.first; in Simulator() local [all …]
|
D | disasm-aarch64.cc | 8972 int shift_dist = shift_and_lane_size.first; in Disassembler() local 8976 shift_dist = (8 << lane_size) - shift_dist; in Disassembler() 8979 (shift_dist == 0)) { in Disassembler()
|