/external/llvm-project/llvm/test/tools/llvm-objdump/ |
D | embedded-source.test | 1 ; RUN: llvm-objdump -d --line-numbers %p/Inputs/embedded-source | FileCheck --check-prefix=LINE %s 2 ; RUN: llvm-objdump -d --source %p/Inputs/embedded-source | FileCheck --check-prefix=SOURCE %s 5 ; Source for embedded-source.c 7 ; clang -gdwarf-5 -gembed-source embedded-source.c -o embedded-source 17 ; LINE-NEXT: ; {{.*}}embedded-source.c:1 19 ; LINE: ; {{.*}}embedded-source.c:2 21 ; LINE: ; {{.*}}embedded-source.c:3 23 ; LINE: ; {{.*}}embedded-source.c:4
|
/external/OpenCL-CTS/test_conformance/device_execution/ |
D | device_info.cpp | 33 int embedded = 0; in test_device_info() local 41 if(ret_len < sizeof(profile) && strcmp(profile, "FULL_PROFILE") == 0) embedded = 0; in test_device_info() 42 else if(ret_len < sizeof(profile) && strcmp(profile, "EMBEDDED_PROFILE") == 0) embedded = 1; in test_device_info() 80 if(size < (embedded ? MAX_DEVICE_EMBEDDED_QUEUE_SIZE : MAX_DEVICE_QUEUE_SIZE)) in test_device_info() 82 …log_error("Device command-queue maximum size is less than minimum %dK: %dK\n", (embedded ? MAX_DEV… in test_device_info()
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | bugprone-string-literal-with-embedded-nul.rst | 1 .. title:: clang-tidy - bugprone-string-literal-with-embedded-nul 3 bugprone-string-literal-with-embedded-nul 6 Finds occurrences of string literal with embedded NUL character and validates 24 String-like classes can manipulate strings with embedded NUL as they are keeping 28 A common mistake is to pass a string-literal with embedded NUL to a string
|
/external/llvm-project/clang/test/CodeGen/ |
D | thinlto_embed_bitcode.ll | 13 ; RUN: llvm-objcopy --dump-section=.llvmbc=%t-embedded.bc %t-opt.o /dev/null 14 ; RUN: llvm-dis %t-embedded.bc -o - | FileCheck %s --check-prefixes=CHECK,CHECK-OPT 16 ; For the post-merge case, perform the embedded bitcode extraction, then 20 ; RUN: llvm-objcopy --dump-section=.llvmcmd=%t-embedded.cmd %t.o /dev/null 21 ; RUN: FileCheck %s --check-prefixes=CHECK-EMBEDDED-CMD <%t-embedded.cmd 22 ; RUN: llvm-objcopy --dump-section=.llvmbc=%t-embedded.bc %t.o /dev/null 23 ; RUN: llvm-dis %t-embedded.bc -o - | FileCheck %s --check-prefixes=CHECK,CHECK-NOOPT 27 ; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t-redo.o -x ir %t-embedded.bc -c -fthinlto-i…
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ |
D | TestGenericListSerialization.java | 53 List<Parent> embedded = new ArrayList<Parent>(); in testSubTypesFor356() local 54 embedded.add(new Child1()); in testSubTypesFor356() 55 embedded.add(new Child2()); in testSubTypesFor356() 56 input.setResult(embedded); in testSubTypesFor356()
|
/external/pigweed/pw_build/ |
D | pigweed_toolchain_upstream.bzl | 18 The bazel embedded toolchain expects two targets injected_headers 20 bazel-embedded can depend on them and so that the targets can depend 26 The bazel-embedded package expects to be able to access these 64 """Implements the set of dependencies that bazel-embedded requires. 67 requirements in the remote bazel-embedded toolchain. The remote
|
/external/llvm-project/clang/test/Frontend/ |
D | x86-embed-bitcode.ll | 39 ; CHECK: @llvm.embedded.module = private constant 45 ; CHECK-ELF: @llvm.embedded.module 50 ; CHECK-ELF-MARKER: @llvm.embedded.module 55 ; CHECK-ELF-ONLY-BITCODE: @llvm.embedded.module 60 ; CHECK-ONLY-BITCODE: @llvm.embedded.module = private constant 66 ; CHECK-MARKER: @llvm.embedded.module
|
D | embed-bitcode.ll | 34 ; CHECK: @llvm.embedded.module = private constant 40 ; check warning options are not embedded 45 ; CHECK-ELF: @llvm.embedded.module 50 ; CHECK-ONLY-BITCODE: @llvm.embedded.module = private constant 56 ; CHECK-MARKER: @llvm.embedded.module
|
/external/curl/tests/data/ |
D | test35 | 26 HTTP POST binary data with embedded NUL 32 This is binary data with an embedded NUL byte 46 This is binary data with an embedded NUL byte
|
D | test545 | 33 HTTP POST binary with embedded zero and no trailing zero 53 This is test binary data with an embedded NUL
|
/external/pigweed/ |
D | README.md | 3 Pigweed is an open source collection of embedded-targeted libraries--or as we 22 …- [Open Source blog post](https://opensource.googleblog.com/2020/03/pigweed-collection-of-embedded… 43 the embedded space, file system watchers are less prevalent; however, they are 73 ## `pw_env_setup` - Cross platform embedded compiler setup 75 A classic problem in the embedded space is reducing the time from git clone to 77 tools is needed for non-trivial production embedded projects. For example: 82 - A debugger like OpenOCD to flash and debug your embedded device 88 however, in our experience container solutions are a mixed bag for embedded 104 Google Test, `pw_unit_test` is built on top of embedded friendly primitives; for 137 a file system for embedded devices.
|
D | WORKSPACE | 67 # Setup embedded C/C++ toolchains. 71 remote = "https://github.com/silvergasp/bazel-embedded.git", 74 # Instantiate Pigweed configuration for embedded toolchain,
|
/external/pigweed/docs/ |
D | module_guides.rst | 6 Pigweed is a collection of embedded-focused and embedded-related modules.
|
/external/freetype/src/autofit/ |
D | afhints.c | 50 axis->segments = axis->embedded.segments; in af_axis_hints_new_segment() 71 if ( axis->segments == axis->embedded.segments ) in af_axis_hints_new_segment() 75 ft_memcpy( axis->segments, axis->embedded.segments, in af_axis_hints_new_segment() 76 sizeof ( axis->embedded.segments ) ); in af_axis_hints_new_segment() 115 axis->edges = axis->embedded.edges; in af_axis_hints_new_edge() 136 if ( axis->edges == axis->embedded.edges ) in af_axis_hints_new_edge() 140 ft_memcpy( axis->edges, axis->embedded.edges, in af_axis_hints_new_edge() 141 sizeof ( axis->embedded.edges ) ); in af_axis_hints_new_edge() 696 FT_MEM_ZERO( hints, sizeof ( *hints ) - sizeof ( hints->embedded ) ); in af_glyph_hints_init() 724 if ( axis->segments != axis->embedded.segments ) in af_glyph_hints_done() [all …]
|
/external/clang/test/Frontend/ |
D | embed-bitcode.ll | 34 ; CHECK: @llvm.embedded.module = private constant 40 ; CHECK-ELF: @llvm.embedded.module 45 ; CHECK-ONLY-BITCODE: @llvm.embedded.module = private constant 51 ; CHECK-MARKER: @llvm.embedded.module
|
/external/llvm-project/llvm/test/LTO/X86/ |
D | embed-bitcode.ll | 13 ; RUN: llvm-objcopy --dump-section=.llvmbc=%t-embedded.bc %t3.0 /dev/null 14 ; RUN: llvm-dis %t-embedded.bc -o - | FileCheck %s --check-prefixes=CHECK-LL,CHECK-OPT 18 ; RUN: llvm-objcopy --dump-section=.llvmbc=%t-embedded.bc %t3.0 /dev/null 19 ; RUN: llvm-dis %t-embedded.bc -o - | FileCheck %s --check-prefixes=CHECK-LL,CHECK-NOOPT
|
/external/ply/ply/example/yply/ |
D | yparse.py | 134 embedded = [] # Embedded actions (a mess) 154 embedded.append((embed_name, item)) 164 for e, code in embedded:
|
/external/llvm-project/llvm/test/tools/llvm-nm/X86/ |
D | archive-no-llvm-bc.test | 2 ; RUN: grep -v "module asm" %s | llvm-as -o %t/embedded.bc 14 module asm ".incbin \22embedded.bc\22"
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | embed-bitcode.ll | 8 @llvm.embedded.module = private constant [4 x i8] c"BC\C0\DE", section ".llvmbc", align 1 10 …global [2 x i8*] [i8* getelementptr inbounds ([4 x i8], [4 x i8]* @llvm.embedded.module, i32 0, i3…
|
/external/volley/ |
D | rules.gradle | 24 compileOnly "org.chromium.net:cronet-embedded:76.3809.111" 30 testImplementation "org.chromium.net:cronet-embedded:76.3809.111"
|
/external/openscreen/build/ |
D | BUILD.gn | 6 # in standalone and embedded builds. Setting default_include_dirs doesn't work 7 # in embedded builds, because GN does not allow for multiple BUILDCONFIG.gn
|
/external/tensorflow/tensorflow/lite/tools/pip_package/debian/ |
D | control | 24 Description: TensorFlow Lite is for mobile and embedded devices. 26 mobile and embedded devices. It enables on-device machine learning inference
|
/external/conscrypt/openjdk/src/test/resources/ |
D | README | 10 - cert-ct-embedded.pem: Same certificate as cert.pem, but with an embedded signed certificate
|
/external/fmtlib/ |
D | LICENSE.rst | 25 of this Software are embedded into a machine-executable object form of such 26 source code, you may redistribute such embedded portions in such object form
|
/external/pdfium/third_party/freetype/ |
D | 0000-include.patch | 62 /* embedded bitmaps in all formats using the SFNT module (namely */ 81 /* an embedded `BDF ' table within SFNT-based bitmap formats. */
|