/external/llvm-project/llvm/test/CodeGen/AArch64/ |
D | arm64-neon-mul-div.ll | 1 ; RUN: llc < %s -verify-machineinstrs -mtriple=arm64-none-linux-gnu -mattr=+neon | FileCheck %s 5 ; CHECK-LABEL: mul8xi8: 6 ; CHECK: mul {{v[0-9]+}}.8b, {{v[0-9]+}}.8b, {{v[0-9]+}}.8b 12 ; CHECK-LABEL: mul16xi8: 13 ; CHECK: mul {{v[0-9]+}}.16b, {{v[0-9]+}}.16b, {{v[0-9]+}}.16b 19 ; CHECK-LABEL: mul4xi16: 20 ; CHECK: mul {{v[0-9]+}}.4h, {{v[0-9]+}}.4h, {{v[0-9]+}}.4h 26 ; CHECK-LABEL: mul8xi16: 27 ; CHECK: mul {{v[0-9]+}}.8h, {{v[0-9]+}}.8h, {{v[0-9]+}}.8h 33 ; CHECK-LABEL: mul2xi32: [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-neon-mul-div.ll | 1 ; RUN: llc < %s -verify-machineinstrs -mtriple=arm64-none-linux-gnu -mattr=+neon | FileCheck %s 5 ; CHECK-LABEL: mul8xi8: 6 ; CHECK: mul {{v[0-9]+}}.8b, {{v[0-9]+}}.8b, {{v[0-9]+}}.8b 12 ; CHECK-LABEL: mul16xi8: 13 ; CHECK: mul {{v[0-9]+}}.16b, {{v[0-9]+}}.16b, {{v[0-9]+}}.16b 19 ; CHECK-LABEL: mul4xi16: 20 ; CHECK: mul {{v[0-9]+}}.4h, {{v[0-9]+}}.4h, {{v[0-9]+}}.4h 26 ; CHECK-LABEL: mul8xi16: 27 ; CHECK: mul {{v[0-9]+}}.8h, {{v[0-9]+}}.8h, {{v[0-9]+}}.8h 33 ; CHECK-LABEL: mul2xi32: [all …]
|
/external/oss-fuzz/projects/exprtk/ |
D | exprtk_test_expressions.dict | 8 "a+-b" 11 "(a-a)" 14 "(b-b)" 24 "a+b-c" 25 "a-b-c" 32 "x*y-z" 36 "x+y-z" 38 "x-y*z" 39 "x-y/z" 42 "x/y-z" [all …]
|
/external/ImageMagick/PerlMagick/t/reference/write/read/ |
D | gradient.miff | 7 profile-icm=3144 9 …-HP cprtP3desc�lwtpt�bkpt… 10 #(-27;@EJOTY^chmrw|�������������������������…
|
/external/rust/crates/grpcio-sys/grpc/ |
D | grpc.gemspec | 1 # -*- ruby -*- 2 # encoding: utf-8 10 s.email = 'grpc-io@googlegroups.com' 14 s.license = 'Apache-2.0' 18 s.files = %w( Makefile .yardopts ) 19 s.files += %w( etc/roots.pem ) 23 # Binaries are included by rake-compiler and would lead to circular dependencies here 32 s.require_paths = %w( src/ruby/lib src/ruby/bin src/ruby/pb ) 35 s.add_dependency 'google-protobuf', '~> 3.14' 36 s.add_dependency 'googleapis-common-protos-types', '~> 1.0' [all …]
|
/external/libpcap/ |
D | scanner.l | 10 * Flex-generated scanners may only include <inttypes.h> if __STDC_VERSION__ 12 * define it with that value, because it isn't 100% C99-compliant, even 22 * from defining them. So we include <pcap/pcap-inttypes.h>, to get 25 #include <pcap/pcap-inttypes.h> 27 #include "diag-control.h" 38 %option extra-type="compiler_state_t *" 53 %option never-interactive 64 %option bison-bridge 90 #include "pcap-int.h" 111 * https://msdn.microsoft.com/en-us/library/windows/desktop/ms738520(v=vs.85).aspx [all …]
|
/external/boringssl/src/crypto/fipsmodule/bn/ |
D | miller_rabin_tests.txt | 1 # This file contains test vectors for whether B is a Miller-Rabin composite 2 # witness for W. W must be odd and B must satisfy 1 <= B <= W-1. 6 # def is_miller_rabin_witness(w, b): 7 # # Variable names taken from FIPS 186-4 C.3.1 but the algorithm skips a 9 # m = w - 1 14 # # b is a composite witness for w iff the following are true: 15 # # - b^m != 1 (mod w) 16 # # - b^(m*2^j) != -1 (mod w), for 0 <= j < a 17 # z = pow(b, m, w) 19 # # b^m = 1 (mod w) [all …]
|
/external/llvm-project/llvm/unittests/ADT/ |
D | PriorityWorklistTest.cpp | 1 //===- llvm/unittest/ADT/PriorityWorklist.cpp -----------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 28 TypeParam W; in TYPED_TEST() local 29 EXPECT_TRUE(W.empty()); in TYPED_TEST() 30 EXPECT_EQ(0u, W.size()); in TYPED_TEST() 31 EXPECT_FALSE(W.count(42)); in TYPED_TEST() 33 EXPECT_TRUE(W.insert(21)); in TYPED_TEST() 34 EXPECT_TRUE(W.insert(42)); in TYPED_TEST() [all …]
|
/external/llvm-project/llvm/test/MC/RISCV/ |
D | rva-aliases-valid.s | 1 # RUN: llvm-mc %s -triple=riscv32 -mattr=+a -riscv-no-aliases \ 2 # RUN: | FileCheck -check-prefixes=CHECK-S-NOALIAS,CHECK-S-OBJ-NOALIAS %s 3 # RUN: llvm-mc %s -triple=riscv32 -mattr=+a \ 4 # RUN: | FileCheck -check-prefixes=CHECK-S,CHECK-S-OBJ %s 5 # RUN: llvm-mc %s -triple=riscv64 -mattr=+a -riscv-no-aliases\ 6 # RUN: | FileCheck -check-prefixes=CHECK-S-NOALIAS,CHECK-S-OBJ-NOALIAS %s 7 # RUN: llvm-mc %s -triple=riscv64 -mattr=+a \ 8 # RUN: | FileCheck -check-prefixes=CHECK-S,CHECK-S-OBJ %s 9 # RUN: llvm-mc -filetype=obj -triple riscv32 -mattr=+a < %s \ 10 # RUN: | llvm-objdump -d --mattr=+a -M no-aliases - \ [all …]
|
/external/ltp/runtest/ |
D | ltp-aiodio.part2 | 2 ADSP001 aiodio_sparse -s 180k 3 ADSP002 aiodio_sparse -dd -s 1751k -w 11k 4 ADSP003 aiodio_sparse -i 9 -d -s 180k -w 18k 5 ADSP004 aiodio_sparse -i 2 -a 2k -w 2k -s 4k -n 2 6 ADSP005 aiodio_sparse -i 2 -a 4k -w 4k -s 8k -n 2 7 ADSP006 aiodio_sparse -i 2 -a 4k -w 4k -s 8k -n 2 8 ADSP007 aiodio_sparse -i 4 -a 8k -w 8k -s 32k -n 2 9 ADSP008 aiodio_sparse -i 4 -a 8k -w 16k -s 64k -n 2 10 ADSP009 aiodio_sparse -i 4 -a 8k -w 32k -s 128k -n 2 11 ADSP010 aiodio_sparse -i 4 -a 8k -w 64k -s 256k -n 2 [all …]
|
/external/llvm-project/libcxx/test/std/localization/locale.stdcvt/ |
D | codecvt_utf16_in.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 34 char32_t w = 0; in main() local 39 std::codecvt_base::result r = c.in(m, n, n+4, np, &w, &w+1, wp); in main() 41 assert(wp == &w+1); in main() 43 assert(w == 0x40003); in main() 47 r = c.in(m, n, n+2, np, &w, &w+1, wp); in main() 49 assert(wp == &w+1); in main() 51 assert(w == 0x1005); in main() [all …]
|
D | codecvt_utf8_in.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 34 char32_t w = 0; in main() local 39 std::codecvt_base::result r = c.in(m, n, n+4, np, &w, &w+1, wp); in main() 41 assert(wp == &w+1); in main() 43 assert(w == 0x40003); in main() 48 r = c.in(m, n, n+3, np, &w, &w+1, wp); in main() 50 assert(wp == &w+1); in main() 52 assert(w == 0x1005); in main() [all …]
|
/external/libcxx/test/std/localization/locale.stdcvt/ |
D | codecvt_utf16_in.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 33 char32_t w = 0; in main() local 38 std::codecvt_base::result r = c.in(m, n, n+4, np, &w, &w+1, wp); in main() 40 assert(wp == &w+1); in main() 42 assert(w == 0x40003); in main() 46 r = c.in(m, n, n+2, np, &w, &w+1, wp); in main() 48 assert(wp == &w+1); in main() 50 assert(w == 0x1005); in main() 54 r = c.in(m, n, n+2, np, &w, &w+1, wp); in main() [all …]
|
D | codecvt_utf8_in.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 33 char32_t w = 0; in main() local 38 std::codecvt_base::result r = c.in(m, n, n+4, np, &w, &w+1, wp); in main() 40 assert(wp == &w+1); in main() 42 assert(w == 0x40003); in main() 47 r = c.in(m, n, n+3, np, &w, &w+1, wp); in main() 49 assert(wp == &w+1); in main() 51 assert(w == 0x1005); in main() 55 r = c.in(m, n, n+2, np, &w, &w+1, wp); in main() [all …]
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | SymbolDumper.cpp | 1 //===-- SymbolDumper.cpp - CodeView symbol info dumper ----------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 32 ScopedPrinter &W, bool PrintRecordBytes) in CVSymbolDumperImpl() argument 34 W(W), PrintRecordBytes(PrintRecordBytes), InFunctionScope(false) {} in CVSymbolDumperImpl() 53 ScopedPrinter &W; member in __anonce6ef81c0111::CVSymbolDumperImpl 62 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange() 64 ObjDelegate->printRelocatedField("OffsetStart", RelocationOffset, in printLocalVariableAddrRange() 66 W.printHex("ISectStart", Range.ISectStart); in printLocalVariableAddrRange() 67 W.printHex("Range", Range.Range); in printLocalVariableAddrRange() 73 ListScope S(W, "LocalVariableAddrGap"); in printLocalVariableAddrGap() [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_worklist.c | 31 nir_block_worklist_init(nir_block_worklist *w, unsigned num_blocks, in nir_block_worklist_init() argument 34 w->size = num_blocks; in nir_block_worklist_init() 35 w->count = 0; in nir_block_worklist_init() 36 w->start = 0; in nir_block_worklist_init() 38 w->blocks_present = rzalloc_array(mem_ctx, BITSET_WORD, in nir_block_worklist_init() 40 w->blocks = rzalloc_array(mem_ctx, nir_block *, num_blocks); in nir_block_worklist_init() 44 nir_block_worklist_fini(nir_block_worklist *w) in nir_block_worklist_fini() argument 46 ralloc_free(w->blocks_present); in nir_block_worklist_fini() 47 ralloc_free(w->blocks); in nir_block_worklist_fini() 51 nir_block_worklist_add_all(nir_block_worklist *w, nir_function_impl *impl) in nir_block_worklist_add_all() argument [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_audioop.py | 22 maxvalues = {w: (1 << (8 * w - 1)) - 1 for w in (1, 2, 4)} 23 minvalues = {w: -1 << (8 * w - 1) for w in (1, 2, 4)} 27 2: packs[2](0, 0x1234, 0x4567, -0x4567, 0x7fff, -0x8000, -1), 28 4: packs[4](0, 0x12345678, 0x456789ab, -0x456789ab, 29 0x7fffffff, -0x80000000, -1), 42 for w in 1, 2, 4: 43 self.assertEqual(audioop.max(b'', w), 0) 44 p = packs[w] 45 self.assertEqual(audioop.max(p(5), w), 5) 46 self.assertEqual(audioop.max(p(5, -8, -1), w), 8) [all …]
|
/external/llvm/unittests/ADT/ |
D | PriorityWorklistTest.cpp | 1 //===- llvm/unittest/ADT/PriorityWorklist.cpp -----------------------------===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 27 TypeParam W; in TYPED_TEST() local 28 EXPECT_TRUE(W.empty()); in TYPED_TEST() 29 EXPECT_EQ(0u, W.size()); in TYPED_TEST() 30 EXPECT_FALSE(W.count(42)); in TYPED_TEST() 32 EXPECT_TRUE(W.insert(21)); in TYPED_TEST() 33 EXPECT_TRUE(W.insert(42)); in TYPED_TEST() 34 EXPECT_TRUE(W.insert(17)); in TYPED_TEST() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_audioop.py | 12 packs = {w: (lambda *data, width=w: pack(width, data)) for w in (1, 2, 3, 4)} 13 maxvalues = {w: (1 << (8 * w - 1)) - 1 for w in (1, 2, 3, 4)} 14 minvalues = {w: -1 << (8 * w - 1) for w in (1, 2, 3, 4)} 18 2: packs[2](0, 0x1234, 0x4567, -0x4567, 0x7fff, -0x8000, -1), 19 3: packs[3](0, 0x123456, 0x456789, -0x456789, 0x7fffff, -0x800000, -1), 20 4: packs[4](0, 0x12345678, 0x456789ab, -0x456789ab, 21 0x7fffffff, -0x80000000, -1), 35 for w in 1, 2, 3, 4: 36 self.assertEqual(audioop.max(b'', w), 0) 37 self.assertEqual(audioop.max(bytearray(), w), 0) [all …]
|
/external/rust/crates/ppv-lite86/src/ |
D | soft.rs | 1 //! Implement 256- and 512- bit in terms of 128-bit, for machines without native wide SIMD. 10 pub struct x2<W, G>(pub [W; 2], PhantomData<G>); 11 impl<W, G> x2<W, G> { 13 pub fn new(xs: [W; 2]) -> Self { in new() 19 impl<W: $trait + Copy, G> $trait for x2<W, G> { 20 type Output = x2<W::Output, G>; 22 fn $fn(self, rhs: Self) -> Self::Output { 30 impl<W: $trait + Copy, G> $trait for x2<W, G> { 42 fn $fn(self) -> Self { 47 impl<W, G> RotateEachWord32 for x2<W, G> [all …]
|
/external/rust/crates/protobuf-codegen/src/ |
D | message.rs | 25 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() 32 pub fn default_instance(&self, customize: &Customize) -> String { in default_instance() 56 ) -> MessageGen<'a> { in new() 84 fn expose_oneof(&self) -> bool { in expose_oneof() 88 fn oneofs(&'a self) -> Vec<OneofGen<'a>> { in oneofs() 96 fn required_fields(&'a self) -> Vec<&'a FieldGen> { in required_fields() 106 fn message_fields(&'a self) -> Vec<&'a FieldGen> { in message_fields() 113 fn fields_except_oneof(&'a self) -> Vec<&'a FieldGen> { in fields_except_oneof() 117 fn fields_except_group(&'a self) -> Vec<&'a FieldGen> { in fields_except_group() 124 fn fields_except_oneof_and_group(&'a self) -> Vec<&'a FieldGen> { in fields_except_oneof_and_group() [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | SymbolDumper.cpp | 1 //===-- SymbolDumper.cpp - CodeView symbol info dumper ----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 34 ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes) in CVSymbolDumperImpl() argument 35 : Types(Types), ObjDelegate(ObjDelegate), W(W), CompilationCPUType(CPU), in CVSymbolDumperImpl() 58 ScopedPrinter &W; member in __anone55dc66a0111::CVSymbolDumperImpl 82 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange() 84 ObjDelegate->printRelocatedField("OffsetStart", RelocationOffset, in printLocalVariableAddrRange() 86 W.printHex("ISectStart", Range.ISectStart); in printLocalVariableAddrRange() 87 W.printHex("Range", Range.Range); in printLocalVariableAddrRange() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | SymbolDumper.cpp | 1 //===-- SymbolDumper.cpp - CodeView symbol info dumper ----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 34 ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes) in CVSymbolDumperImpl() argument 35 : Types(Types), ObjDelegate(ObjDelegate), W(W), CompilationCPUType(CPU), in CVSymbolDumperImpl() 58 ScopedPrinter &W; member in __anone7163cfe0111::CVSymbolDumperImpl 82 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange() 84 ObjDelegate->printRelocatedField("OffsetStart", RelocationOffset, in printLocalVariableAddrRange() 86 W.printHex("ISectStart", Range.ISectStart); in printLocalVariableAddrRange() 87 W.printHex("Range", Range.Range); in printLocalVariableAddrRange() [all …]
|
/external/bcc/tools/ |
D | biotop_example.txt | 8 Tracing... Output every 1 secs. Hit Ctrl-C to end 16 326 jbd2/xvda1-8 W 202 1 xvda1 3 168 3.00 17 1880 supervise W 202 1 xvda1 2 8 6.71 18 1873 supervise W 202 1 xvda1 2 8 2.51 19 1871 supervise W 202 1 xvda1 2 8 1.57 20 1876 supervise W 202 1 xvda1 2 8 1.22 21 1892 supervise W 202 1 xvda1 2 8 0.62 22 1878 supervise W 202 1 xvda1 2 8 0.78 23 1886 supervise W 202 1 xvda1 2 8 1.30 24 1894 supervise W 202 1 xvda1 2 8 3.46 [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/ |
D | peeling.cpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 49 context->module()->ToBinary(&bin, true); in Match() 64 Generated from the following GLSL + --eliminate-local-multi-store 75 Second test (with a common sub-expression elimination): 113 // Build the given SPIR-V program in |text|, take the first loop in the first in TEST_F() 121 Module* module = context->module(); in TEST_F() 124 Function& f = *module->begin(); in TEST_F() 125 LoopDescriptor& ld = *context->GetLoopDescriptor(&f); in TEST_F() 131 loop_count = context->get_def_use_mgr()->GetDef(loop_count_id); in TEST_F() 435 Generated from the following GLSL + --eliminate-local-multi-store [all …]
|