| /external/llvm/tools/llvm-readobj/ |
| D | ARMWinEHPrinter.cpp | 1 //===-- ARMWinEHPrinter.cpp - Windows on ARM EH Data Printer ----*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 16 // RuntimeFunction's remaining 30-bits and can fully describe the entire frame. 18 // +---------------------------------------+ 20 // +---------------------------------------+ 22 // +---------------------------------------+ 37 // the associated exception handler. Additionally, the entry contains byte-code 40 // +---------------------------------------+ 42 // +---------------------------------------+ 44 // +---------------------------------------+ [all …]
|
| /external/XNNPACK/test/ |
| D | convolution-test-helpers.cc | 3 // This source code is licensed under the BSD-style license found in the 6 #include "convolution-test-helpers.h" 52 for (size_t oc = 0; oc < group_output_channels; oc++) { in compute_convolution_qs8_reference_results() local 53 …ators[(((i * output_height + oy) * output_width + ox) * groups + g) * group_output_channels + oc] = in compute_convolution_qs8_reference_results() 54 bias[g * group_output_channels + oc]; in compute_convolution_qs8_reference_results() 60 const size_t iy = oy * subsampling_height + ky * dilation_height - input_padding_top; in compute_convolution_qs8_reference_results() 63 const size_t ix = ox * subsampling_width + kx * dilation_width - input_padding_left; in compute_convolution_qs8_reference_results() 66 for (size_t oc = 0; oc < group_output_channels; oc++) { in compute_convolution_qs8_reference_results() local 68 …tors[(((i * output_height + oy) * output_width + ox) * groups + g) * group_output_channels + oc] += in compute_convolution_qs8_reference_results() 70 g * group_input_channels + ic]) - in compute_convolution_qs8_reference_results() [all …]
|
| D | fully-connected-operator-tester.h | 6 // This source code is licensed under the BSD-style license found in the 37 this->input_channels_ = input_channels; in input_channels() 42 return this->input_channels_; in input_channels() 47 this->output_channels_ = output_channels; in output_channels() 52 return this->output_channels_; in output_channels() 57 this->batch_size_ = batch_size; in batch_size() 62 return this->batch_size_; in batch_size() 67 this->input_stride_ = input_stride; in input_stride() 72 if (this->input_stride_ == 0) { in input_stride() 75 assert(this->input_stride_ >= input_channels()); in input_stride() [all …]
|
| D | depth-to-space-operator-tester.h | 3 // This source code is licensed under the BSD-style license found in the 27 this->input_height_ = input_height; in input_size() 28 this->input_width_ = input_width; in input_size() 34 this->input_height_ = input_height; in input_height() 39 return this->input_height_; in input_height() 44 this->input_width_ = input_width; in input_width() 49 return this->input_width_; in input_width() 62 this->block_size_ = block_size; in block_size() 67 return this->block_size_; in block_size() 76 this->output_channels_ = output_channels; in output_channels() [all …]
|
| D | deconvolution-operator-tester.h | 6 // This source code is licensed under the BSD-style license found in the 31 return a > b ? a - b : T(0); in doz() 44 this->padding_top_ = padding; in padding() 45 this->padding_right_ = padding; in padding() 46 this->padding_bottom_ = padding; in padding() 47 this->padding_left_ = padding; in padding() 52 this->padding_top_ = padding_height; in padding_height() 53 this->padding_bottom_ = padding_height; in padding_height() 58 return this->padding_top_ + this->padding_bottom_; in padding_height() 62 this->padding_right_ = padding_width; in padding_width() [all …]
|
| D | space-to-depth-operator-tester.h | 3 // This source code is licensed under the BSD-style license found in the 27 this->input_height_ = input_height; in input_size() 28 this->input_width_ = input_width; in input_size() 34 this->input_height_ = input_height; in input_height() 39 return this->input_height_; in input_height() 44 this->input_width_ = input_width; in input_width() 49 return this->input_width_; in input_width() 64 this->block_size_ = block_size; in block_size() 69 return this->block_size_; in block_size() 74 this->input_channels_ = input_channels; in input_channels() [all …]
|
| D | convolution-operator-tester.h | 6 // This source code is licensed under the BSD-style license found in the 22 #include "convolution-test-helpers.h" 44 this->padding_tf_same_ = padding_same; in padding_tf_same() 49 return this->padding_tf_same_; in padding_tf_same() 54 this->padding_top_ = padding; in padding() 55 this->padding_right_ = padding; in padding() 56 this->padding_bottom_ = padding; in padding() 57 this->padding_left_ = padding; in padding() 63 this->padding_top_ = padding_height; in padding() 64 this->padding_right_ = padding_width; in padding() [all …]
|
| D | spmm-microkernel-tester.h | 3 // This source code is licensed under the BSD-style license found in the 21 #include <xnnpack/aligned-allocator.h> 23 #include <xnnpack/microparams-init.h> 34 this->mr_ = mr; in mr() 39 return this->mr_; in mr() 43 this->nr_ = nr; in nr() 48 return this->nr_; in nr() 52 this->m_ = m; in m() 57 return this->m_; in m() 61 this->n_ = n; in n() [all …]
|
| D | fully-connected.cc | 3 // This source code is licensed under the BSD-style license found in the 35 i32dist = std::uniform_int_distribution<int32_t>(-10000, 10000); in FullyConnectedTestBase() 41 …std::uniform_int_distribution<int32_t>(-std::numeric_limits<uint8_t>::max(), std::numeric_limits<u… in FullyConnectedTestBase() 43 output_min = -std::numeric_limits<float>::infinity(); in FullyConnectedTestBase() 53 output_dims[output_dims.size() - 1] = output_channels; in FullyConnectedTestBase() 114 for (size_t i = 0; i < this->batch_size; i++) { in initialize_accumulators_from_bias() 115 for (size_t oc = 0; oc < this->output_channels; oc++) { in initialize_accumulators_from_bias() local 116 this->accumulators[i * this->output_channels + oc] = this->bias[oc]; in initialize_accumulators_from_bias() 164 ASSERT_EQ(subgraph->num_nodes, 1); in TEST_F() 165 const struct xnn_node* node = &subgraph->nodes[0]; in TEST_F() [all …]
|
| D | conv-hwc2chw-microkernel-tester.h | 3 // This source code is licensed under the BSD-style license found in the 22 #include <xnnpack/aligned-allocator.h> 25 #include <xnnpack/microparams-init.h> 36 this->output_channels_tile_ = output_channels_tile; in output_channels_tile() 41 return this->output_channels_tile_; in output_channels_tile() 45 this->padding_top_ = padding; in padding() 46 this->padding_right_ = padding; in padding() 47 this->padding_bottom_ = padding; in padding() 48 this->padding_left_ = padding; in padding() 53 this->padding_top_ = padding_height; in padding_height() [all …]
|
| /external/XNNPACK/src/operators/ |
| D | convolution-nchw.c | 3 // This source code is licensed under the BSD-style license found in the 23 #include <xnnpack/microparams-init.h> 64 …led to create %s operator with %" PRIu32 "x%" PRIu32 " kernel: kernel dimensions must be non-zero", in xnn_create_convolution2d_nchw_f32() 71 …ate %s operator with %" PRIu32 "x%" PRIu32 " subsampling: subsampling dimensions must be non-zero", in xnn_create_convolution2d_nchw_f32() 78 …to create %s operator with %" PRIu32 "x%" PRIu32 " dilation: dilation dimensions must be non-zero", in xnn_create_convolution2d_nchw_f32() 85 "failed to create %s operator with %" PRIu32 " groups: number of groups must be non-zero", in xnn_create_convolution2d_nchw_f32() 92 …iled to create %s operator with %zu input channels per group: number of channels must be non-zero", in xnn_create_convolution2d_nchw_f32() 99 …led to create %s operator with %zu output channels per group: number of channels must be non-zero", in xnn_create_convolution2d_nchw_f32() 126 "failed to create %s operator with NaN output lower bound: lower bound must be non-NaN", in xnn_create_convolution2d_nchw_f32() 133 "failed to create %s operator with NaN output upper bound: upper bound must be non-NaN", in xnn_create_convolution2d_nchw_f32() [all …]
|
| /external/bcc/libbpf-tools/ |
| D | oomkill.bpf.c | 1 // SPDX-License-Identifier: GPL-2.0 12 int BPF_KPROBE(oom_kill_process, struct oom_control *oc, const char *message) in BPF_KPROBE() argument 20 data->fpid = bpf_get_current_pid_tgid() >> 32; in BPF_KPROBE() 21 data->tpid = BPF_CORE_READ(oc, chosen, tgid); in BPF_KPROBE() 22 data->pages = BPF_CORE_READ(oc, totalpages); in BPF_KPROBE() 23 bpf_get_current_comm(&data->fcomm, sizeof(data->fcomm)); in BPF_KPROBE() 24 bpf_probe_read_kernel(&data->tcomm, sizeof(data->tcomm), BPF_CORE_READ(oc, chosen, comm)); in BPF_KPROBE()
|
| /external/libcxx/test/std/experimental/memory/memory.resource.aliases/ |
| D | header_set_synop.pass.cpp | 1 // -*- C++ -*- 2 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 38 using OC = std::greater<V>; in main() typedef 45 using StdSet = std::set<V, OC, pmr::polymorphic_allocator<V>>; in main() 46 using PmrSet = pmr::set<V, OC>; in main() 59 using StdSet = std::multiset<V, OC, pmr::polymorphic_allocator<V>>; in main() 60 using PmrSet = pmr::multiset<V, OC>; in main()
|
| D | header_map_synop.pass.cpp | 1 // -*- C++ -*- 2 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 39 using OC = std::greater<int>; in main() typedef 47 using StdMap = std::map<K, V, OC, pmr::polymorphic_allocator<P>>; in main() 48 using PmrMap = pmr::map<K, V, OC>; in main() 61 using StdMap = std::multimap<K, V, OC, pmr::polymorphic_allocator<P>>; in main() 62 using PmrMap = pmr::multimap<K, V, OC>; in main()
|
| /external/cronet/third_party/libc++/src/test/std/utilities/utility/mem.res/mem.res.aliases/ |
| D | header_set_synop.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // TODO: Change to XFAIL once https://github.com/llvm/llvm-project/issues/40340 is fixed 11 // UNSUPPORTED: availability-pmr-missing 34 using OC = std::greater<V>; in main() typedef 41 using StdSet = std::set<V, OC, std::pmr::polymorphic_allocator<V>>; in main() 42 using PmrSet = std::pmr::set<V, OC>; in main() 55 using StdSet = std::multiset<V, OC, std::pmr::polymorphic_allocator<V>>; in main() 56 using PmrSet = std::pmr::multiset<V, OC>; in main()
|
| D | header_map_synop.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // TODO: Change to XFAIL once https://github.com/llvm/llvm-project/issues/40340 is fixed 11 // UNSUPPORTED: availability-pmr-missing 35 using OC = std::greater<int>; in main() typedef 43 using StdMap = std::map<K, V, OC, std::pmr::polymorphic_allocator<P>>; in main() 44 using PmrMap = std::pmr::map<K, V, OC>; in main() 57 using StdMap = std::multimap<K, V, OC, std::pmr::polymorphic_allocator<P>>; in main() 58 using PmrMap = std::pmr::multimap<K, V, OC>; in main()
|
| /external/aac/libDRCdec/src/ |
| D | FDK_drcDecLib.cpp | 1 /* ----------------------------------------------------------------------------- 4 © Copyright 1995 - 2019 Fraunhofer-Gesellschaft zur Förderung der angewandten 13 AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient 14 general perceptual audio codecs. AAC-ELD is considered the best-performing 15 full-bandwidth communications codec by independent studies and is widely 29 Commercially-licensed AAC software libraries, including floating-point versions 58 must be replaced by the term "Third-Party Modified Version of the Fraunhofer FDK 65 Fraunhofer provides no warranty of patent non-infringement with respect to this 87 Attention: Audio and Multimedia Departments - FDK AAC LL 92 amm-info@iis.fraunhofer.de [all …]
|
| /external/llvm/test/CodeGen/SystemZ/ |
| D | or-08.ll | 1 ; Test memory-to-memory ORs. 3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s 7 ; CHECK-LABEL: f1: 8 ; CHECK: oc 1(1,%r2), 0(%r2) 20 ; CHECK-LABEL: f2: 21 ; CHECK: oc 2(2,%r2), 0(%r2) 33 ; CHECK-LABEL: f3: 34 ; CHECK: oc 4(4,%r2), 0(%r2) 46 ; CHECK-LABEL: f4: 47 ; CHECK: oc 8(8,%r2), 0(%r2) [all …]
|
| /external/clang/test/CXX/expr/expr.mptr.oper/ |
| D | p5.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -verify %s 19 const X0 &oc, in test_object_cvquals() argument 22 (p->*pm)(); in test_object_cvquals() 23 (p->*pmc)(); in test_object_cvquals() 24 (p->*pmv)(); in test_object_cvquals() 25 (p->*pmcv)(); in test_object_cvquals() 27 …(pc->*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attrib… in test_object_cvquals() 28 (pc->*pmc)(); in test_object_cvquals() 29 …(pc->*pmv)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attri… in test_object_cvquals() 30 (pc->*pmcv)(); in test_object_cvquals() [all …]
|
| /external/tensorflow/tensorflow/lite/delegates/xnnpack/ |
| D | fully_connected_tester.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 44 input_shape_.cend() - 1); in OutputShape() 81 ASSERT_EQ(delegate_interpreter->inputs().size(), 1); in Test() 82 ASSERT_EQ(default_interpreter->inputs().size(), 1); in Test() 84 ASSERT_EQ(delegate_interpreter->outputs().size(), 1); in Test() 85 ASSERT_EQ(default_interpreter->outputs().size(), 1); in Test() 87 ASSERT_EQ(delegate_interpreter->AllocateTensors(), kTfLiteOk); in Test() 88 ASSERT_EQ(default_interpreter->AllocateTensors(), kTfLiteOk); in Test() 90 ASSERT_EQ(delegate_interpreter->ModifyGraphWithDelegate(delegate), kTfLiteOk); in Test() 96 float* default_input_data = default_interpreter->typed_input_tensor<float>(0); in Test() [all …]
|
| /external/mksh/src/ |
| D | mksh.1 | 3 .\"- 23 .\"- 27 .\" * - generates ‐ in gnroff, \- generates −, so .tr it to - 28 .\" thus use - for hyphens and \- for minus signs and option dashes 29 .\" * ~ is size-reduced and placed atop in groff, so use \*(TI 30 .\" * ^ is size-reduced and placed atop in groff, so use \*(ha 35 .\" be interpreted as punctuation, and especially with two-letter words 42 . if \*[.T]ascii .tr \-\N'45' 43 . if \*[.T]latin1 .tr \-\N'45' 44 . if \*[.T]utf8 .tr \-\N'45' [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/VE/ |
| D | VECustomDAG.h | 1 //===------------ VECustomDAG.h - VE Custom DAG Nodes -----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 46 /// The VE backend uses a two-staged process to lower and legalize vector 62 // legalized since each element occupies a 64bit chunk - there is no 69 // demands - that is, the wrapped AVL is the correct setting for the VL 156 SDValue getNode(unsigned OC, SDVTList VTL, ArrayRef<SDValue> OpV, 158 auto N = DAG.getNode(OC, DL, VTL, OpV); 160 N->setFlags(*Flags); [all …]
|
| D | VECustomDAG.cpp | 1 //===-- VECustomDAG.h - VE Custom DAG Nodes ------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 61 /// \returns the VVP_* SDNode opcode corresponsing to \p OC. 86 auto VVPOpc = getVVPOpcode(Op->getOpcode()); in maySafelyIgnoreMask() 87 auto Opc = VVPOpc.value_or(Op->getOpcode()); in maySafelyIgnoreMask() 214 bool isLegalAVL(SDValue AVL) { return AVL->getOpcode() == VEISD::LEGALAVL; } in isLegalAVL() 220 return MemN->getChain(); in getNodeChain() 222 switch (Op->getOpcode()) { in getNodeChain() [all …]
|
| /external/llvm/test/Bindings/OCaml/ |
| D | diagnostic_handler.ml | 2 * RUN: %ocamlc -g -w +A -package llvm.bitreader -linkpkg %T/diagnostic_handler.ml -o %t 4 * RUN: %ocamlopt -g -w +A -package llvm.bitreader -linkpkg %T/diagnostic_handler.ml -o %t 15 | Error -> Printf.printf "Diagnostic severity is Error\n" 16 | Warning -> Printf.printf "Diagnostic severity is Warning\n" 17 | Remark -> Printf.printf "Diagnostic severity is Remark\n" 18 | Note -> Printf.printf "Diagnostic severity is Note\n" 27 begin let oc = open_out fn in 28 output_string oc "not a bitcode file\n"; 29 close_out oc 40 with x -> [all …]
|
| /external/guava/android/guava/src/com/google/thirdparty/publicsuffix/ |
| D | PublicSuffixPatterns.java | 1 // GENERATED FILE - DO NOT EDIT 10 * http://www.apache.org/licenses/LICENSE-2.0 26 * <b>Do not use this class directly. For access to public-suffix information, use {@link 30 * determining whether a given domain name is an effective top-level domain (public suffix). 32 * <p>Because this class is used in GWT, the data members are stored in a space-efficient manner. 45 …--nx?27qjf--nx?e9ebgn--nx?nbb0c7abgm--nx??1&2oa08--nx?apg6qpcbgm--nx?hbbgm--nx?rdceqa08--nx??2&8ug… 46 …--nx?7a0oi--nx?a!.&ffo?gro?moc?ten?uwu,?1p--nx?bud?dnuyh?tnihc??b!.&gro?moc?oc?ro?ude??ahduba?o!m!… 47 …-3s,spif-&3s,tniopssecca-3s,?tniopssecca-3s,?spif-&3s,tniopssecca-3s,?tniopssecca-3s,??em.&3s,adbm… 48 …-&l--nx?s--nx??2-h--nx??g&10aq0-ineve--nx?av?ev?lot?r&ajn&evvad?u??ájn&evvad?u????h?iz-lf--nx?j&dd… 49 …--nx?462a0t7--nx?678z7vq5d--nx?94ptr5--nx?a?mpopilol,?d&-2,17sql1--nx?3thr--nx?5&20xbz--nx?40sj5--… [all …]
|