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

  /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...]
  /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...]
SemaExpr.cpp 494 const ObjCIvarDecl *IV = OIRE->getDecl();
495 if (!IV)
498 DeclarationName MemberName = IV->getDeclName();
510 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
512 && (*ClassDeclared->ivar_begin()) == IV) {
542 S.Diag(IV->getLocation(), diag::note_ivar_decl);
    [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...]
LoopStrengthReduce.cpp 97 // Stress test IV chain generation.
100 cl::desc("Stress test LSR IV chains"));
741 /// We currently allow expansion of IV increments that involve adds,
744 /// TODO: Allow UDivExpr if we can find an existing IV increment that is an
    [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...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 382 unsigned ObjCIvarBitfieldGroupNo(ObjCIvarDecl *IV);
384 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result);
386 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result);
388 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result);
390 QualType GetGroupRecordTypeForObjCIvarBitfield(ObjCIvarDecl *IV);
392 ObjCIvarDecl *IV,
476 Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV);
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 

Completed in 675 milliseconds