Lines Matching full:indices
75 // To get the indices, we shift the values so that it start with 0.
76 // Range of indices: 0 <= indices <= 89
77 StorageType indices = cpp::bit_cast<StorageType>((x_rounded + 0x1.6p2hk) >>
80 // indices = (hi + mid + 44/8) * 8
82 // hi + mid = indices/8 - 5.5
84 // exp( floor(indices / 8) - 5 )
86 // exp( (indices - floor(indices)) - 0.5 )
87 short accum exp_hi = EXP_HI[indices >> 3];
88 short accum exp_mid = EXP_MID[indices & 0x7];