Home
last modified time | relevance | path

Searched refs:fu (Results 1 - 15 of 15) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
H A Dbrw_packed_float.c25 union fu { union
38 union fu fu = { .f = f }; in brw_float_to_vf() local
42 return fu.s.sign << 7; in brw_float_to_vf()
44 unsigned mantissa = fu.s.mantissa >> (23 - 4); in brw_float_to_vf()
45 unsigned exponent = fu.s.exponent - (127 - 3); in brw_float_to_vf()
46 unsigned vf = (fu.s.sign << 7) | (exponent << 4) | mantissa; in brw_float_to_vf()
53 if (fu.u & 0x7ffff || exponent > 7) in brw_float_to_vf()
62 union fu fu; in brw_vf_to_float() local
[all...]
H A Dtest_vf_float_conversions.cpp50 union fu { union
58 union fu fu; in f2u() local
59 fu.f = f; in f2u()
60 return fu.u; in f2u()
/third_party/typescript/tests/baselines/reference/
H A DtargetTypingOnFunctions.js2 var fu: (s: string) => string = function (s) { return s.toLowerCase() };
4 var zu = fu = function (s) { return s.toLowerCase() };
7 var fu = function (s) { return s.toLowerCase(); }; function
8 var zu = fu = function (s) { return s.toLowerCase(); };
/third_party/elfutils/tests/
H A Drun-addr2line-i-demangle-test.sh58 fu() function
60 fubar inlined at /tmp/x.cpp:32 in fu()
62 fu() function
64 foobar inlined at /tmp/x.cpp:33 in fu()
66 fu() function
/third_party/mesa3d/src/intel/isl/
H A Disl_emit_depth_stencil.c327 union { float f; uint32_t u; } fu; in emit_depth_stencil_hiz_s() local
328 fu.f = info->depth_clear_value; in emit_depth_stencil_hiz_s()
329 clear.DepthClearValue = fu.u; in emit_depth_stencil_hiz_s()
/third_party/libabigail/tests/data/test-diff-suppr/
H A Dtest13-suppr-through-pointer-v1.cc20 fu(S**) in fu() function
H A Dtest13-suppr-through-pointer-v0.cc20 fu(S**) in fu() function
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSamplerCore.cpp907 Float4 fu, fv; in sampleFloat2D() local
909 address(u, x0, x1, fu, mipmap, offset.x, filter, OFFSET(Mipmap, width), state.addressingModeU, function); in sampleFloat2D()
952 if(componentCount >= 1) c00.x = c00.x + fu * (c10.x - c00.x); in sampleFloat2D()
953 if(componentCount >= 2) c00.y = c00.y + fu * (c10.y - c00.y); in sampleFloat2D()
954 if(componentCount >= 3) c00.z = c00.z + fu * (c10.z - c00.z); in sampleFloat2D()
955 if(componentCount >= 4) c00.w = c00.w + fu * (c10.w - c00.w); in sampleFloat2D()
957 if(componentCount >= 1) c01.x = c01.x + fu * (c11.x - c01.x); in sampleFloat2D()
958 if(componentCount >= 2) c01.y = c01.y + fu * (c11.y - c01.y); in sampleFloat2D()
959 if(componentCount >= 3) c01.z = c01.z + fu * (c11.z - c01.z); in sampleFloat2D()
960 if(componentCount >= 4) c01.w = c01.w + fu * (c1 in sampleFloat2D()
1000 Float4 fu, fv, fw; sampleFloat3D() local
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DSamplerCore.cpp1223 Float4 fu, fv; in sampleFloat2D() local
1225 address(u, x0, x1, fu, mipmap, offset.x, filter, OFFSET(Mipmap, width), state.addressingModeU, function); in sampleFloat2D()
1252 if(componentCount >= 1) c0.x = c0.x + fu * (c1.x - c0.x); in sampleFloat2D()
1253 if(componentCount >= 2) c0.y = c0.y + fu * (c1.y - c0.y); in sampleFloat2D()
1254 if(componentCount >= 3) c0.z = c0.z + fu * (c1.z - c0.z); in sampleFloat2D()
1255 if(componentCount >= 4) c0.w = c0.w + fu * (c1.w - c0.w); in sampleFloat2D()
1257 if(componentCount >= 1) c2.x = c2.x + fu * (c3.x - c2.x); in sampleFloat2D()
1258 if(componentCount >= 2) c2.y = c2.y + fu * (c3.y - c2.y); in sampleFloat2D()
1259 if(componentCount >= 3) c2.z = c2.z + fu * (c3.z - c2.z); in sampleFloat2D()
1260 if(componentCount >= 4) c2.w = c2.w + fu * (c in sampleFloat2D()
1292 Float4 fu, fv, fw; sampleFloat3D() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.c1002 } fu; in ureg_DECL_immediate() local
1006 fu.f[i] = v[i]; in ureg_DECL_immediate()
1009 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT32); in ureg_DECL_immediate()
1020 } fu; in ureg_DECL_immediate_f64() local
1025 fu.d[i] = v[i]; in ureg_DECL_immediate_f64()
1028 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT64); in ureg_DECL_immediate_f64()
1085 } fu; in ureg_DECL_immediate_uint64() local
1090 fu.u64[i] = v[i]; in ureg_DECL_immediate_uint64()
1093 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_UINT64); in ureg_DECL_immediate_uint64()
1104 } fu; in ureg_DECL_immediate_int64() local
[all...]
/third_party/icu/icu4c/source/common/
H A Ddictbe.cpp1277 UText fu = UTEXT_INITIALIZER; in divideUpDictionaryRange() local
1278 utext_openUnicodeString(&fu, &inString, &status); in divideUpDictionaryRange()
1293 utext_setNativeIndex(&fu, ix); in divideUpDictionaryRange()
1294 count = fDictionary->matches(&fu, maxWordSize, numCodePts, in divideUpDictionaryRange()
1345 utext_close(&fu); in divideUpDictionaryRange()
/third_party/node/deps/icu-small/source/common/
H A Ddictbe.cpp1296 UText fu = UTEXT_INITIALIZER; in divideUpDictionaryRange() local
1297 utext_openUnicodeString(&fu, &inString, &status); in divideUpDictionaryRange()
1312 utext_setNativeIndex(&fu, ix); in divideUpDictionaryRange()
1313 count = fDictionary->matches(&fu, maxWordSize, numCodePts, in divideUpDictionaryRange()
1364 utext_close(&fu); in divideUpDictionaryRange()
/third_party/skia/third_party/externals/icu/source/common/
H A Ddictbe.cpp1264 UText fu = UTEXT_INITIALIZER; in divideUpDictionaryRange() local
1265 utext_openUnicodeString(&fu, &inString, &status); in divideUpDictionaryRange()
1280 utext_setNativeIndex(&fu, ix); in divideUpDictionaryRange()
1281 count = fDictionary->matches(&fu, maxWordSize, numCodePts, in divideUpDictionaryRange()
1332 utext_close(&fu); in divideUpDictionaryRange()
/third_party/mksh/
H A DBuild.sh275 eval HAVE_$fu=$fv
282 # ac_cache label: sets f, fu, fv?=0
285 fu=`upper $f`
286 eval fv=\$HAVE_$fu
382 fu=`upper $f`
383 eval fv=\$HAVE_$fu
392 test x"$1" = x"" || fu=$1
394 test x"$2" = x"" && eval fv=\$HAVE_$fu
395 add_cppflags -DHAVE_$fu=$fv
/third_party/skia/third_party/externals/freetype/src/autofit/
H A Dafhints.c693 AF_DUMP(( "Table of %s edges (1px=%.2fu, 10u=%.2fpx):\n", in af_glyph_hints_dump_edges()
698 AF_DUMP(( "Table of %s edges (1px=%.2fu, 10u=%.2fpx):\n", in af_glyph_hints_dump_edges()
1413 FT_Pos u, ou, fu; /* point position */ in af_glyph_hints_align_strong_points() local
1437 fu = u; in af_glyph_hints_align_strong_points()
1538 u = before->pos + FT_MulFix( fu - before->fpos, in af_glyph_hints_align_strong_points()

Completed in 21 milliseconds