Home
last modified time | relevance | path

Searched refs:IV (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/external/boringssl/src/crypto/cipher_extra/test/nist_cavp/
Daes_256_ctr.txt9 IV: 014730f80ac625fe84f026c60bfd547d
16 IV: 0b24af36193ce4665f2825d7b4749c98
23 IV: 761c1fe41a18acf20d241650611d90f1
30 IV: 8a560769d605868ad80d819bdba03771
37 IV: 91fbef2d15a97816060bee1feaa49afe
45 IV: 014730f80ac625fe84f026c60bfd547d
52 IV: 0b24af36193ce4665f2825d7b4749c98
59 IV: 761c1fe41a18acf20d241650611d90f1
66 IV: 8a560769d605868ad80d819bdba03771
73 IV: 91fbef2d15a97816060bee1feaa49afe
[all …]
Daes_256_cbc.txt8 IV: 00000000000000000000000000000000
15 IV: 00000000000000000000000000000000
22 IV: 00000000000000000000000000000000
29 IV: 00000000000000000000000000000000
36 IV: 00000000000000000000000000000000
43 IV: 00000000000000000000000000000000
50 IV: 00000000000000000000000000000000
57 IV: 00000000000000000000000000000000
64 IV: 00000000000000000000000000000000
71 IV: 00000000000000000000000000000000
[all …]
Daes_128_ctr.txt9 IV: f34481ec3cc627bacd5dc3fb08f273e6
16 IV: 9798c4640bad75c7c3227db910174e72
23 IV: 96ab5c2ff612d9dfaae8c31f30c42168
30 IV: 6a118a874519e64e9963798a503f1d35
37 IV: cb9fceec81286ca3e989bd979b0cb284
44 IV: b26aeb1874e47ca8358ff22378f09144
51 IV: 58c8e00b2631686d54eab84b91f0aca1
59 IV: f34481ec3cc627bacd5dc3fb08f273e6
66 IV: 9798c4640bad75c7c3227db910174e72
73 IV: 96ab5c2ff612d9dfaae8c31f30c42168
[all …]
Daes_128_cbc.txt8 IV: 00000000000000000000000000000000
15 IV: 00000000000000000000000000000000
22 IV: 00000000000000000000000000000000
29 IV: 00000000000000000000000000000000
36 IV: 00000000000000000000000000000000
43 IV: 00000000000000000000000000000000
50 IV: 00000000000000000000000000000000
57 IV: 00000000000000000000000000000000
64 IV: 00000000000000000000000000000000
71 IV: 00000000000000000000000000000000
[all …]
Daes_192_ctr.txt9 IV: 1b077a6af4b7f98229de786d7516b639
16 IV: 9c2d8842e5f48f57648205d39a239af1
23 IV: bff52510095f518ecca60af4205444bb
30 IV: 51719783d3185a535bd75adc65071ce1
37 IV: 26aa49dcfe7629a8901a69a9914e6dfd
44 IV: 941a4773058224e1ef66d10e0a6ee782
52 IV: 1b077a6af4b7f98229de786d7516b639
59 IV: 9c2d8842e5f48f57648205d39a239af1
66 IV: bff52510095f518ecca60af4205444bb
73 IV: 51719783d3185a535bd75adc65071ce1
[all …]
Daes_192_cbc.txt8 IV: 00000000000000000000000000000000
15 IV: 00000000000000000000000000000000
22 IV: 00000000000000000000000000000000
29 IV: 00000000000000000000000000000000
36 IV: 00000000000000000000000000000000
43 IV: 00000000000000000000000000000000
50 IV: 00000000000000000000000000000000
57 IV: 00000000000000000000000000000000
64 IV: 00000000000000000000000000000000
71 IV: 00000000000000000000000000000000
[all …]
Dtdes_cbc.txt8 IV: 0000000000000000
15 IV: 0000000000000000
22 IV: 0000000000000000
29 IV: 0000000000000000
36 IV: 0000000000000000
43 IV: 0000000000000000
50 IV: 0000000000000000
57 IV: 0000000000000000
64 IV: 0000000000000000
71 IV: 0000000000000000
[all …]
/external/boringssl/src/crypto/cipher_extra/test/
Dcipher_tests.txt88 IV = fedcba9876543210
96 IV = fedcba9876543210
104 IV = fedcba9876543210
173 # AES-bits-CBC:key:IV/ciphertext':plaintext:ciphertext:encdec
177 IV = 000102030405060708090A0B0C0D0E0F
183 IV = 7649ABAC8119B246CEE98E9B12E9197D
189 IV = 5086CB9B507219EE95DB113A917678B2
195 IV = 73BED6B8E3C1743B7116E69E22229516
203 IV = 000102030405060708090A0B0C0D0E0F
209 IV = F58C4C04D6E5F1BA779EABFB5F7BFBD6
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
DOFBBlockCipher.java16 private byte[] IV; field in OFBBlockCipher
39 this.IV = new byte[cipher.getBlockSize()]; in OFBBlockCipher()
65 if (iv.length < IV.length) in init()
68 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length); in init()
69 for (int i = 0; i < IV.length - iv.length; i++) in init()
71 IV[i] = 0; in init()
76 System.arraycopy(iv, 0, IV, 0, IV.length); in init()
152 System.arraycopy(IV, 0, ofbV, 0, IV.length); in reset()
DCFBBlockCipher.java16 private byte[] IV; field in CFBBlockCipher
42 this.IV = new byte[cipher.getBlockSize()]; in CFBBlockCipher()
71 if (iv.length < IV.length) in init()
74 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length); in init()
75 for (int i = 0; i < IV.length - iv.length; i++) in init()
77 IV[i] = 0; in init()
82 System.arraycopy(iv, 0, IV, 0, IV.length); in init()
263 System.arraycopy(IV, 0, cfbV, 0, IV.length); in reset()
DSICBlockCipher.java23 private byte[] IV; field in SICBlockCipher
39 this.IV = new byte[blockSize]; in SICBlockCipher()
53 this.IV = Arrays.clone(ivParam.getIV()); in init()
55 if (blockSize < IV.length) in init()
62 if (blockSize - IV.length > maxCounterSize) in init()
126 if (IV.length < blockSize) in checkCounter()
128 for (int i = 0; i != IV.length; i++) in checkCounter()
130 if (counter[i] != IV[i]) in checkCounter()
238 System.arraycopy(IV, 0, counter, 0, IV.length); in reset()
270 if (i < IV.length) in getPosition()
[all …]
DCBCBlockCipher.java15 private byte[] IV; field in CBCBlockCipher
34 this.IV = new byte[blockSize]; in CBCBlockCipher()
78 System.arraycopy(iv, 0, IV, 0, iv.length); in init()
157 System.arraycopy(IV, 0, cbcV, 0, IV.length); in reset()
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
Drijndael-api-fst.c79 int rijndael_cipherInit(cipherInstance *cipher, BYTE mode, char *IV) { in rijndael_cipherInit() argument
85 if (IV != NULL) { in rijndael_cipherInit()
86 bcopy(IV, cipher->IV, MAX_IV_SIZE); in rijndael_cipherInit()
88 bzero(cipher->IV, MAX_IV_SIZE); in rijndael_cipherInit()
120 bcopy(cipher->IV, block, 16); in rijndael_blockEncrypt()
127 ((word32*)block)[0] = ((word32*)cipher->IV)[0] ^ ((word32*)input)[0]; in rijndael_blockEncrypt()
128 ((word32*)block)[1] = ((word32*)cipher->IV)[1] ^ ((word32*)input)[1]; in rijndael_blockEncrypt()
129 ((word32*)block)[2] = ((word32*)cipher->IV)[2] ^ ((word32*)input)[2]; in rijndael_blockEncrypt()
130 ((word32*)block)[3] = ((word32*)cipher->IV)[3] ^ ((word32*)input)[3]; in rijndael_blockEncrypt()
156 bcopy(cipher->IV, iv, 16); in rijndael_blockEncrypt()
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DSCCP.cpp233 LatticeVal &IV = TrackedGlobals[GV]; in TrackValueOfGlobalVariable() local
235 IV.markConstant(GV->getInitializer()); in TrackValueOfGlobalVariable()
317 void markConstant(LatticeVal &IV, Value *V, Constant *C) { in markConstant() argument
318 if (!IV.markConstant(C)) return; in markConstant()
320 if (IV.isOverdefined()) in markConstant()
333 LatticeVal &IV = ValueState[V]; in markForcedConstant() local
334 IV.markForcedConstant(C); in markForcedConstant()
336 if (IV.isOverdefined()) in markForcedConstant()
346 void markOverdefined(LatticeVal &IV, Value *V) { in markOverdefined() argument
347 if (!IV.markOverdefined()) return; in markOverdefined()
[all …]
/external/llvm/lib/Transforms/Scalar/
DSCCP.cpp234 LatticeVal &IV = TrackedGlobals[GV]; in TrackValueOfGlobalVariable() local
236 IV.markConstant(GV->getInitializer()); in TrackValueOfGlobalVariable()
320 void pushToWorkList(LatticeVal &IV, Value *V) { in pushToWorkList() argument
321 if (IV.isOverdefined()) in pushToWorkList()
330 void markConstant(LatticeVal &IV, Value *V, Constant *C) { in markConstant() argument
331 if (!IV.markConstant(C)) return; in markConstant()
333 pushToWorkList(IV, V); in markConstant()
343 LatticeVal &IV = ValueState[V]; in markForcedConstant() local
344 IV.markForcedConstant(C); in markForcedConstant()
346 pushToWorkList(IV, V); in markForcedConstant()
[all …]
DLoopRerollPass.cpp352 DAGRootTracker(LoopReroll *Parent, Loop *L, Instruction *IV, in DAGRootTracker()
359 PreserveLCSSA(PreserveLCSSA), IV(IV), IVToIncMap(IncrMap), in DAGRootTracker()
398 void replaceIV(Instruction *Inst, Instruction *IV, const SCEV *IterCount);
413 Instruction *IV; member
441 bool isLoopControlIV(Loop *L, Instruction *IV);
445 bool reroll(Instruction *IV, Loop *L, BasicBlock *Header, const SCEV *IterCount,
473 Instruction &IV) { in getIncrmentFactorSCEV() argument
478 if (!MulSCEV && IV.getType()->isPointerTy()) in getIncrmentFactorSCEV()
480 const PointerType *PTy = cast<PointerType>(IV.getType()); in getIncrmentFactorSCEV()
483 SE->getSizeOfExpr(SE->getEffectiveSCEVType(IV.getType()), ElTy); in getIncrmentFactorSCEV()
[all …]
/external/swiftshader/third_party/LLVM/test/Transforms/LoopSimplify/
Dsingle-backedge.ll2 ; for all loops. This allows the -indvars pass to recognize the %IV
14 %IV = phi i32 [ 1, %0 ], [ %IV2, %BE1 ], [ %IV2, %BE2 ] ; <i32> [#uses=2]
15 store i32 %IV, i32* null
16 %IV2 = add i32 %IV, 2 ; <i32> [#uses=2]
/external/llvm/test/Transforms/LoopStrengthReduce/
Dshare_ivs.ll13 %IV = phi i32 [ 0, %0 ], [ %IVn, %Loop ] ; <i32> [#uses=3]
14 %C = mul i32 %IV, 18 ; <i32> [#uses=1]
15 %D = mul i32 %IV, 18 ; <i32> [#uses=1]
19 %IVn = add i32 %IV, 1 ; <i32> [#uses=1]
/external/swiftshader/third_party/LLVM/test/Transforms/LoopStrengthReduce/
Dshare_ivs.ll13 %IV = phi i32 [ 0, %0 ], [ %IVn, %Loop ] ; <i32> [#uses=3]
14 %C = mul i32 %IV, 18 ; <i32> [#uses=1]
15 %D = mul i32 %IV, 18 ; <i32> [#uses=1]
19 %IVn = add i32 %IV, 1 ; <i32> [#uses=1]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp269 IV = VALUE_INT_VEC, enumerator
1441 …<< operInfoFunc(addName, addOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.… in init()
1442 …<< operInfoFunc(addName, addOp, IV, Value(IV, -2e9f, 2e9f), Value(I, -2e9f, 2e9f), notUsed, 4e… in init()
1449 …<< operInfoFunc(addName, addOp, IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.… in init()
1450 …<< operInfoFunc(addName, addOp, IV, Value(I, -2e9f, 2e9f), Value(IV, -2e9f, 2e9f), notUsed, 4e… in init()
1463 …<< operInfoFunc(subName, subOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.… in init()
1464 …<< operInfoFunc(subName, subOp, IV, Value(IV, -2e9f, 2e9f), Value(I, -2e9f, 2e9f), notUsed, 4e… in init()
1471 …<< operInfoFunc(subName, subOp, IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.… in init()
1472 …<< operInfoFunc(subName, subOp, IV, Value(I, -2e9f, 2e9f), Value(IV, -2e9f, 2e9f), notUsed, 4e… in init()
1485 …<< operInfoFunc(mulName, mulOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0… in init()
[all …]
/external/tcpdump/tests/
Dieee802.11_rx-stbc.out1 7268us tsft 2462 MHz 11n -51dBm signal antenna 1 150.0 Mb/s MCS 7 40 MHz short GI RX-STBC1 Data IV:…
2 …MHz 11n -46dBm signal antenna 1 135.0 Mb/s MCS 7 40 MHz long GI RX-STBC2 Data IV: 1 Pad 20 KeyID 0
3 …Hz 11n -45dBm signal antenna 1 150.0 Mb/s MCS 7 40 MHz short GI RX-STBC3 Data IV: 5 Pad 20 KeyID 0
/external/llvm/test/Transforms/LoopSimplify/
Dsingle-backedge.ll2 ; for all loops. This allows the -indvars pass to recognize the %IV
16 %IV = phi i32 [ 1, %0 ], [ %IV2, %BE1 ], [ %IV2, %BE2 ] ; <i32> [#uses=2]
17 store i32 %IV, i32* null, !dbg !7
18 %IV2 = add i32 %IV, 2, !dbg !8 ; <i32> [#uses=2]
/external/deqp/modules/gles3/functional/
Des3fShaderOperatorTests.cpp289 IV = VALUE_INT_VEC, enumerator
1473 …<< operInfoFunc(addName, addOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.… in init()
1474 …<< operInfoFunc(addName, addOp, IV, Value(IV, -2e9f, 2e9f), Value(I, -2e9f, 2e9f), notUsed, 4e… in init()
1481 …<< operInfoFunc(addName, addOp, IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.… in init()
1482 …<< operInfoFunc(addName, addOp, IV, Value(I, -2e9f, 2e9f), Value(IV, -2e9f, 2e9f), notUsed, 4e… in init()
1495 …<< operInfoFunc(subName, subOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.… in init()
1496 …<< operInfoFunc(subName, subOp, IV, Value(IV, -2e9f, 2e9f), Value(I, -2e9f, 2e9f), notUsed, 4e… in init()
1503 …<< operInfoFunc(subName, subOp, IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.… in init()
1504 …<< operInfoFunc(subName, subOp, IV, Value(I, -2e9f, 2e9f), Value(IV, -2e9f, 2e9f), notUsed, 4e… in init()
1517 …<< operInfoFunc(mulName, mulOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0… in init()
[all …]
/external/llvm/lib/Analysis/
DSparsePropagation.cpp235 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this); in visitPHINode() local
236 if (IV != LatticeFunc->getUntrackedVal()) in visitPHINode()
237 UpdateState(PN, IV); in visitPHINode()
285 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this); in visitInst() local
286 if (IV != LatticeFunc->getUntrackedVal()) in visitInst()
287 UpdateState(I, IV); in visitInst()
/external/clang/lib/StaticAnalyzer/Checkers/
DDereferenceChecker.cpp81 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource() local
83 << " ivar '" << IV->getDecl()->getName() << "')"; in AddDerefSource()
84 SourceLocation L = IV->getLocation(); in AddDerefSource()
166 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); in reportBug() local
167 os << "Access to instance variable '" << *IV->getDecl() in reportBug()
169 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(), in reportBug()

12345678910>>...12