Home
last modified time | relevance | path

Searched refs:Using (Results 1 – 25 of 1726) sorted by relevance

12345678910>>...70

/external/libcups/
DMakefile34 echo Using ARCHFLAGS="$(ARCHFLAGS)"
35 echo Using ALL_CFLAGS="$(ALL_CFLAGS)"
36 echo Using ALL_CXXFLAGS="$(ALL_CXXFLAGS)"
37 echo Using CC="$(CC)"
38 echo Using CXX="$(CC)"
39 echo Using DSOFLAGS="$(DSOFLAGS)"
40 echo Using LDFLAGS="$(LDFLAGS)"
41 echo Using LIBS="$(LIBS)"
53 echo Using ARCHFLAGS="$(ARCHFLAGS)"
54 echo Using ALL_CFLAGS="$(ALL_CFLAGS)"
[all …]
/external/cpuinfo/
DREADME.md155 - [x] Using CPUID leaves 0x80000002–0x80000004 on x86/x86-64
156 - [x] Using `/proc/cpuinfo` on ARM
157 …- [x] Using `ro.chipname`, `ro.board.platform`, `ro.product.board`, `ro.mediatek.platform`, `ro.ar…
158 - [ ] Using kernel log (`dmesg`) on ARM Linux
173 - [x] Using CPUID (x86/x86-64)
174 - [x] Using `/proc/cpuinfo` on 32-bit ARM EABI (Linux)
175 - [x] Using microarchitecture heuristics on (32-bit ARM)
176 - [x] Using `FPSID` and `WCID` registers (32-bit ARM)
177 - [x] Using `getauxval` (Linux/ARM)
178 - [x] Using `/proc/self/auxv` (Android/ARM)
[all …]
/external/llvm-project/llvm/cmake/platforms/
DiOS.cmake19 message(STATUS "Using SDKROOT ${SDKROOT}")
28 message(STATUS "Using C compiler ${CMAKE_C_COMPILER}")
36 message(STATUS "Using C++ compiler ${CMAKE_CXX_COMPILER}")
45 message(STATUS "Using ar ${CMAKE_AR}")
54 message(STATUS "Using ranlib ${CMAKE_RANLIB}")
63 message(STATUS "Using strip ${CMAKE_STRIP}")
72 message(STATUS "Using dsymutil ${CMAKE_DSYMUTIL}")
81 message(STATUS "Using libtool ${CMAKE_LIBTOOL}")
90 message(STATUS "Using codesign ${CMAKE_CODESIGN}")
101 message(STATUS "Using codesign_allocate ${CMAKE_CODESIGN_ALLOCATE}")
/external/arm-trusted-firmware/plat/brcm/board/stingray/
Dplatform.mk62 $(info Using Single Cluster)
68 $(info Using DDR)
78 $(info Using PAXB)
84 $(info Using FS4)
90 $(info Using FS6)
96 $(info Using FS4_DISABLE_CLOCK)
101 $(info Using NCSI_IO_DRIVE_STRENGTH_MA)
107 $(info Using NAND)
113 $(info Using BCM_ELOG)
120 $(info Using RESET_TO_BL31)
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/misc/
DUnusedUsingDeclsCheck.cpp85 if (const auto *Using = Result.Nodes.getNodeAs<UsingDecl>("using")) { in check() local
87 if (Using->getLocation().isMacroID()) in check()
91 if (isa<CXXRecordDecl>(Using->getDeclContext())) in check()
97 if (isa<FunctionDecl>(Using->getDeclContext())) in check()
100 UsingDeclContext Context(Using); in check()
102 Using->getBeginLoc(), in check()
104 Using->getEndLoc(), tok::semi, *Result.SourceManager, getLangOpts(), in check()
106 for (const auto *UsingShadow : Using->shadows()) { in check()
/external/llvm/cmake/platforms/
DiOS.cmake18 message(STATUS "Using SDKROOT ${SDKROOT}")
27 message(STATUS "Using c compiler ${CMAKE_C_COMPILER}")
35 message(STATUS "Using c compiler ${CMAKE_CXX_COMPILER}")
44 message(STATUS "Using ar ${CMAKE_AR}")
53 message(STATUS "Using ranlib ${CMAKE_RANLIB}")
/external/tensorflow/tensorflow/python/eager/benchmarks/resnet50/
DREADME.md14 Using a synthetic data, run:
17 # Using eager execution
20 # Using graph execution
28 # Using eager execution
31 # Using graph execution
/external/python/google-api-python-client/docs/
Dapi-keys.md5 …ee [Using OAuth 2.0 for Installed Applications](oauth-installed.md), [Using OAuth 2.0 for Server t…
7 ## Using API Keys
/external/rust/crates/instant/
DREADME.md24 ### Using `instant` for a native platform.
41 ### Using `instant` for a WASM platform.
60 ### Using `instant` for a WASM platform where `performance.now()` is not available.
80 ### Using `instant` for any platform enabling a feature transitively.
102 ### Using the feature `now`.
123 ### Using the feature `now` without `stdweb` or `wasm-bindgen`.
/external/clang/docs/
Dindex.rst13 Using Clang as a Compiler
42 Using Clang as a Library
60 Using Clang Tools
/external/llvm-project/clang/docs/
Dindex.rst13 Using Clang as a Compiler
51 Using Clang as a Library
71 Using Clang Tools
/external/llvm-project/clang-tools-extra/clang-tidy/google/
DUpgradeGoogletestCaseCheck.cpp251 if (const auto *Using = Result.Nodes.getNodeAs<UsingDecl>("using")) { in getAliasNameRange() local
253 Using->getNameInfo().getSourceRange()); in getAliasNameRange()
279 } else if (const auto *Using = Result.Nodes.getNodeAs<UsingDecl>("using")) { in check() local
281 CharSourceRange::getTokenRange(Using->getNameInfo().getSourceRange()); in check()
282 IsInInstantiation = isInInstantiation(*Using, Result); in check()
283 IsInTemplate = isInTemplate<Decl>(*Using, Result); in check()
/external/deqp-deps/amber/src/dawn/
Dfind_dawn.cmake88 message(STATUS "Amber: Using Dawn headers at ${Dawn_INCLUDE_DIR}")
89 message(STATUS "Amber: Using Dawn generated headers at ${Dawn_GEN_INCLUDE_DIR}")
90 message(STATUS "Amber: Using Dawn library ${Dawn_LIBRARY}")
91 message(STATUS "Amber: Using Dawn native library ${Dawn_native_LIBRARY}")
/external/oboe/docs/notes/
Deffects.md3 # Using Audio Effects with Oboe
19 3. You can get lower latency when you use your own effects. Using Android AudioEffects prevents you…
21 ## Using Android AudioEffects
40 ## Using Third Party Affects Processing
/external/iproute2/examples/bpf/
DREADME5 - bpf_tailcall.c -> Using tail call chains
8 - bpf_map_in_map.c -> Using map in map example
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DUseUsingCheck.cpp77 std::string Using = "using "; in check() local
90 Using = ";\nusing "; in check()
115 std::string Replacement = Using + Name + " = " + Type; in check()
/external/python/cpython3/Doc/library/
Dasyncio-api-index.rst63 * :ref:`Using asyncio.gather() to run things in parallel
66 * :ref:`Using asyncio.wait_for() to enforce a timeout
71 * :ref:`Using asyncio.sleep() <asyncio_example_sleep>`.
99 * :ref:`Using asyncio.Queue to distribute workload between several
192 * :ref:`Using asyncio.Event <asyncio_example_sync_event>`.
/external/tensorflow/tensorflow/lite/examples/ios/camera/
DREADME.md1 ## Using the iOS Demo App
5 ## Using the iOS Demo App with support for select TensorFlow ops
/external/llvm/test/CodeGen/AArch64/
Darm64-neon-compare-instructions.ll158 ; Using registers other than v0, v1 are possible, but would be odd.
167 ; Using registers other than v0, v1 are possible, but would be odd.
176 ; Using registers other than v0, v1 are possible, but would be odd.
185 ; Using registers other than v0, v1 are possible, but would be odd.
194 ; Using registers other than v0, v1 are possible, but would be odd.
203 ; Using registers other than v0, v1 are possible, but would be odd.
212 ; Using registers other than v0, v1 are possible, but would be odd.
270 ; Using registers other than v0, v1 are possible, but would be odd.
279 ; Using registers other than v0, v1 are possible, but would be odd.
288 ; Using registers other than v0, v1 are possible, but would be odd.
[all …]
Dneon-compare-instructions.ll180 ; Using registers other than v0, v1 are possible, but would be odd.
190 ; Using registers other than v0, v1 are possible, but would be odd.
200 ; Using registers other than v0, v1 are possible, but would be odd.
210 ; Using registers other than v0, v1 are possible, but would be odd.
220 ; Using registers other than v0, v1 are possible, but would be odd.
230 ; Using registers other than v0, v1 are possible, but would be odd.
240 ; Using registers other than v0, v1 are possible, but would be odd.
306 ; Using registers other than v0, v1 are possible, but would be odd.
316 ; Using registers other than v0, v1 are possible, but would be odd.
326 ; Using registers other than v0, v1 are possible, but would be odd.
[all …]
/external/python/cryptography/vectors/cryptography_vectors/HMAC/
Drfc-4231-sha512.txt30 # "Test Using Larger Than Block-Size Key - Hash Key First"
36 # "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data"
Drfc-4231-sha384.txt30 # "Test Using Larger Than Block-Size Key - Hash Key First"
36 # "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data"
Drfc-4231-sha256.txt30 # "Test Using Larger Than Block-Size Key - Hash Key First"
36 # "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data"
/external/llvm/utils/lit/tests/Inputs/shtest-timeout/
Dlit.cfg12 lit_config.note('Using internal shell')
15 lit_config.note('Using external shell')
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dneon-compare-instructions.ll180 ; Using registers other than v0, v1 are possible, but would be odd.
190 ; Using registers other than v0, v1 are possible, but would be odd.
200 ; Using registers other than v0, v1 are possible, but would be odd.
210 ; Using registers other than v0, v1 are possible, but would be odd.
220 ; Using registers other than v0, v1 are possible, but would be odd.
230 ; Using registers other than v0, v1 are possible, but would be odd.
240 ; Using registers other than v0, v1 are possible, but would be odd.
306 ; Using registers other than v0, v1 are possible, but would be odd.
316 ; Using registers other than v0, v1 are possible, but would be odd.
326 ; Using registers other than v0, v1 are possible, but would be odd.
[all …]

12345678910>>...70