Home
last modified time | relevance | path

Searched refs:exp16 (Results 1 – 8 of 8) sorted by relevance

/third_party/vk-gl-cts/framework/delibs/debase/
DdeFloat16.c220 int exp16; /* exp16: biased exponent for 16-bit floats */ in deFloat32To16Round() local
229 exp16 = (int) (exp32) - 127 + 15; /* 15/127: exponent bias for 16-bit/32-bit floats */ in deFloat32To16Round()
265 else if (exp16 < -10) in deFloat32To16Round()
272 else if (exp16 <= 0) in deFloat32To16Round()
282 mantissa >>= (14 - exp16); in deFloat32To16Round()
289 mantissa = roundToNearestEven(mantissa, 14 - exp16); in deFloat32To16Round()
294 else if (exp16 <= 30) in deFloat32To16Round()
298 return (deFloat16) (sign | ((deUint32)exp16 << 10u) | (mantissa >> 13u)); in deFloat32To16Round()
304 exp16 = (exp16 << 10u) + (mantissa & (1 << 10)); in deFloat32To16Round()
306 return (deFloat16) (sign | ((deUint32) exp16) | mantissa); in deFloat32To16Round()
[all …]
/third_party/ffmpeg/tests/
Dtiny_psnr.c62 static unsigned int exp16(unsigned int a){
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DShaderCore.cpp567 auto exp16 = halfBits & SIMD::UInt(0x7C00); in halfToFloatBits() local
569 auto isDnormOrZero = CmpEQ(exp16, SIMD::UInt(0)); in halfToFloatBits()
570 auto isInfOrNaN = CmpEQ(exp16, SIMD::UInt(0x7C00)); in halfToFloatBits()
574 auto exp32 = (exp16 + SIMD::UInt(0x1C000)) << 13; in halfToFloatBits()
/third_party/mesa3d/src/broadcom/compiler/
Dnir_to_vir.c1335 struct qreg exp16 = vir_ADD(c, exp32, vir_uniform_ui(c, -127 + 15)); in f2f16_rtz() local
1338 inst = vir_MIN_dest(c, vir_nop_reg(), exp16, vir_uniform_ui(c, 30)); in f2f16_rtz()
1346 vir_SHL(c, exp16, vir_uniform_ui(c, 10))), in f2f16_rtz()
1351 inst = vir_MIN_dest(c, vir_nop_reg(), exp16, vir_uniform_ui(c, 0)); in f2f16_rtz()
1355 tmp = vir_SHR(c, tmp, vir_SUB(c, vir_uniform_ui(c, 14), exp16)); in f2f16_rtz()
1371 inst = vir_MIN_dest(c, vir_nop_reg(), exp16, vir_uniform_ui(c, -10)); in f2f16_rtz()
/third_party/typescript/tests/cases/compiler/
DmanyConstExports.ts19 export const exp16 = "test"; constant
/third_party/typescript/tests/baselines/reference/
DmanyConstExports.js18 export const exp16 = "test"; constant
5007 …= exports.exp20 = exports.exp19 = exports.exp18 = exports.exp17 = exports.exp16 = exports.exp15 = …
5123 exports.exp16 = "test";
DmanyConstExports.symbols50 export const exp16 = "test";
51 >exp16 : Symbol(exp16, Decl(manyConstExports.ts, 16, 12))
DmanyConstExports.types66 export const exp16 = "test";
67 >exp16 : "test"