/external/mesa3d/src/intel/compiler/ |
D | brw_packed_float.c | 25 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 …]
|
D | test_vf_float_conversions.cpp | 50 union fu { union 58 union fu fu; in f2u() local 59 fu.f = f; in f2u() 60 return fu.u; in f2u()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/ |
D | BrentOptimizer.java | 186 double fu = computeObjectiveValue(u); in localMin() local 188 fu = -fu; in localMin() 192 if (fu <= fx) { in localMin() 203 fx = fu; in localMin() 210 if (fu <= fw || w == x) { in localMin() 214 fw = fu; in localMin() 215 } else if (fu <= fv || v == x || v == w) { in localMin() 217 fv = fu; in localMin()
|
/external/llvm-project/lld/test/ELF/ |
D | icf-ineligible.s | 3 # RUN: ld.lld %t.o -o /dev/null --keep-unique fu --icf=all --print-icf-sections | FileCheck %s 15 .globl d, d_alias, fu, f1, f2, f3, f4, f5 22 .section .text.fu,"ax",@progbits 23 fu: label 40 .quad fu 44 .quad .text.fu
|
/external/elfutils/tests/ |
D | run-addr2line-i-demangle-test.sh | 58 fu() function 60 fubar inlined at /tmp/x.cpp:32 in fu() function 62 fu() function 64 foobar inlined at /tmp/x.cpp:33 in fu() function 66 fu() function
|
/external/llvm/test/TableGen/ |
D | listconcat.td | 9 // CHECK: list<string> T1 = ["fu", "foo"]; 10 // CHECK: list<string> T2 = ["fu", "foo", "fu", "bar", "baz"]; 18 def Z : Y<["fu"]>;
|
D | strconcat.td | 24 def Z : Y<"fu">;
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | fastboot_utils.py | 41 'optional': lambda fu: fu.supports_ab 55 'optional': lambda fu: fu.supports_ab 63 'optional': lambda fu: not fu.requires_dtbo 67 'optional': lambda fu: not fu.requires_vbmeta
|
/external/llvm-project/llvm/test/TableGen/ |
D | listconcat.td | 25 // CHECK: list<string> T1 = ["fu", "foo"]; 26 // CHECK: list<string> T2 = ["fu", "foo", "fu", "bar", "baz"]; 48 def Z : Y<["fu"]>;
|
D | strconcat.td | 24 def Z : Y<"fu">;
|
/external/clang/test/CodeGen/ |
D | 2004-06-08-OpaqueStructArg.c | 3 struct fu; 4 void foo(struct fu);
|
/external/llvm-project/clang/test/CodeGen/ |
D | 2004-06-08-OpaqueStructArg.c | 3 struct fu; 4 void foo(struct fu);
|
/external/cldr/common/testData/transforms/ |
D | blt-fonipa-t-blt.txt | 71 ꪠꪴ fu˨ 91 ꪠꪴ fu˨ 133 ꪠꪴ fu˨ 162 ꪠꪴ fu˨ 200 ꪠꪴ fu˨ 271 ꪠꪴ fu˨ 382 ꪠꪴ fu˨ 517 ꪠꪴ fu˨
|
/external/libabigail/tests/data/test-diff-suppr/ |
D | test13-suppr-through-pointer-v0.cc | 20 fu(S**) in fu() function
|
D | test13-suppr-through-pointer-v1.cc | 20 fu(S**) in fu() function
|
/external/icu/icu4c/source/data/translit/ |
D | ja_Latn_ko.txt | 98 fu\~ → | p ; # フュ 99 fu → | hu ;
|
/external/mesa3d/src/intel/isl/ |
D | isl_emit_depth_stencil.c | 277 union { float f; uint32_t u; } fu; in isl_genX() local 278 fu.f = info->depth_clear_value; in isl_genX() 279 clear.DepthClearValue = fu.u; in isl_genX()
|
/external/iproute2/genl/ |
D | genl_utils.h | 11 int (*parse_genlopt)(struct genl_util *fu, int argc, char **argv);
|
/external/swiftshader/src/Pipeline/ |
D | SamplerCore.cpp | 985 Float4 fu, fv; in sampleFloat2D() local 987 …address(u, x0, x1, fu, mipmap, offset.x, filter, OFFSET(Mipmap, width), state.addressingModeU, fun… in sampleFloat2D() 1030 if(componentCount >= 1) c00.x = c00.x + fu * (c10.x - c00.x); in sampleFloat2D() 1031 if(componentCount >= 2) c00.y = c00.y + fu * (c10.y - c00.y); in sampleFloat2D() 1032 if(componentCount >= 3) c00.z = c00.z + fu * (c10.z - c00.z); in sampleFloat2D() 1033 if(componentCount >= 4) c00.w = c00.w + fu * (c10.w - c00.w); in sampleFloat2D() 1035 if(componentCount >= 1) c01.x = c01.x + fu * (c11.x - c01.x); in sampleFloat2D() 1036 if(componentCount >= 2) c01.y = c01.y + fu * (c11.y - c01.y); in sampleFloat2D() 1037 if(componentCount >= 3) c01.z = c01.z + fu * (c11.z - c01.z); in sampleFloat2D() 1038 if(componentCount >= 4) c01.w = c01.w + fu * (c11.w - c01.w); in sampleFloat2D() [all …]
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | attr-likelihood-iteration-stmt.cpp | 31 void fu(int e) in fu() function
|
/external/swiftshader/src/Shader/ |
D | SamplerCore.cpp | 1223 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 …]
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_ureg.c | 1000 } fu; in ureg_DECL_immediate() local 1004 fu.f[i] = v[i]; in ureg_DECL_immediate() 1007 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT32); in ureg_DECL_immediate() 1018 } fu; in ureg_DECL_immediate_f64() local 1023 fu.d[i] = v[i]; in ureg_DECL_immediate_f64() 1026 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT64); in ureg_DECL_immediate_f64() 1083 } fu; in ureg_DECL_immediate_uint64() local 1088 fu.u64[i] = v[i]; in ureg_DECL_immediate_uint64() 1091 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_UINT64); in ureg_DECL_immediate_uint64() 1102 } fu; in ureg_DECL_immediate_int64() local [all …]
|
/external/iproute2/tc/ |
D | f_flow.c | 133 static int flow_parse_opt(struct filter_util *fu, char *handle, in flow_parse_opt() argument 266 static int flow_print_opt(struct filter_util *fu, FILE *f, struct rtattr *opt, in flow_print_opt() argument
|
/external/llvm-project/llvm/test/tools/llvm-objdump/XCOFF/ |
D | raw-section-data.test | 7 # CHECK-NEXT: 0010 00002040 00000001 0000000c 00046675 .. @..........fu
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | optimize-max-1.ll | 69 define void @fu(double* nocapture %p, i64 %n) nounwind { 70 ; CHECK-LABEL: fu:
|