Home
last modified time | relevance | path

Searched refs:indirection (Results 1 – 25 of 105) sorted by relevance

12345

/external/XNNPACK/test/
Dibilinear-microkernel-tester.h99 std::vector<const float*> indirection(pixels() * 4); in Test()
100 std::vector<float> input(XNN_EXTRA_BYTES / sizeof(float) + indirection.size() * channels()); in Test()
110 for (size_t i = 0; i < indirection.size(); i++) { in Test()
111 indirection[i] = input.data() + i * channels() - input_offset(); in Test()
113 std::shuffle(indirection.begin(), indirection.end(), rng); in Test()
121 indirection[i * 4 + 0][c + input_offset()] * (1.0f - alpha_h) * (1.0f - alpha_v) + in Test()
122 indirection[i * 4 + 1][c + input_offset()] * alpha_h * (1.0f - alpha_v) + in Test()
123 indirection[i * 4 + 2][c + input_offset()] * (1.0f - alpha_h) * alpha_v + in Test()
124 indirection[i * 4 + 3][c + input_offset()] * alpha_h * alpha_v; in Test()
131 indirection.data(), input_offset() * sizeof(float), in Test()
[all …]
Ddwconv-microkernel-tester.h178 std::vector<const uint8_t*> indirection((width() - 1) * step() + kr());
179 std::vector<uint8_t> input(XNN_EXTRA_BYTES / sizeof(uint8_t) + indirection.size() * channels());
204 for (size_t i = 0; i < indirection.size(); i++) {
205 indirection[i] = input.data() + i * channels() - input_offset();
207 std::shuffle(indirection.begin(), indirection.end(), rng);
209 for (size_t i = 0; i < indirection.size(); i += kr()) {
210 indirection[i + zero_index()] = zero.data();
219 if (indirection[x * step() + k] != zero.data()) {
221 … (int32_t(indirection[x * step() + k][c + input_offset()]) - int32_t(input_zero_point())) *
264 indirection.data(), packed_weights.data(), output.data(),
[all …]
/external/llvm-project/libc/include/sys/
Dsyscall.h.def9 <!> If syscall.h were a linux only file, then we do not need this indirection.
11 <!> with its own special syscall numbers, we use this indirection.
/external/llvm-project/flang/lib/Semantics/
Drewrite-parse-tree.cpp125 [](auto &&indirection) { in Post()
126 return parser::Expr{std::move(indirection)}; in Post()
164 [](auto &&indirection) { in Post() argument
165 return parser::Expr{std::move(indirection)}; in Post()
/external/llvm-project/clang/test/CodeGenObjC/
Dgnustep2-proto.m24 // indirection variable.
32 // Check that we load from the indirection variable on protocol references.
Ddebug-info-ivars-indirect.m24 // another layer of indirection
/external/mesa3d/docs/
Dopengles.rst37 OpenGL ES has an additional indirection when dispatching functions
44 The indirection serves several purposes
/external/llvm-project/lldb/test/API/commands/command/source/
D.lldb1 # one more level of indirection to stress the command interpreter reentrancy
/external/tensorflow/tensorflow/core/platform/
Drules_cc.bzl1 """Provides an indirection layer to bazel cc_rules"""
/external/tensorflow/tensorflow/core/platform/default/
Dcuda_build_defs.bzl5 # We perform this indirection so that the copybara tool can distinguish this
/external/dagger2/javatests/dagger/functional/membersinject/
DMembersInjectionOrderingTest.java28 public void indirection() { in indirection() method in MembersInjectionOrderingTest
/external/llvm-project/flang/lib/Parser/
Dtools.cpp60 [](const auto &indirection) -> const Name & { in GetLastName() argument
61 return GetLastName(indirection.value()); in GetLastName()
/external/igt-gpu-tools/tests/i915/
Dgem_busy.c335 uint32_t indirection[nhandles]; in close_race() local
339 indirection[i] = i; in close_race()
345 igt_permute_array(indirection, nhandles, xchg_u32); in close_race()
348 busy.handle = handles[indirection[i]]; in close_race()
/external/igt-gpu-tools/
DTODO.rst23 These are just needless indirection for writing tests. We can keep the #defines
/external/clang/test/CodeGenObjC/
Ddebug-info-ivars-indirect.m24 // another layer of indirection
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.matrixindex.frag20 // as given in comments to the right of each line. Note that the first indirection into a
/external/deqp-deps/glslang/Test/
Dhlsl.matrixindex.frag20 // as given in comments to the right of each line. Note that the first indirection into a
/external/llvm-project/llvm/test/CodeGen/X86/
Dfast-isel-mem.ll30 ;; dso_preemptable src is loaded via GOT indirection.
/external/rust/cxx/book/src/
Dextern-rust.md26 indirection.
45 a similar way but with Box as the indirection rather than &mut.
/external/llvm-project/lld/test/ELF/
Dppc64-toc-relax-constants.s46 # After toc-indirection to toc-relative relaxation, it is loaded using an
/external/libchrome/base/android/java/templates/
DBuildConfig.template62 // This layer of indirection is necessary to make the resource dependency
/external/llvm/test/CodeGen/AArch64/
Dpic-eh-stubs.ll6 ; and not use the indirection, but this isn't what LLVM does right now.
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dpic-eh-stubs.ll6 ; and not use the indirection, but this isn't what LLVM does right now.
/external/libchrome/libchrome_tools/patch/
Dbuildflag_header.patch32 + // This layer of indirection is necessary to make the resource dependency
/external/python/cffi/doc/misc/
Dparse_c_type.rst56 simple indirection: the arg is the index to look further in

12345