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

1 2

  /libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java 47 private static final byte[] IV = new byte[IV_SIZE];
54 IV[i] = (byte) i;
71 spec = new IvParameterSpec(IV);
CipherBenchmark.java 44 private static final byte[] IV = new byte[IV_SIZE];
51 IV[i] = (byte) i;
127 spec = new IvParameterSpec(IV);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 14 private byte[] IV;
35 this.IV = new byte[cipher.getBlockSize()];
51 * Initialise the cipher and, possibly, the initialisation vector (IV).
52 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
53 * 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 18 private byte[] IV;
32 this.IV = new byte[blockSize];
57 byte[] iv = ivParam.getIV();
58 System.arraycopy(iv, 0, IV, 0, IV.length);
62 // if null it's an IV changed only.
110 System.arraycopy(IV, 0, counter, 0, counter.length);
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 15 private byte[] IV;
37 this.IV = new byte[cipher.getBlockSize()];
53 * Initialise the cipher and, possibly, the initialisation vector (IV).
54 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
55 * An IV which is too short is handled in FIPS compliant fashion.
73 byte[] iv = ivParam.getIV();
75 if (iv.length < IV.length)
77 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 80 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex);
82 << " ivar '" << IV->getDecl()->getName() << "')";
83 SourceLocation L = IV->getLocation();
151 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S);
152 os << "Access to instance variable '" << *IV->getDecl()
154 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);
InstructionSimplify.cpp     [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 133 Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));
138 IV,
  /art/test/100-reflect2/src/
Main.java 179 m = Main.class.getDeclaredMethod("IV", int.class);
238 private static void IV(int i) {
  /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 411 Value *IV = PN->getIncomingValue(i);
415 NewPN->addIncoming(IV, IBB);
418 UniqueValue = IV;
419 else if (UniqueValue != IV)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 700 APSInt IV;
701 if (OOE->EvaluateAsInt(IV, getContext())) {
702 assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType()));
705 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType());
706 SVal X = svalBuilder.makeIntVal(IV);
    [all...]
  /frameworks/av/drm/common/
IDrmManagerService.cpp 719 const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) {
734 if (NULL != IV) {
735 data.writeInt32(IV->length);
736 data.write(IV->data, IV->length);
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 299 llvm::PHINode *IV;
314 // iv = PHI [CondBB -> LowerBound], [LoopHeader -> NextIV ]
315 // iv.next = iv + 1
316 // if (iv.next < Upperbound)
321 IV = Builder.CreatePHI(LowerBound->getType(), 2, "X");
322 IV->addIncoming(LowerBound, CondBB);
323 IVNext = Builder.CreateNUWAdd(IV, Builder.getInt32(1));
324 IV->addIncoming(IVNext, HeaderBB);
329 *LoopIV = IV;
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp     [all...]
SemaDeclObjC.cpp     [all...]
SemaDeclAttr.cpp 227 bool IV = HP && isFunctionOrMethodVariadic(D);
241 if (Idx < 1 || (!IV && Idx > NumParams)) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp     [all...]
SCCP.cpp 230 LatticeVal &IV = TrackedGlobals[GV];
232 IV.markConstant(GV->getInitializer());
307 void markConstant(LatticeVal &IV, Value *V, Constant *C) {
308 if (!IV.markConstant(C)) return;
310 if (IV.isOverdefined())
323 LatticeVal &IV = ValueState[V];
324 IV.markForcedConstant(C);
326 if (IV.isOverdefined())
336 void markOverdefined(LatticeVal &IV, Value *V) {
337 if (!IV.markOverdefined()) return
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 61 private static final byte[] IV = new byte[] {
266 AlgorithmParameterSpec ap = new IvParameterSpec(IV);
271 assertTrue("IVs differ", Arrays.equals(cipherIV, IV));
295 AlgorithmParameterSpec ap = new IvParameterSpec(IV);
300 assertTrue("IVs differ", Arrays.equals(cipherIV, IV));
333 + ".iv");
334 IvParameterSpec iv = new IvParameterSpec(ivMaterial); local
336 c.init(Cipher.DECRYPT_MODE, k, iv);
391 + ".iv");
392 IvParameterSpec iv = new IvParameterSpec(ivMaterial) local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderOperatorTests.cpp 225 IV = VALUE_INT_VEC,
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderOperatorTests.cpp 289 IV = VALUE_INT_VEC,
    [all...]

Completed in 463 milliseconds

1 2