/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | Triple.h | 230 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const; 235 unsigned Maj, Min, Micro; in getOSMajorVersion() local 236 getOSVersion(Maj, Min, Micro); in getOSMajorVersion() 243 unsigned Micro = 0) const { 251 if (LHS[2] != Micro) 252 return LHS[1] < Micro; 278 unsigned Micro = 0) const { 283 return isOSVersionLT(Major, Minor, Micro); 287 return isOSVersionLT(Minor + 4, Micro, 0);
|
/external/llvm/include/llvm/ADT/ |
D | Triple.h | 289 unsigned &Micro) const; 300 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const; 305 unsigned Maj, Min, Micro; in getOSMajorVersion() local 306 getOSVersion(Maj, Min, Micro); in getOSMajorVersion() 315 unsigned &Micro) const; 320 unsigned &Micro) const; 325 unsigned &Micro) const; 381 unsigned Micro = 0) const { 389 if (LHS[2] != Micro) 390 return LHS[1] < Micro; [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Triple.h | 297 unsigned &Micro) const; 308 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const; 313 unsigned Maj, Min, Micro; in getOSMajorVersion() local 314 getOSVersion(Maj, Min, Micro); in getOSMajorVersion() 323 unsigned &Micro) const; 328 unsigned &Micro) const; 333 unsigned &Micro) const; 389 unsigned Micro = 0) const { 397 if (LHS[2] != Micro) 398 return LHS[1] < Micro; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | Triple.h | 312 unsigned &Micro) const; 323 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const; 328 unsigned Maj, Min, Micro; in getOSMajorVersion() local 329 getOSVersion(Maj, Min, Micro); in getOSMajorVersion() 338 unsigned &Micro) const; 343 unsigned &Micro) const; 348 unsigned &Micro) const; 404 unsigned Micro = 0) const { 412 if (LHS[2] != Micro) 413 return LHS[1] < Micro; [all …]
|
/external/u-boot/arch/x86/cpu/queensbay/ |
D | Kconfig | 29 bool "Add a Chipset Micro Code state machine binary" 31 Select this option to add a Chipset Micro Code state machine binary 37 string "Chipset Micro Code state machine filename" 41 The filename of the file to use as Chipset Micro Code state machine 45 hex "Chipset Micro Code state machine binary location"
|
/external/llvm/unittests/ADT/ |
D | TripleTest.cpp | 714 unsigned Major, Minor, Micro; in TEST() local 722 T.getMacOSXVersion(Major, Minor, Micro); in TEST() 725 EXPECT_EQ((unsigned)0, Micro); in TEST() 726 T.getiOSVersion(Major, Minor, Micro); in TEST() 729 EXPECT_EQ((unsigned)0, Micro); in TEST() 737 T.getMacOSXVersion(Major, Minor, Micro); in TEST() 740 EXPECT_EQ((unsigned)0, Micro); in TEST() 741 T.getiOSVersion(Major, Minor, Micro); in TEST() 744 EXPECT_EQ((unsigned)0, Micro); in TEST() 752 T.getMacOSXVersion(Major, Minor, Micro); in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | TripleTest.cpp | 932 unsigned Major, Minor, Micro; in TEST() local 940 T.getMacOSXVersion(Major, Minor, Micro); in TEST() 943 EXPECT_EQ((unsigned)0, Micro); in TEST() 944 T.getiOSVersion(Major, Minor, Micro); in TEST() 947 EXPECT_EQ((unsigned)0, Micro); in TEST() 955 T.getMacOSXVersion(Major, Minor, Micro); in TEST() 958 EXPECT_EQ((unsigned)0, Micro); in TEST() 959 T.getiOSVersion(Major, Minor, Micro); in TEST() 962 EXPECT_EQ((unsigned)0, Micro); in TEST() 970 T.getMacOSXVersion(Major, Minor, Micro); in TEST() [all …]
|
/external/tensorflow/tensorflow/lite/experimental/micro/tools/make/templates/ |
D | README_KEIL.md.tpl | 1 # TensorFlow Lite Micro Mbed Project 4 and project files needed to build a single TensorFlow Lite Micro target using
|
D | README_MAKE.md.tpl | 1 # TensorFlow Lite Micro Make Project 4 and project files needed to build a single TensorFlow Lite Micro target using
|
D | README_MBED.md.tpl | 1 # TensorFlow Lite Micro Mbed Project 4 and project files needed to build a single TensorFlow Lite Micro target using
|
/external/llvm/lib/Support/ |
D | Triple.cpp | 920 unsigned &Minor, unsigned &Micro) { in parseVersionFromName() argument 922 Major = Minor = Micro = 0; in parseVersionFromName() 925 unsigned *Components[3] = {&Major, &Minor, &Micro}; in parseVersionFromName() 940 unsigned &Micro) const { in getEnvironmentVersion() 946 parseVersionFromName(EnvironmentName, Major, Minor, Micro); in getEnvironmentVersion() 950 unsigned &Micro) const { in getOSVersion() 957 parseVersionFromName(OSName, Major, Minor, Micro); in getOSVersion() 961 unsigned &Micro) const { in getMacOSXVersion() 962 getOSVersion(Major, Minor, Micro); in getMacOSXVersion() 973 Micro = 0; in getMacOSXVersion() [all …]
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Triple.cpp | 945 unsigned &Minor, unsigned &Micro) { in parseVersionFromName() argument 947 Major = Minor = Micro = 0; in parseVersionFromName() 950 unsigned *Components[3] = {&Major, &Minor, &Micro}; in parseVersionFromName() 965 unsigned &Micro) const { in getEnvironmentVersion() 971 parseVersionFromName(EnvironmentName, Major, Minor, Micro); in getEnvironmentVersion() 975 unsigned &Micro) const { in getOSVersion() 982 parseVersionFromName(OSName, Major, Minor, Micro); in getOSVersion() 986 unsigned &Micro) const { in getMacOSXVersion() 987 getOSVersion(Major, Minor, Micro); in getMacOSXVersion() 998 Micro = 0; in getMacOSXVersion() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | Chrono.cpp | 71 TimePoint<microseconds> Micro = toTimePoint(TimeT); in TEST() local 74 EXPECT_EQ(Sec, Micro); in TEST() 78 EXPECT_EQ(TimeT, toTimeT(Micro)); in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | Triple.cpp | 984 unsigned &Minor, unsigned &Micro) { in parseVersionFromName() argument 986 Major = Minor = Micro = 0; in parseVersionFromName() 989 unsigned *Components[3] = {&Major, &Minor, &Micro}; in parseVersionFromName() 1004 unsigned &Micro) const { in getEnvironmentVersion() 1010 parseVersionFromName(EnvironmentName, Major, Minor, Micro); in getEnvironmentVersion() 1014 unsigned &Micro) const { in getOSVersion() 1023 parseVersionFromName(OSName, Major, Minor, Micro); in getOSVersion() 1027 unsigned &Micro) const { in getMacOSXVersion() 1028 getOSVersion(Major, Minor, Micro); in getMacOSXVersion() 1039 Micro = 0; in getMacOSXVersion() [all …]
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64Subtarget.cpp | 162 unsigned Major, Minor, Micro; in supportsAddressTopByteIgnored() local 163 TargetTriple.getiOSVersion(Major, Minor, Micro); in supportsAddressTopByteIgnored()
|
/external/caliper/caliper/src/main/java/com/google/caliper/worker/ |
D | WorkerModule.java | 108 @WorkerClassKey(RuntimeWorker.Micro.class) 109 static Worker provideRuntimeWorkerMicro(RuntimeWorker.Micro impl) { in provideRuntimeWorkerMicro()
|
D | RuntimeWorker.java | 103 public static final class Micro extends RuntimeWorker { class in RuntimeWorker 104 @Inject Micro(@Benchmark Object benchmark, in Micro() method in RuntimeWorker.Micro
|
/external/u-boot/board/freescale/ls1012afrdm/ |
D | README | 25 Micro-AB connector. 27 as a Micro-AB device.
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64Subtarget.cpp | 251 unsigned Major, Minor, Micro; in supportsAddressTopByteIgnored() local 252 TargetTriple.getiOSVersion(Major, Minor, Micro); in supportsAddressTopByteIgnored()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Triple.cpp | 595 unsigned &Micro) const { in getOSVersion() 604 Major = Minor = Micro = 0; in getOSVersion() 607 unsigned *Components[3] = { &Major, &Minor, &Micro }; in getOSVersion()
|
/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/apollo3/ |
D | README.md | 50 * Sends a 1 kHz sine wave to the Micro-Lite fixed\_point version of the 55 * Produces four text files corresponding to outputs from the Micro-Lite 88 * **preprocessor_1k_micro_test.cmd**: GDB command file for the Micro-Lite
|
/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/CMSIS/ |
D | README.md | 11 with the Micro-Lite fixed_point preprocessor
|
/external/u-boot/arch/arm/dts/ |
D | armada-8040-mcbin.dts | 98 * [55] Micro SD card detect 99 * [56-61] Micro SD
|
/external/skqp/third_party/vulkanmemoryallocator/include/ |
D | LICENSE.txt | 1 Copyright (c) 2017-2018 Advanced Micro Devices, Inc. All rights reserved.
|
/external/skia/third_party/vulkanmemoryallocator/include/ |
D | LICENSE.txt | 1 Copyright (c) 2017-2018 Advanced Micro Devices, Inc. All rights reserved.
|