Lines Matching full:input
15 // faster for the common case if you know something a priori about the input
85 shrl %eax // high 31 bits of input as sint32
87 sarl $31, %eax // (big input) ? -1 : 0
88 movsd STICKY, %xmm1 // (big input) ? 0xfff : 0
90 andl %eax, %edx // (big input) ? 12 : 0
92 andpd %xmm0, %xmm1 // (big input) ? input & 0xfff : 0
94 psrlq %xmm3, %xmm0 // (big input) ? input >> 12 : input
95 orpd %xmm2, %xmm1 // 0x1.0p52 + ((big input) ? input & 0xfff : input)
96 orpd %xmm1, %xmm0 // 0x1.0p52 + ((big input) ? (input >> 12 | input & 0xfff) : input)
97 subsd %xmm2, %xmm0 // (double)((big input) ? (input >> 12 | input & 0xfff) : input)
98 cvtsd2ss %xmm0, %xmm0 // (float)((big input) ? (input >> 12 | input & 0xfff) : input)
100 paddd %xmm3, %xmm0 // (float)input