/external/curl/tests/certs/scripts/ |
D | genserv.sh | 22 # SPDX-License-Identifier: curl 27 if [ -f /usr/local/ssl/bin/openssl ] ; then 31 USAGE="echo Usage is genserv.sh <prefix> <caprefix>" 34 set -e 41 # The -sha256 option was introduced in OpenSSL 1.0.1 42 DIGESTALGO=-sha256 48 PREFIX=$1 49 if [ ".$PREFIX" = . ] ; then 50 echo No configuration prefix 53 if [ ! -f $PREFIX-sv.prm ] ; then [all …]
|
D | genroot.sh | 22 # SPDX-License-Identifier: curl 27 if [ -f /usr/local/ssl/bin/openssl ] ; then 38 # The -sha256 option was introduced in OpenSSL 1.0.1 39 DIGESTALGO=-sha256 41 PREFIX=$1 42 if [ ".$PREFIX" = . ] ; then 43 echo No configuration prefix 46 if [ ! -f $PREFIX-ca.prm ] ; then 47 echo No configuration file $PREFIX-ca.prm 58 GETSERIAL="\$t = time ;\$d = \$t . substr(\$t+$$ ,-4,4)-1;print \$d" [all …]
|
/external/clang/test/Frontend/ |
D | gnu-mcount.c | 1 // RUN: %clang -target armv7-unknown-none-eabi -pg -S -emit-llvm -o - %s | FileCheck %s -check-pref… 2 …%clang -target armv7-unknown-none-eabi -pg -meabi gnu -S -emit-llvm -o - %s | FileCheck %s -check-… 3 // RUN: %clang -target aarch64-unknown-none-eabi -pg -S -emit-llvm -o - %s | FileCheck %s -check-pr… 4 …lang -target aarch64-unknown-none-eabi -pg -meabi gnu -S -emit-llvm -o - %s | FileCheck %s -check-… 5 // RUN: %clang -target armv7-unknown-linux-gnueabi -pg -S -emit-llvm -o - %s | FileCheck %s -check-… 6 …lang -target armv7-unknown-linux-gnueabi -meabi gnu -pg -S -emit-llvm -o - %s | FileCheck %s -chec… 7 …/ RUN: %clang -target aarch64-unknown-linux-gnueabi -pg -S -emit-llvm -o - %s | FileCheck %s -chec… 8 …ng -target aarch64-unknown-linux-gnueabi -meabi gnu -pg -S -emit-llvm -o - %s | FileCheck %s -chec… 9 // RUN: %clang -target armv7-unknown-linux-gnueabihf -pg -S -emit-llvm -o - %s | FileCheck %s -chec… 10 …ang -target armv7-unknown-linux-gnueabihf -meabi gnu -pg -S -emit-llvm -o - %s | FileCheck %s -che… [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ |
D | EC.java | 6 // BEGIN Android-removed: Unsupported algorithms 12 // END Android-removed: Unsupported algorithms 17 // BEGIN Android-removed: Unsupported algorithms 19 // END Android-removed: Unsupported algorithms 23 private static final String PREFIX = "org.bouncycastle.jcajce.provider.asymmetric" + ".ec."; field in EC 42 // BEGIN Android-removed: Unsupported algorithms in configure() 44 provider.addAlgorithm("AlgorithmParameters.EC", PREFIX + "AlgorithmParametersSpi"); in configure() 47 provider.addAlgorithm("KeyAgreement.ECDH", PREFIX + "KeyAgreementSpi$DH"); in configure() 49 provider.addAlgorithm("KeyAgreement.ECDHC", PREFIX + "KeyAgreementSpi$DHC"); in configure() 51 provider.addAlgorithm("KeyAgreement.ECCDH", PREFIX + "KeyAgreementSpi$DHC"); in configure() [all …]
|
D | RSA.java | 10 // Android-removed: Unsupported algorithms 20 private static final String PREFIX = "org.bouncycastle.jcajce.provider.asymmetric" + ".rsa."; field in RSA 39 // Android-removed: Unsupported algorithms in configure() 40 … // provider.addAlgorithm("AlgorithmParameters.OAEP", PREFIX + "AlgorithmParametersSpi$OAEP"); in configure() 41 provider.addAlgorithm("AlgorithmParameters.PSS", PREFIX + "AlgorithmParametersSpi$PSS"); in configure() 43 // BEGIN Android-removed: Unsupported algorithms in configure() 46 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.RSASSA-PSS", "PSS"); in configure() 57 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-224WITHRSAANDMGF1", "PSS"); in configure() 58 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-256WITHRSAANDMGF1", "PSS"); in configure() 59 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-384WITHRSAANDMGF1", "PSS"); in configure() [all …]
|
/external/clang/test/Driver/ |
D | cuda-options.cu | 2 // REQUIRES: clang-driver 3 // REQUIRES: x86-registered-target 4 // REQUIRES: nvptx-registered-target 6 // Simple compilation case. Compile device-side to PTX assembly and make sure 8 // RUN: %clang -### -target x86_64-linux-gnu -c %s 2>&1 \ 9 // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ 10 // RUN: -check-prefix HOST -check-prefix INCLUDES-DEVICE \ 11 // RUN: -check-prefix NOLINK %s 14 // RUN: %clang -### -target x86_64-linux-gnu %s 2>&1 \ 15 // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ [all …]
|
D | arm-cortex-cpus.c | 2 // RUN: %clang -target arm -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-GENERIC %s 3 // CHECK-GENERIC: "-cc1"{{.*}} "-triple" "armv4t-{{.*}} "-target-cpu" "generic" 5 // RUN: %clang -target armeb -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-BE-GENER… 6 // CHECK-BE-GENERIC: "-cc1"{{.*}} "-triple" "armebv4t-{{.*}} "-target-cpu" "generic" 8 // RUN: %clang -target arm -mthumb -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-GE… 9 // CHECK-GENERIC-THUMB: "-cc1"{{.*}} "-triple" "thumbv4t-{{.*}} "-target-cpu" "generic" 11 // RUN: %clang -target armeb -mthumb -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-… 12 // CHECK-BE-GENERIC-THUMB: "-cc1"{{.*}} "-triple" "thumbebv4t-{{.*}} "-target-cpu" "generic" 14 // RUN: %clang -target armv4t -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V4T %s 15 // RUN: %clang -target arm -march=armv4t -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V4T %s [all …]
|
D | aarch64-cpus.c | 3 // RUN: %clang -target aarch64 -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s 4 // RUN: %clang -target aarch64 -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s 5 // RUN: %clang -target aarch64 -mlittle-endian -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s 6 // RUN: %clang -target aarch64 -mlittle-endian -mcpu=generic -### -c %s 2>&1 | FileCheck -check-pre… 7 // RUN: %clang -target aarch64_be -mlittle-endian -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC… 8 // RUN: %clang -target aarch64_be -mlittle-endian -mcpu=generic -### -c %s 2>&1 | FileCheck -check-… 9 // GENERIC: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" 11 // RUN: %clang -target arm64 -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERIC %s 12 // RUN: %clang -target arm64 -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERIC … 13 // RUN: %clang -target arm64 -mlittle-endian -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERI… [all …]
|
D | cl-outputs.c | 1 // Note: %s must be preceded by --, otherwise it may be interpreted as a 2 // command-line option, e.g. on Mac where %s is commonly under /Users. 4 // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULT %s 5 // DEFAULT: "-o" "cl-outputs.obj" 7 // RUN: %clang_cl /Fo -### -- %s 2>&1 | FileCheck -check-prefix=FoEMPTY %s 8 // FoEMPTY: "-o" "cl-outputs.obj" 10 // RUN: %clang_cl /Foa -### -- %s 2>&1 | FileCheck -check-prefix=FoNAME %s 11 // FoNAME: "-o" "a.obj" 13 // RUN: %clang_cl /Foa.ext /Fob.ext -### -- %s 2>&1 | FileCheck -check-prefix=FoNAMEEXT %s 14 // FoNAMEEXT: "-o" "b.ext" [all …]
|
D | cuda-external-tools.cu | 3 // REQUIRES: clang-driver 4 // REQUIRES: x86-registered-target 5 // REQUIRES: nvptx-registered-target 7 // Regular compiles with -O{0,1,2,3,4,fast}. -O4 and -Ofast map to ptxas O3. 8 // RUN: %clang -### -target x86_64-linux-gnu -O0 -c %s 2>&1 \ 9 // RUN: | FileCheck -check-prefix ARCH64 -check-prefix SM20 -check-prefix OPT0 %s 10 // RUN: %clang -### -target x86_64-linux-gnu -O1 -c %s 2>&1 \ 11 // RUN: | FileCheck -check-prefix ARCH64 -check-prefix SM20 -check-prefix OPT1 %s 12 // RUN: %clang -### -target x86_64-linux-gnu -O2 -c %s 2>&1 \ 13 // RUN: | FileCheck -check-prefix ARCH64 -check-prefix SM20 -check-prefix OPT2 %s [all …]
|
D | debug-options.c | 1 // Check to make sure clang is somewhat picky about -g options. 4 // RUN: %clang -### -c -g %s -target x86_64-linux-gnu 2>&1 \ 5 // RUN: | FileCheck -check-prefix=G -check-prefix=G_GDB %s 6 // RUN: %clang -### -c -g2 %s -target x86_64-linux-gnu 2>&1 \ 7 // RUN: | FileCheck -check-prefix=G %s 8 // RUN: %clang -### -c -g3 %s -target x86_64-linux-gnu 2>&1 \ 9 // RUN: | FileCheck -check-prefix=G %s 10 // RUN: %clang -### -c -ggdb %s -target x86_64-linux-gnu 2>&1 \ 11 // RUN: | FileCheck -check-prefix=G -check-prefix=G_GDB %s 12 // RUN: %clang -### -c -ggdb1 %s -target x86_64-linux-gnu 2>&1 \ [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/asymmetric/ |
D | EC.java | 7 // BEGIN Android-removed: Unsupported algorithms 13 // END Android-removed: Unsupported algorithms 18 // BEGIN Android-removed: Unsupported algorithms 20 // END Android-removed: Unsupported algorithms 27 …private static final String PREFIX = "com.android.internal.org.bouncycastle.jcajce.provider.asymme… field in EC 49 // BEGIN Android-removed: Unsupported algorithms in configure() 51 provider.addAlgorithm("AlgorithmParameters.EC", PREFIX + "AlgorithmParametersSpi"); in configure() 54 provider.addAlgorithm("KeyAgreement.ECDH", PREFIX + "KeyAgreementSpi$DH"); in configure() 56 provider.addAlgorithm("KeyAgreement.ECDHC", PREFIX + "KeyAgreementSpi$DHC"); in configure() 58 provider.addAlgorithm("KeyAgreement.ECCDH", PREFIX + "KeyAgreementSpi$DHC"); in configure() [all …]
|
D | RSA.java | 11 // Android-removed: Unsupported algorithms 24 …private static final String PREFIX = "com.android.internal.org.bouncycastle.jcajce.provider.asymme… field in RSA 46 // Android-removed: Unsupported algorithms in configure() 47 … // provider.addAlgorithm("AlgorithmParameters.OAEP", PREFIX + "AlgorithmParametersSpi$OAEP"); in configure() 48 provider.addAlgorithm("AlgorithmParameters.PSS", PREFIX + "AlgorithmParametersSpi$PSS"); in configure() 50 // BEGIN Android-removed: Unsupported algorithms in configure() 53 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.RSASSA-PSS", "PSS"); in configure() 64 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-224WITHRSAANDMGF1", "PSS"); in configure() 65 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-256WITHRSAANDMGF1", "PSS"); in configure() 66 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-384WITHRSAANDMGF1", "PSS"); in configure() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/ |
D | EC.java | 7 // BEGIN Android-removed: Unsupported algorithms 13 // END Android-removed: Unsupported algorithms 18 // BEGIN Android-removed: Unsupported algorithms 20 // END Android-removed: Unsupported algorithms 27 …private static final String PREFIX = "com.android.org.bouncycastle.jcajce.provider.asymmetric" + "… field in EC 49 // BEGIN Android-removed: Unsupported algorithms in configure() 51 provider.addAlgorithm("AlgorithmParameters.EC", PREFIX + "AlgorithmParametersSpi"); in configure() 54 provider.addAlgorithm("KeyAgreement.ECDH", PREFIX + "KeyAgreementSpi$DH"); in configure() 56 provider.addAlgorithm("KeyAgreement.ECDHC", PREFIX + "KeyAgreementSpi$DHC"); in configure() 58 provider.addAlgorithm("KeyAgreement.ECCDH", PREFIX + "KeyAgreementSpi$DHC"); in configure() [all …]
|
D | RSA.java | 11 // Android-removed: Unsupported algorithms 24 …private static final String PREFIX = "com.android.org.bouncycastle.jcajce.provider.asymmetric" + "… field in RSA 46 // Android-removed: Unsupported algorithms in configure() 47 … // provider.addAlgorithm("AlgorithmParameters.OAEP", PREFIX + "AlgorithmParametersSpi$OAEP"); in configure() 48 provider.addAlgorithm("AlgorithmParameters.PSS", PREFIX + "AlgorithmParametersSpi$PSS"); in configure() 50 // BEGIN Android-removed: Unsupported algorithms in configure() 53 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.RSASSA-PSS", "PSS"); in configure() 64 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-224WITHRSAANDMGF1", "PSS"); in configure() 65 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-256WITHRSAANDMGF1", "PSS"); in configure() 66 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA3-384WITHRSAANDMGF1", "PSS"); in configure() [all …]
|
/external/capstone/arch/X86/ |
D | X86DisassemblerDecoderCommon.h | 1 /*===-- X86DisassemblerDecoderCommon.h - Disassembler decoder -----*- C -*-===* 8 *===----------------------------------------------------------------------===* 15 *===----------------------------------------------------------------------===*/ 18 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */ 22 * the decoder and the table generator in a C-friendly manner. 79 "64-bit mode but no more") \ 80 ENUM_ENTRY(IC_OPSIZE, 3, "requires an OPSIZE prefix, so " \ 82 ENUM_ENTRY(IC_ADSIZE, 3, "requires an ADSIZE prefix, so " \ 84 ENUM_ENTRY(IC_OF, 2, "requires 0f prefix ") \ 90 ENUM_ENTRY(IC_XD_OPSIZE, 3, "requires an OPSIZE prefix, so " \ [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | X86DisassemblerDecoderCommon.h | 1 //===-- X86DisassemblerDecoderCommon.h - Disassembler decoder ---*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 75 "64-bit mode but no more") \ 76 ENUM_ENTRY(IC_OPSIZE, 3, "requires an OPSIZE prefix, so " \ 78 ENUM_ENTRY(IC_ADSIZE, 3, "requires an ADSIZE prefix, so " \ 85 ENUM_ENTRY(IC_XD_OPSIZE, 3, "requires an OPSIZE prefix, so " \ 87 ENUM_ENTRY(IC_XS_OPSIZE, 3, "requires an OPSIZE prefix, so " \ 89 ENUM_ENTRY(IC_XD_ADSIZE, 3, "requires an ADSIZE prefix, so " \ [all …]
|
/external/llvm/lib/Target/X86/Disassembler/ |
D | X86DisassemblerDecoderCommon.h | 1 //===-- X86DisassemblerDecoderCommon.h - Disassembler decoder ---*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 15 //===----------------------------------------------------------------------===// 80 "64-bit mode but no more") \ 81 ENUM_ENTRY(IC_OPSIZE, 3, "requires an OPSIZE prefix, so " \ 83 ENUM_ENTRY(IC_ADSIZE, 3, "requires an ADSIZE prefix, so " \ 90 ENUM_ENTRY(IC_XD_OPSIZE, 3, "requires an OPSIZE prefix, so " \ 92 ENUM_ENTRY(IC_XS_OPSIZE, 3, "requires an OPSIZE prefix, so " \ 94 ENUM_ENTRY(IC_64BIT_REXW, 5, "requires a REX.W prefix, so operands "\ 96 ENUM_ENTRY(IC_64BIT_REXW_ADSIZE, 6, "requires a REX.W prefix and 0x67 " \ [all …]
|
/external/curl/packages/vms/ |
D | curlmsg.sdl | 6 /* This SDL File Generated by VAX-11 Message V04-00 on 3-SEP-2008 13:33:54.09 8 /* $ID: CURLMSG.MSG,V 1.7 2008-05-30 23:51:09 CURLVMS EXP $ 21 /* "THE COMBINED LENGTH OF THE PREFIX AND THE MESSAGE SYMBOL NAME CANNOT 22 /* EXCEED 31 CHARACTERS." WITH A PREFIX OF FIVE THAT LEAVES US WITH 26 28 "FACILITY" EQUALS 3841 PREFIX "CURL" TAG "" 29 ,"OK" EQUALS %X0F018009 PREFIX "CURL" TAG "" 30 ,"UNSUPPORTED_PROTOCOL" EQUALS %X0F018012 PREFIX "CURL" TAG "" 31 ,"FAILED_INIT" EQUALS %X0F01801A PREFIX "CURL" TAG "" 32 ,"URL_MALFORMAT" EQUALS %X0F018022 PREFIX "CURL" TAG "" 33 ,"OBSOLETE4" EQUALS %X0F01802A PREFIX "CURL" TAG "" [all …]
|
/external/flatbuffers/tests/flatc/ |
D | flatc_cpp_tests.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 21 flatc(["--cpp", "foo.fbs"]) 28 flatc(["--cpp", make_absolute("foo.fbs")]) 35 flatc(["--cpp", "bar/bar.fbs"]) 42 flatc(["--cpp", "-o", ".tmp", "foo.fbs"]) 49 flatc(["--cpp", "-o", "../.tmp", "foo.fbs"]) 58 flatc(["--cpp", "-o", ".tmp", "bar/bar.fbs"]) 64 # Generate just foo with the import of bar keeping the prefix of where it is located. 65 flatc(["--cpp", "--keep-prefix", "foo.fbs"]) 70 # Generate just foo with the import of bar keeping the prefix of where it is located. [all …]
|
/external/compiler-rt/test/cfi/ |
D | bad-cast.cpp | 1 // RUN: %clangxx_cfi -o %t1 %s 2 // RUN: %expect_crash %t1 a 2>&1 | FileCheck --check-prefix=FAIL %s 3 // RUN: %expect_crash %t1 b 2>&1 | FileCheck --check-prefix=FAIL %s 4 // RUN: %expect_crash %t1 c 2>&1 | FileCheck --check-prefix=FAIL %s 5 // RUN: %t1 d 2>&1 | FileCheck --check-prefix=PASS %s 6 // RUN: %t1 e 2>&1 | FileCheck --check-prefix=PASS %s 7 // RUN: %t1 f 2>&1 | FileCheck --check-prefix=PASS %s 8 // RUN: %expect_crash %t1 g 2>&1 | FileCheck --check-prefix=FAIL %s 9 // RUN: %t1 h 2>&1 | FileCheck --check-prefix=PASS %s 11 // RUN: %clangxx_cfi -DB32 -o %t2 %s [all …]
|
/external/openthread/tests/toranj/ncp/ |
D | test-030-slaac-address-ncp.py | 33 # -------------------------------------------------------------------------------------------------… 38 # - Verify that adding prefix (with SLAAC flag) causes a corresponding SLAAC IPv6 address to be add… 39 # - Verify that removing the prefix, would remove the SLAAC address. 40 # - Verify behavior when same prefix is added/removed on multiple nodes (with or without SLAAC flag… 41 # - Check behavior when a user-added address with the same prefix already exists. 42 # - Check behavior when a user-added address with same prefix is removed (SLAAC module should add a… 43 # - Ensure removal of prefix does not remove user-added address with same prefix. 44 # - Ensure disabling SLAAC module removes previously added SLAAC addresses, and re-enabling it adds… 45 # - Check behavior when prefix is added while SLAAC module is disabled and then enabled later. 47 test_name = __file__[:-3] if __file__.endswith('.py') else __file__ [all …]
|
/external/compiler-rt/test/cfi/cross-dso/icall/ |
D | diag.cpp | 1 // Cross-DSO diagnostics. 5 // * -fsanitize-trap on the caller side overrides everything. 8 // Full-recover. 9 // RUN: %clangxx_cfi_dso_diag -g -DSHARED_LIB %s -fPIC -shared -o %t-so.so 10 // RUN: %clangxx_cfi_dso_diag -g %s -o %t %t-so.so 12 // RUN: %t icv 2>&1 | FileCheck %s --check-prefix=ICALL-DIAG --check-prefix=CAST-DIAG \ 13 // RUN: --check-prefix=VCALL-DIAG --check-prefix=ALL-RECOVER 15 // RUN: %t i_v 2>&1 | FileCheck %s --check-prefix=ICALL-DIAG --check-prefix=CAST-NODIAG \ 16 // RUN: --check-prefix=VCALL-DIAG --check-prefix=ALL-RECOVER 18 // RUN: %t _cv 2>&1 | FileCheck %s --check-prefix=ICALL-NODIAG --check-prefix=CAST-DIAG \ [all …]
|
/external/libwebsockets/cmake/ |
D | FindGit.cmake | 16 # This file was originally developed by Jean-Christophe Fillion-Robin, Kitware Inc. 17 # and was partially funded by NIH grant 3P41RR013218-12S1 19 # AG 2013-02-18: I got it from here 27 # GIT_EXECUTABLE - path to git command line client 28 # GIT_FOUND - true if the command line client was found 31 # GIT_WC_INFO(<dir> <var-prefix>) 36 # <var-prefix>_WC_REVISION_HASH - Current SHA1 hash 37 # <var-prefix>_WC_REVISION - Current SHA1 hash 38 # <var-prefix>_WC_REVISION_NAME - Name associated with <var-prefix>_WC_REVISION_HASH 39 # <var-prefix>_WC_URL - output of command `git config --get remote.origin.url' [all …]
|
/external/compiler-rt/lib/interception/tests/ |
D | interception_win_test.cc | 1 //===-- interception_win_test.cc ------------------------------------------===// 8 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 217 // Add padding to avoid memory violation when scanning the prefix. in LoadActiveCode() 238 // Note that "mov edi,edi" is NOP in 32-bit only, in 64-bit it clears in LoadActiveCode() 327 FunctionPrefixKind prefix = FunctionPrefixDetour; in TEST() local 328 TestIdentityFunctionPatching(kIdentityCodeWithPrologue, override, prefix); in TEST() 329 TestIdentityFunctionPatching(kIdentityCodeWithPushPop, override, prefix); in TEST() 330 TestIdentityFunctionPatching(kIdentityCodeWithMov, override, prefix); in TEST() 331 TestIdentityFunctionPatching(kIdentityCodeWithJump, override, prefix); in TEST() [all …]
|