Lines Matching full:indices
85 // To get the indices, we shift the values so that it start with 0.
86 // Range of indices: 0 <= indices <= 355.
87 StorageType indices = cpp::bit_cast<StorageType>((x_rounded + 0x1.62p3k) >>
90 // indices = (hi + mid + 177/16) * 16
92 // hi + mid = indices/16 - 11.0625
94 // exp( floor(indices / 16) - 11 )
96 // exp( (indices - floor(indices)) - 0.0625 )
97 accum exp_hi = EXP_HI[indices >> 4];
98 accum exp_mid = EXP_MID[indices & 0xf];