Home
last modified time | relevance | path

Searched refs:expo (Results 1 - 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
H A Dastc_image_load_store.cpp41 int expo; in float_to_lns() local
42 float normfrac = frexpf(p, &expo); in float_to_lns()
44 if (expo < -13) in float_to_lns()
48 expo = 0; in float_to_lns()
52 expo += 14; in float_to_lns()
63 p1 += expo * 2048.0f; in float_to_lns()
/third_party/ffmpeg/libavcodec/
H A Dsbrdsp_fixed.c124 int nz, mant, expo; in autocorr_calc() local
142 expo = nz + 15; in autocorr_calc()
143 return av_int2sf(mant, 30 - expo); in autocorr_calc()
/third_party/astc-encoder/Source/
H A Dastcenc_mathlib.h392 * @param[out] expo The output exponent.
396 static inline float frexp(float v, int* expo) in frexp() argument
400 *expo = ((p.u >> 23) & 0xFF) - 126; in frexp()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DBigNumberFormatTest.java298 private void expect(Object fmto, Object numo, Object expo) { in expect() argument
312 if (expo instanceof String[]) { in expect()
313 exps = (String[]) expo; in expect()
315 exp = (String) expo; in expect()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DBigNumberFormatTest.java301 private void expect(Object fmto, Object numo, Object expo) { in expect() argument
315 if (expo instanceof String[]) { in expect()
316 exps = (String[]) expo; in expect()
318 exp = (String) expo; in expect()
/third_party/python/Objects/
H A Dlongobject.c396 int i, ndig, expo, neg; in PyLong_FromDouble() local
412 frac = frexp(dval, &expo); /* dval = frac*2**expo; 0.0 <= frac < 1.0 */ in PyLong_FromDouble()
413 assert(expo > 0); in PyLong_FromDouble()
414 ndig = (expo-1) / PyLong_SHIFT + 1; /* Number of 'digits' in result */ in PyLong_FromDouble()
418 frac = ldexp(frac, (expo-1) % PyLong_SHIFT + 1); in PyLong_FromDouble()

Completed in 11 milliseconds