| /external/skia/tests/sksl/folding/ |
| D | MatrixVectorNoOpFolding.glsl | 10 vec2 vv; 15 v = -testInputs.xy; 16 v = -testInputs.xy; 17 if (v != -testInputs.xy) return false; 18 vv = vec2(0.0); 19 vv = vec2(0.0); 20 return vv == vec2(0.0); 24 vec3 vv; 29 v = -testInputs.xyz; 30 v = -testInputs.xyz; [all …]
|
| D | MatrixVectorNoOpFolding.wgsl | 12 fn test_no_op_mat2_X_vec2_b() -> bool { 15 var vv: vec2<f32>; 24 v = -_globalUniforms.testInputs.xy; 25 v = -_globalUniforms.testInputs.xy; 26 if any(v != (-_globalUniforms.testInputs.xy)) { 29 vv = vec2<f32>(0.0); 30 vv = vec2<f32>(0.0); 31 return all(vv == vec2<f32>(0.0)); 34 fn test_no_op_mat3_X_vec3_b() -> bool { 37 var vv: vec3<f32>; [all …]
|
| /external/skia/resources/sksl/folding/ |
| D | MatrixVectorNoOpFolding.rts | 10 const float2x2 n = float2x2(-1.0); 12 float2 v, vv; 24 if (v != -testInputs.xy) return false; 26 vv = v * z; 27 vv = z * v; 28 return vv == z[0]; 34 const float3x3 n = float3x3(-1.0); 36 float3 v, vv; 48 if (v != -testInputs.xyz) return false; 50 vv = v * z; [all …]
|
| /external/libdav1d/src/riscv/64/ |
| D | itx.S | 106 li t1, (5793-4096)*8 112 vsadd.vv v0, v0, v4 113 vsadd.vv v1, v1, v5 114 vsadd.vv v2, v2, v6 115 vsadd.vv v3, v3, v7 121 vadd.vv v0, v0, v1 122 vsub.vv v5, v2, v3 123 vsub.vv v4, v0, v5 125 vsub.vv v2, v4, v1 126 vsub.vv v1, v4, v3 [all …]
|
| /external/tcpdump/tests/ |
| D | TESTLIST | 1 # The options -# and -n are useless in TESTLIST. They are already set 6 # We cannot rely on, for example, "print-x.out" and 7 # "print-X.out" being different files - we might be running 8 # this on a case-insensitive file system, e.g. a Windows 9 # file system or a case-insensitive HFS+ file system on 12 # Therefore, for "X" and "XX", we have "print-capX.out" 13 # and "print-capXX.out". 15 print-x print-flags.pcap print-x.out -x 16 print-xx print-flags.pcap print-xx.out -xx 17 print-X print-flags.pcap print-capX.out -X [all …]
|
| D | printf_z.tests | 1 # -*- perl -*- 6 name => 'ospf-gmpls', 7 input => 'ospf-gmpls.pcap', 8 output => 'ospf-gmpls.out', 9 args => '-v' 13 name => 'ospf-nssa-bitnt', 14 input => 'ospf-nssa-bitnt.pcap', 15 output => 'ospf-nssa-bitnt.out', 16 args => '-v' 20 name => 'ospf3_ah-vv', [all …]
|
| D | smb.tests | 1 # -*- perl -*- 3 # Only attempt OpenSSL-specific tests when compiled with the library. 18 name => 'eapon1-nosmb', 20 output => 'eapon1-nosmb.out', 25 name => 'eapon1-v', 27 output => 'eapon1-v.out', 28 args => '-v' 33 name => 'eapon1-v-nosmb', 35 output => 'eapon1-v-nosmb.out', 36 args => '-v' [all …]
|
| /external/sdv/vsomeip/third_party/boost/spirit/test/karma/ |
| D | auto1.cpp | 1 // Copyright (c) 2001-2011 Hartmut Kaiser 44 boost::variant<int, double, float, std::string> vv; in main() local 45 vv = 1; in main() 46 BOOST_TEST(test_create_generator("1", vv)); in main() 47 vv = 1.0; in main() 48 BOOST_TEST(test_create_generator("1.0", vv)); in main() 49 vv = 1.0f; in main() 50 BOOST_TEST(test_create_generator("1.0", vv)); in main() 51 vv = "some string"; in main() 52 BOOST_TEST(test_create_generator("some string", vv)); in main() [all …]
|
| D | auto2.cpp | 1 // Copyright (c) 2001-2010 Hartmut Kaiser 53 boost::variant<int, double, float, std::string> vv; in main() local 54 vv = 1; in main() 55 BOOST_TEST(test("1", auto_, vv)); in main() 56 vv = 1.0; in main() 57 BOOST_TEST(test("1.0", auto_, vv)); in main() 58 vv = 1.0f; in main() 59 BOOST_TEST(test("1.0", auto_, vv)); in main() 60 vv = "some string"; in main() 61 BOOST_TEST(test("some string", auto_, vv)); in main() [all …]
|
| D | auto3.cpp | 1 // Copyright (c) 2001-2010 Hartmut Kaiser 43 boost::variant<int, double, float, std::string> vv; in main() local 44 vv = 1; in main() 45 BOOST_TEST(test_rule("1", vv)); in main() 46 vv = 1.0; in main() 47 BOOST_TEST(test_rule("1.0", vv)); in main() 48 vv = 1.0f; in main() 49 BOOST_TEST(test_rule("1.0", vv)); in main() 50 vv = "some string"; in main() 51 BOOST_TEST(test_rule("some string", vv)); in main()
|
| /external/sdv/vsomeip/third_party/boost/spirit/test/qi/ |
| D | auto.cpp | 1 // Copyright (c) 2001-2011 Hartmut Kaiser 106 boost::variant<double, bool, std::vector<char> > vv; in main() local 107 BOOST_TEST(test_create_parser("true", vv) && vv.which() == 1 && in main() 108 boost::get<bool>(vv) == true); in main() 109 BOOST_TEST(test_create_parser("1.0", vv) && vv.which() == 0 && in main() 110 boost::get<double>(vv) == 1.0); in main() 111 BOOST_TEST(test_create_parser("some_string", vv) && vv.which() == 2 && in main() 112 boost::equals(boost::get<std::vector<char> >(vv), "some_string")); in main() 136 boost::variant<double, bool, std::vector<char> > vv; in main() local 137 BOOST_TEST(test_create_parser_auto("true", vv) && vv.which() == 1 && in main() [all …]
|
| /external/llvm/lib/Target/Hexagon/ |
| D | HexagonInstrAlias.td | 1 //==- HexagonInstrAlias.td - Hexagon Instruction Aliases ---*- tablegen -*--==// 8 //===----------------------------------------------------------------------===// 10 //===----------------------------------------------------------------------===// 279 // Alias of: memXX($Rs + $u6_X) |= $Rt, also &=, +=, -= 293 def : InstAlias<"memb($Rs) -= $Rt", 301 def : InstAlias<"memb($Rs) -= #$U5", 317 def : InstAlias<"memh($Rs) -= $Rt", 325 def : InstAlias<"memh($Rs) -= #$U5", 341 def : InstAlias<"memw($Rs) -= $Rt", 349 def : InstAlias<"memw($Rs) -= #$U5", [all …]
|
| /external/fonttools/Lib/fontTools/merge/ |
| D | options.py | 31 if not a.startswith("--"): 37 if i == -1: 38 if a.startswith("no-"): 46 if k[-1] in "-+": 47 op = k[-1] + "=" # Ops is '-=' or '+=' now. 48 k = k[:-1] 51 k = k.replace("-", "_") 65 vv = v.split(",") 66 if vv == [""]: 67 vv = [] [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/Hexagon/ |
| D | HexagonPatternsHVX.td | 1 //===- HexagonPatternsHVX.td - Selection Patterns for HVX --*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 40 const auto &ST = CurDAG->getSubtarget<HexagonSubtarget>(); 41 return CurDAG->getTargetConstant(ST.getVectorLength()/2, SDLoc(N), MVT::i32); 44 def Q2V: OutPatFrag<(ops node:$Qs), (V6_vandqrt $Qs, (ToI32 -1))>; 55 (ToI32 -1))>; 95 int32_t V = N->getSExtValue(); 96 int32_t VecSize = HRI->getSpillSize(Hexagon::HvxVRRegClass); 98 if ((uint32_t(V) & (uint32_t(VecSize)-1)) != 0) [all …]
|
| D | HexagonPatternsV65.td | 1 //==- HexagonPatternsV65.td -------------------------------*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 IntRegs:$Rt, ModRegs:$Mu, RC:$Vv), 24 IntRegs:$Rt, ModRegs:$Mu, RC:$Vv), 34 IntRegs:$Rt, ModRegs:$Mu, RC:$Vv), 49 RC1:$Vv), 60 RC1:$Vv), 71 RC1:$Vv),
|
| /external/clang/test/Analysis/ |
| D | unions.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection %s -verify 29 x = pn->pn_u.lexdef->pn_u.lexdef; in CloneParseTree() 50 pn->pn_u = opn->pn_u; in CloneParseTree() 51 x = pn->pn_u.name.lexdef->pn_u.name.lexdef; in CloneParseTree() 72 } // expected-warning{{leak}} in testPositive() 77 clang_analyzer_eval(uu.i == 4); // expected-warning{{TRUE}} in testCopy() 79 IntOrString vv; in testCopy() local 80 vv.i = 5; in testCopy() 81 uu = vv; in testCopy() 83 clang_analyzer_eval(uu.i == 5); // expected-warning{{UNKNOWN}} in testCopy() [all …]
|
| /external/zstd/tests/cli-tests/compression/ |
| D | verbose-wlog.sh | 3 set -e 7 zstd < file -vv -19 -o file.19.zst 8 zstd -vv -l file.19.zst 10 zstd < file -vv -19 --long -o file.19.long.zst 11 zstd -vv -l file.19.long.zst
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
| D | HexagonPatternsV65.td | 1 //==- HexagonPatternsV65.td -------------------------------*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 ModRegs:$Mu, RC:$Vv), 22 ModRegs:$Mu, RC:$Vv), 31 ModRegs:$Mu, RC:$Vv), 44 ModRegs:$Mu, RC1:$Vv), 53 ModRegs:$Mu, RC1:$Vv), 62 ModRegs:$Mu, RC1:$Vv),
|
| /external/mksh/src/ |
| D | Build.sh | 3 #- 11 # is granted to deal in this work without restriction, including un- 23 #- 36 if test -n "${ZSH_VERSION+x}" && (emulate sh) >/dev/null 2>&1; then 41 if test -d /usr/xpg4/bin/. >/dev/null 2>&1; then 83 rm -f "$bn.gen" 121 test -f "$srcfile" || genopt_die Source file \$srcfile not set. 152 0:/\*-|0:\ \**|0:) 216 set x -G "$srcfile" 219 if test x"$1" = x"-G"; then [all …]
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math3/genetics/ |
| D | NPointCrossover.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 30 * N-point crossover policy. For each iteration a random crossover point is selected and the first 34 * <p>Example (2-point crossover): 37 * -C- denotes a crossover point 38 * -C- -C- -C- -C- 40 * \----/ \-------/ \-----/ \----/ \--------/ \-----/ 42 * VV (**) VV VV (*) VV 43 * /----\ /--------\ /-----\ /----\ /--------\ /-----\ 61 * <p><b>Note</b>: the number of crossover points must be < <code>chromosome length - 1 86 * Performs a N-point crossover. N random crossover points are selected and are used to divide [all …]
|
| /external/cronet/net/third_party/quiche/src/quiche/quic/moqt/test_tools/ |
| D | moqt_test_message.h | 2 // Use of this source code is governed by a BSD-style license that can be 74 // If there is a 'v', it is a varint that should be expanded. If '-', skip 84 if (i >= varints.length() || varints[i++] == '-') { in ExpandVarintsImpl() 228 SetWireImage(raw_packet_, sizeof(raw_packet_) - 5); in ClientSetupMessage() 261 ExpandVarintsImpl("--vvvvvv-vv---"); in ExpandVarints() 265 ExpandVarintsImpl("--vvvvvv-"); in ExpandVarints() 310 ExpandVarintsImpl("--v"); // first two bytes are already a 2b varint in ExpandVarints() 368 void ExpandVarints() override { ExpandVarintsImpl("vv---v----vvvvvvvvv---"); } in ExpandVarints() 389 /*start_group=*/MoqtSubscribeLocation(false, (int64_t)(-4)), 424 void ExpandVarints() override { ExpandVarintsImpl("vv---v---vv"); } in ExpandVarints() [all …]
|
| /external/compiler-rt/test/BlocksRuntime/ |
| D | blockimport.c | 31 void (^vv)(void) = ^{ in main() 38 //printf("Block dump %s\n", _Block_dump(vv)); in main() 40 struct Block_layout *layout = (struct Block_layout *)(void *)vv; in main() 41 printf("isa %p\n", layout->isa); in main() 42 printf("flags %x\n", layout->flags); in main() 43 printf("descriptor %p\n", layout->descriptor); in main() 44 printf("descriptor->size %d\n", layout->descriptor->size); in main() 47 void (^vvcopy)(void) = Block_copy(vv); in main()
|
| /external/python/cpython2/Objects/ |
| D | longobject.c | 20 /* For exponentiation, use the binary left-to-right algorithm 27 #define ABS(x) ((x) < 0 ? -(x) : (x)) 36 if (--_Py_Ticker < 0) { \ 43 Doesn't attempt to free the storage--in most cases, due to the nature 52 while (i > 0 && v->ob_digit[i-1] == 0) in long_normalize() 53 --i; in long_normalize() 55 Py_SIZE(v) = (Py_SIZE(v) < 0) ? -(i) : i; in long_normalize() 63 ((PY_SSIZE_T_MAX - offsetof(PyLongObject, ob_digit))/sizeof(digit)) 88 i = -(i); in _PyLong_Copy() 92 while (--i >= 0) in _PyLong_Copy() [all …]
|
| /external/swiftshader/third_party/llvm-16.0/configs/common/lib/Target/RISCV/ |
| D | RISCVGenAsmMatcher.inc | 1 /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ 7 \*===----------------------------------------------------------------------===*/ 808 // User-level names for subtarget features that participate in 815 case Feature_HasStdExtFBit: return "'F' (Single-Precision Floating-Point)"; 816 case Feature_HasStdExtDBit: return "'D' (Double-Precision Floating-Point)"; 819 case Feature_HasStdExtZihintntlBit: return "'Zihintntl' (Non-Temporal Locality Hints)"; 820 case Feature_HasStdExtZfhminBit: return "'Zfhmin' (Half-Precision Floating-Point Minimal)"; 821 case Feature_HasStdExtZfhBit: return "'Zfh' (Half-Precision Floating-Point)"; 822 …HasStdExtZfhOrZfhminBit: return "'Zfh' (Half-Precision Floating-Point) or 'Zfhmin' (Half-Precision… 830 case Feature_HasStdExtZbbBit: return "'Zbb' (Basic Bit-Manipulation)"; [all …]
|
| /external/clang/test/OpenMP/ |
| D | declare_simd_codegen.cpp | 1 // RUN: %clang_cc1 -verify -triple x86_64-apple-darwin10 -fopenmp -x c++ -emit-llvm %s -o - -femit-… 2 // RUN: %clang_cc1 -fopenmp -x c++ -triple x86_64-apple-darwin10 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -x c++ -triple x86_64-apple-darwin10 -include-pch %t -verify %s -emit-l… 4 // expected-no-diagnostics 5 // REQUIRES: x86-registered-target 30 class VV { class 44 } vv; variable 75 vv.add(res, res); in f() 76 vv.taddpf(p, p); in f() 77 vv.tadd(g, res); in f() [all …]
|