Home
last modified time | relevance | path

Searched refs:fu (Results 1 – 25 of 118) sorted by relevance

12345

/third_party/mesa3d/src/intel/compiler/
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
66 fu.u = (unsigned)vf << 24; in brw_vf_to_float()
67 return fu.f; in brw_vf_to_float()
[all …]
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/
DtargetTypingOnFunctions.symbols2 var fu: (s: string) => string = function (s) { return s.toLowerCase() };
3 >fu : Symbol(fu, Decl(targetTypingOnFunctions.ts, 0, 3))
10 var zu = fu = function (s) { return s.toLowerCase() };
12 >fu : Symbol(fu, Decl(targetTypingOnFunctions.ts, 0, 3))
DtargetTypingOnFunctions.types2 var fu: (s: string) => string = function (s) { return s.toLowerCase() };
3 >fu : (s: string) => string
12 var zu = fu = function (s) { return s.toLowerCase() };
14 >fu = function (s) { return s.toLowerCase() } : (s: string) => string
15 >fu : (s: string) => string
DtargetTypingOnFunctions.js2 var fu: (s: string) => string = function (s) { return s.toLowerCase() }; function
4 var zu = fu = function (s) { return s.toLowerCase() };
7 var fu = function (s) { return s.toLowerCase(); };
8 var zu = fu = function (s) { return s.toLowerCase(); };
/third_party/boost/boost/math/tools/
Dminima.hpp35 T fu, fv, fw, fx; // function evaluations at u, v, w, x in brent_find_minima() local
92 fu = f(u); in brent_find_minima()
93 if(fu <= fx) in brent_find_minima()
107 fx = fu; in brent_find_minima()
117 if((fu <= fw) || (w == x)) in brent_find_minima()
123 fw = fu; in brent_find_minima()
125 else if((fu <= fv) || (v == x) || (v == w)) in brent_find_minima()
129 fv = fu; in brent_find_minima()
Dtoms748_solve.hpp312 T a, b, fa, fb, c, u, fu, a0, b0, d, fd, e, fe; in toms748_solve() local
425 fu = fa; in toms748_solve()
430 fu = fb; in toms748_solve()
432 c = u - 2 * (fu / (fb - fa)) * (b - a); in toms748_solve()
/third_party/boost/libs/python/test/numpy/
Ddtype.py25 fu = getattr(dtype_ext, "accept_uint%d" % bits)
27 self.assertEquivalent(fu(u(1)), numpy.dtype(u))
30 self.assertEquivalent(fu(True), numpy.dtype(u))
32 self.assertEquivalent(fu(int(1)), numpy.dtype(u))
34 self.assertEquivalent(fu(long(1)), numpy.dtype(u))
/third_party/typescript/tests/cases/compiler/
DtargetTypingOnFunctions.ts1 var fu: (s: string) => string = function (s) { return s.toLowerCase() }; variable
3 var zu = fu = function (s) { return s.toLowerCase() };
/third_party/ffmpeg/
D.mailmap13 <linjie.justin.fu@gmail.com> <linjie.fu@intel.com>
14 <linjie.justin.fu@gmail.com> <fulinjie@zju.edu.cn>
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/
Dja_Latn_ko.txt97 fu\~ → | p ; # フュ
98 fu → | hu ;
/third_party/mesa3d/src/intel/isl/
Disl_emit_depth_stencil.c302 union { float f; uint32_t u; } fu; in isl_genX() local
303 fu.f = info->depth_clear_value; in isl_genX()
304 clear.DepthClearValue = fu.u; in isl_genX()
/third_party/icu/icu4c/source/data/translit/
Dja_Latn_ko.txt98 fu\~ → | p ; # フュ
99 fu → | hu ;
/third_party/skia/third_party/externals/icu/source/data/translit/
Dja_Latn_ko.txt98 fu\~ → | p ; # フュ
99 fu → | hu ;
/third_party/gettext/gettext-tools/tests/
Dxgettext-scheme-47 (script-fu-register "script-fu-paste-as-brush"
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSamplerCore.cpp907 Float4 fu, fv; in sampleFloat2D() local
909 …address(u, x0, x1, fu, mipmap, offset.x, filter, OFFSET(Mipmap, width), state.addressingModeU, fun… 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 * (c11.w - c01.w); in sampleFloat2D()
[all …]
/third_party/boost/libs/math/tools/
Dbessel_data.cpp31 T u, Jv, Ju, Yv, Yv1, Yu, Yu1, fv, fu; in bessel_jy_bare() local
101 fu = prev / current; in bessel_jy_bare()
103 T t = u / x - fu; // t = J'/J in bessel_jy_bare()
/third_party/curl/scripts/
Dcontributors.sh80 sort -fu | \
Dcontrithanks.sh75 sort -fu | \
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DSamplerCore.cpp1223 Float4 fu, fv; in sampleFloat2D() local
1225 …address(u, x0, x1, fu, mipmap, offset.x, filter, OFFSET(Mipmap, width), state.addressingModeU, fun… 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 * (c3.w - c2.w); in sampleFloat2D()
[all …]
/third_party/boost/boost/math/special_functions/detail/
Dbessel_jy.hpp269 T u, Jv, Ju, Yv, Yv1, Yu, Yu1(0), fv, fu; in bessel_jy() local
475 fu = prev / current; in bessel_jy()
501 fu = prev / current; in bessel_jy()
506 fu = 1; in bessel_jy()
510 T t = u / x - fu; // t = J'/J in bessel_jy()
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_ureg.c995 } fu; in ureg_DECL_immediate() local
999 fu.f[i] = v[i]; in ureg_DECL_immediate()
1002 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT32); in ureg_DECL_immediate()
1013 } fu; in ureg_DECL_immediate_f64() local
1018 fu.d[i] = v[i]; in ureg_DECL_immediate_f64()
1021 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT64); in ureg_DECL_immediate_f64()
1078 } fu; in ureg_DECL_immediate_uint64() local
1083 fu.u64[i] = v[i]; in ureg_DECL_immediate_uint64()
1086 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_UINT64); in ureg_DECL_immediate_uint64()
1097 } fu; in ureg_DECL_immediate_int64() local
[all …]
/third_party/gettext/gettext-tools/doc/
Dlang-scheme.texi24 @code{(_ "abc")}, @code{_"abc"} (GIMP script-fu extension)
/third_party/skia/third_party/externals/icu/source/common/
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/flutter/skia/third_party/externals/icu/source/common/
Ddictbe.cpp1262 UText fu = UTEXT_INITIALIZER; in divideUpDictionaryRange() local
1263 utext_openUnicodeString(&fu, &inString, &status); in divideUpDictionaryRange()
1278 utext_setNativeIndex(&fu, ix); in divideUpDictionaryRange()
1279 count = fDictionary->matches(&fu, maxWordSize, numCodePts, in divideUpDictionaryRange()
1330 utext_close(&fu); in divideUpDictionaryRange()

12345