Searched refs:shiftup (Results 1 – 2 of 2) sorted by relevance
144 int shiftup = topbitindex & 31; in __mathlib_rredf2() local145 int shiftdown = 32 - shiftup; in __mathlib_rredf2()147 if (shiftup) { in __mathlib_rredf2()148 word1 = (twooverpi[wordindex] << shiftup) | (twooverpi[wordindex+1] >> shiftdown); in __mathlib_rredf2()149 word2 = (twooverpi[wordindex+1] << shiftup) | (twooverpi[wordindex+2] >> shiftdown); in __mathlib_rredf2()150 word3 = (twooverpi[wordindex+2] << shiftup) | (twooverpi[wordindex+3] >> shiftdown); in __mathlib_rredf2()
159 int shiftup = topbitindex & 31; in __ieee754_rem_pio2() local160 int shiftdown = 32 - shiftup; in __ieee754_rem_pio2()171 if (shiftup) in __ieee754_rem_pio2()172 … word = (twooverpi[wordindex + i] << shiftup) | (twooverpi[wordindex + i + 1] >> shiftdown); in __ieee754_rem_pio2()