/prebuilts/go/darwin-x86/src/crypto/ecdsa/ |
ecdsa.go | 8 // This implementation derives the nonce from an AES-CTR CSPRNG keyed by 10 // a result of Coron; the AES-CTR stream is IRO under standard assumptions. 43 aesIV = "IV for ECDSA CTR" 171 // Create an AES-CTR instance to use as a CSPRNG. 178 // the output of the AES-CTR instance.
|
/prebuilts/go/linux-x86/src/crypto/ecdsa/ |
ecdsa.go | 8 // This implementation derives the nonce from an AES-CTR CSPRNG keyed by 10 // a result of Coron; the AES-CTR stream is IRO under standard assumptions. 43 aesIV = "IV for ECDSA CTR" 171 // Create an AES-CTR instance to use as a CSPRNG. 178 // the output of the AES-CTR instance.
|
/libcore/benchmarks/src/benchmarks/regression/ |
CipherBenchmark.java | 62 CTR,
|
/external/clang/lib/StaticAnalyzer/Core/ |
SVals.cpp | 54 if (const FunctionCodeRegion *CTR = R->getAs<FunctionCodeRegion>()) 55 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CTR->getDecl()))
|
/prebuilts/go/darwin-x86/src/crypto/cipher/ |
cfb.go | 29 // able to match CTR/OFB performance.
|
cipher_test.go | 82 ctr := cipher.NewCTR(b, iv) 83 ctr.XORKeyStream(ct, pt[:0]) 84 assertEqual("CTR", ct, pt)
|
/prebuilts/go/linux-x86/src/crypto/cipher/ |
cfb.go | 29 // able to match CTR/OFB performance.
|
cipher_test.go | 82 ctr := cipher.NewCTR(b, iv) 83 ctr.XORKeyStream(ct, pt[:0]) 84 assertEqual("CTR", ct, pt)
|
/prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/ |
plan9.go | 72 return "BR (CTR)" 77 return "BL (CTR)" 122 return "CTR"
|
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/ |
plan9.go | 72 return "BR (CTR)" 77 return "BL (CTR)" 122 return "CTR"
|
/external/llvm/lib/Target/PowerPC/ |
PPCInstrInfo.cpp | 51 cl::desc("Disable analysis for CTR loops")); 445 // Note: If the condition register is set to CTR or CTR8 then this is a 504 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR, 515 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR, 572 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR, 586 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR, 654 else if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8) 669 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8) 697 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8) [all...] |
PPCCTRLoops.cpp | 1 //===-- PPCCTRLoops.cpp - Identify and generate CTR loops -----------------===// 11 // that decrement and test the count register (CTR) (bdnz and friends). 18 // Criteria for CTR loops: 21 // - No nested CTR loops. 65 STATISTIC(NumCTRLoops, "Number of loops converted to CTR loops"); 144 INITIALIZE_PASS_BEGIN(PPCCTRLoops, "ppc-ctr-loops", "PowerPC CTR Loops", 149 INITIALIZE_PASS_END(PPCCTRLoops, "ppc-ctr-loops", "PowerPC CTR Loops", 157 INITIALIZE_PASS_BEGIN(PPCCTRLoopsVerify, "ppc-ctr-loops-verify" [all...] |
/prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/testdata/ |
ppc64.s | 353 MOVW CTR, R1 360 MOVW R1, CTR 405 BR (CTR) // JMP CTR 451 // BC 4, (CTR) // TODO - should work
|
/prebuilts/go/linux-x86/src/cmd/asm/internal/asm/testdata/ |
ppc64.s | 353 MOVW CTR, R1 360 MOVW R1, CTR 405 BR (CTR) // JMP CTR 451 // BC 4, (CTR) // TODO - should work
|
/external/lzma/Asm/x86/ |
AesOpt.asm | 168 ; ---------- AES-CTR ----------
|
/hardware/interfaces/keymaster/3.0/ |
types.hal | 178 CTR = 3,
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/ppc64/ |
list9.go | 77 return "CTR"
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/ppc64/ |
list9.go | 77 return "CTR"
|
/external/boringssl/src/crypto/cipher_extra/asm/ |
aes128gcmsiv-x86_64.pl | 1166 my $CTR = "%xmm15"; 1255 vmovdqu ($CT,$LEN), $CTR 1256 vpor OR_MASK(%rip), $CTR, $CTR # CTR = [1]TAG[126...32][00..00] 1265 vmovdqa $CTR, $CTR1 1271 vpaddd two(%rip), $CTR5, $CTR [all...] |
/prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/ |
operand_test.go | 336 {"(CTR)", "(CTR)"}, 347 {"CTR", "CTR"},
|
/prebuilts/go/linux-x86/src/cmd/asm/internal/asm/ |
operand_test.go | 336 {"(CTR)", "(CTR)"}, 347 {"CTR", "CTR"},
|
/hardware/interfaces/keymaster/3.0/vts/functional/ |
keymaster_hidl_hal_test.cpp | 792 .BlockMode(BlockMode::CTR) 799 .BlockMode(BlockMode::CTR) [all...] |
keymaster_tags.h | 373 case BlockMode::CTR: 374 return "Ctr";
|
/system/security/keystore/ |
keystore_cli_v2.cpp | 161 parameters.Authorization(TAG_BLOCK_MODE, BlockMode::CTR);
|
/external/boringssl/src/crypto/cipher_extra/test/nist_cavp/ |
make_cavp.go | 32 swapIVAndPlaintext = flag.Bool("swap-iv-plaintext", false, "When processing CBC vector files for CTR mode, swap IV and plaintext.")
|