Lines Matching refs:int32_t
26 int32_t gglRecipQNormalized(int32_t x, int* exponent) in gglRecipQNormalized()
28 const int32_t s = x>>31; in gglRecipQNormalized()
40 const int32_t lz = gglClz(a); in gglRecipQNormalized()
60 int32_t gglRecipQ(GGLfixed x, int q) in gglRecipQ()
83 const int32_t lz = gglClz(x); in gglSqrtRecipx()
85 const int32_t exp = lz - 16; in gglSqrtRecipx()
102 int32_t bshift = 15; in gglSqrtx()
137 int32_t exp = gglClz(x) - 16; in gglPowx()
163 int32_t gglDivQ(GGLfixed n, GGLfixed d, int32_t i) in gglDivQ()
166 const int32_t ds = n^d; in gglDivQ()
244 int32_t slow_muldiv(uint32_t a, uint32_t b, uint32_t c) in slow_muldiv()
275 return int32_t(result); in slow_muldiv()
280 int32_t quick_muldiv(int32_t a, int32_t b, int32_t c) in quick_muldiv()
282 int32_t r = 0, q = 0, i; in quick_muldiv()
309 int32_t gglMulDivi(int32_t a, int32_t b, int32_t c) in gglMulDivi()
311 int32_t result; in gglMulDivi()
312 int32_t sign = a^b^c; in gglMulDivi()