HomeSort by relevance Sort by last modified time
    Searched defs:IV (Results 1 - 25 of 53) sorted by null

1 2 3

  /libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java 38 private static final byte[] IV = new byte[IV_SIZE];
45 IV[i] = (byte) i;
63 spec = new IvParameterSpec(IV);
CipherBenchmark.java 40 private static final byte[] IV = new byte[IV_SIZE];
47 IV[i] = (byte) i;
124 spec = new IvParameterSpec(IV);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 16 private byte[] IV;
39 this.IV = new byte[cipher.getBlockSize()];
45 * Initialise the cipher and, possibly, the initialisation vector (IV).
46 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
47 * An IV which is too short is handled in FIPS compliant fashion.
63 byte[] iv = ivParam.getIV();
65 if (iv.length < IV.length)
67 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
CBCBlockCipher.java 15 private byte[] IV;
34 this.IV = new byte[blockSize];
50 * Initialise the cipher and, possibly, the initialisation vector (IV).
51 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
71 byte[] iv = ivParam.getIV();
73 if (iv.length != blockSize)
78 System.arraycopy(iv, 0, IV, 0, iv.length)
    [all...]
CFBBlockCipher.java 16 private byte[] IV;
42 this.IV = new byte[cipher.getBlockSize()];
49 * Initialise the cipher and, possibly, the initialisation vector (IV).
50 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
51 * An IV which is too short is handled in FIPS compliant fashion.
69 byte[] iv = ivParam.getIV();
71 if (iv.length < IV.length)
73 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
SICBlockCipher.java 23 private byte[] IV;
39 this.IV = new byte[blockSize];
53 this.IV = Arrays.clone(ivParam.getIV());
55 if (blockSize < IV.length)
57 throw new IllegalArgumentException("CTR/SIC mode requires IV no greater than: " + blockSize + " bytes.");
62 if (blockSize - IV.length > maxCounterSize)
64 throw new IllegalArgumentException("CTR/SIC mode requires IV of at least: " + (blockSize - maxCounterSize) + " bytes.");
67 // if null it's an IV changed only.
125 // if the IV is the same as the blocksize we assume the user knows what they are doing
126 if (IV.length < blockSize
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
SparsePropagation.cpp 234 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this);
235 if (IV != LatticeFunc->getUntrackedVal())
236 UpdateState(PN, IV);
284 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this);
285 if (IV != LatticeFunc->getUntrackedVal())
286 UpdateState(I, IV);
LoopInfo.cpp 179 PHINode *IV = getCanonicalInductionVariable();
180 if (IV == 0 || IV->getNumIncomingValues() != 2) return 0;
182 bool P0InLoop = contains(IV->getIncomingBlock(0));
183 Value *Inc = IV->getIncomingValue(!P0InLoop);
184 BasicBlock *BackedgeBlock = IV->getIncomingBlock(!P0InLoop);
InstructionSimplify.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 81 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex);
83 << " ivar '" << IV->getDecl()->getName() << "')";
84 SourceLocation L = IV->getLocation();
166 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S);
167 os << "Access to instance variable '" << *IV->getDecl()
169 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(),
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.h 44 #define MAX_IV_SIZE 16 /* # bytes needed to represent an IV */
70 u_int8_t IV[MAX_IV_SIZE]; /* A possible Initialization Vector for ciphering */
86 int rijndael_cipherInit(cipherInstance *cipher, u_int8_t mode, char *IV);
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 235 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this);
236 if (IV != LatticeFunc->getUntrackedVal())
237 UpdateState(PN, IV);
285 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this);
286 if (IV != LatticeFunc->getUntrackedVal())
287 UpdateState(I, IV);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 140 Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));
145 IV,
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SystemUIModes.java 54 public static class IV extends ImageView implements View.OnSystemUiVisibilityChangeListener {
57 public IV(Context context) {
60 public IV(Context context, AttributeSet attrs) {
177 IV mImage;
195 mImage = (IV) findViewById(R.id.image);
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 406 Value *IV = PN->getIncomingValue(i);
410 NewPN->addIncoming(IV, IBB);
413 UniqueValue = IV;
414 else if (UniqueValue != IV)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LoopSimplify.cpp 682 Value *IV = PN->getIncomingValue(i);
686 NewPN->addIncoming(IV, IBB);
689 UniqueValue = IV;
690 else if (UniqueValue != IV)
  /art/test/100-reflect2/src/
Main.java 197 m = Main.class.getDeclaredMethod("IV", int.class);
256 private static void IV(int i) {
  /device/google/contexthub/lib/include/nanohub/
nanohub.h 140 uint32_t IV[AES_BLOCK_WORDS];
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 734 APSInt IV;
735 if (OOE->EvaluateAsInt(IV, getContext())) {
736 assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType()));
739 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType());
740 SVal X = svalBuilder.makeIntVal(IV);
    [all...]
  /frameworks/av/drm/common/
IDrmManagerService.cpp 722 const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) {
737 if (NULL != IV) {
738 data.writeInt32(IV->length);
739 data.write(IV->data, IV->length);
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp     [all...]
  /external/llvm/lib/CodeGen/
WinEHPrepare.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp     [all...]
SCCP.cpp 234 LatticeVal &IV = TrackedGlobals[GV];
236 IV.markConstant(GV->getInitializer());
320 void pushToWorkList(LatticeVal &IV, Value *V) {
321 if (IV.isOverdefined())
330 void markConstant(LatticeVal &IV, Value *V, Constant *C) {
331 if (!IV.markConstant(C)) return;
333 pushToWorkList(IV, V);
343 LatticeVal &IV = ValueState[V];
344 IV.markForcedConstant(C);
346 pushToWorkList(IV, V)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
JumpThreading.cpp     [all...]

Completed in 1360 milliseconds

1 2 3