Searched refs:IV (Results 1 - 25 of 71) sorted by relevance

123

/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-use-table.cc27 #define IV USE_IV /* BASE_VOWEL */ macro
83 /* 0900 */ VMAbv, VMAbv, VMAbv, VMPst, IV, IV, IV, IV, IV, IV, IV, IV, IV, I
665 #undef IV macro
[all...]
H A Dhb-ot-shape-complex-myanmar-machine.rl49 IV = 2;
79 consonant_syllable = k? (c|IV|D|GB).VS? (H (c|IV).VS?)* syllable_tail;
H A Dhb-ot-shape-complex-use-machine.rl47 IV = 2; # BASE_VOWEL
99 R? (B | GB | IV) VS?
112 R? (IV) VS?
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DOFBBlockCipher.java16 private byte[] IV; field in class:OFBBlockCipher
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.
65 if (iv.length < IV.length)
67 // prepend the supplied IV with zeros (per FIPS PUB 81)
68 System.arraycopy(iv, 0, IV, IV
[all...]
H A DCFBBlockCipher.java16 private byte[] IV; field in class:CFBBlockCipher
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.
71 if (iv.length < IV.length)
73 // prepend the supplied IV with zeros (per FIPS PUB 81)
74 System.arraycopy(iv, 0, IV, IV
[all...]
H A DSICBlockCipher.java23 private byte[] IV; field in class:SICBlockCipher
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
[all...]
H A DCBCBlockCipher.java15 private byte[] IV; field in class:CBCBlockCipher
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.
78 System.arraycopy(iv, 0, IV, 0, iv.length);
82 // if null it's an IV changed only.
152 * reset the chaining vector back to the IV and reset the underlying
157 System.arraycopy(IV, 0, cbcV, 0, IV
[all...]
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-api-fst.c79 int rijndael_cipherInit(cipherInstance *cipher, BYTE mode, char *IV) { argument
85 if (IV != NULL) {
86 bcopy(IV, cipher->IV, MAX_IV_SIZE);
88 bzero(cipher->IV, MAX_IV_SIZE);
120 bcopy(cipher->IV, block, 16);
127 ((word32*)block)[0] = ((word32*)cipher->IV)[0] ^ ((word32*)input)[0];
128 ((word32*)block)[1] = ((word32*)cipher->IV)[1] ^ ((word32*)input)[1];
129 ((word32*)block)[2] = ((word32*)cipher->IV)[2] ^ ((word32*)input)[2];
130 ((word32*)block)[3] = ((word32*)cipher->IV)[
[all...]
H A Drijndael-api-fst.h44 #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 */ member in struct:__anon7338
86 int rijndael_cipherInit(cipherInstance *cipher, u_int8_t mode, char *IV);
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp232 LatticeVal &IV = TrackedGlobals[GV]; local
234 IV.markConstant(GV->getInitializer());
309 void markConstant(LatticeVal &IV, Value *V, Constant *C) { argument
310 if (!IV.markConstant(C)) return;
312 if (IV.isOverdefined())
325 LatticeVal &IV = ValueState[V]; local
326 IV.markForcedConstant(C);
328 if (IV.isOverdefined())
338 void markOverdefined(LatticeVal &IV, Value *V) { argument
339 if (!IV
350 mergeInValue(LatticeVal &IV, Value *V, LatticeVal MergeWithV) argument
684 LatticeVal IV = getValueState(PN.getIncomingValue(i)); local
859 LatticeVal &IV = ValueState[&I]; local
917 LatticeVal &IV = ValueState[&I]; local
1618 LatticeVal IV = Solver.getLatticeValueFor(Inst); local
1783 LatticeVal IV = Solver.getLatticeValueFor(&*AI); local
1825 LatticeVal IV = Solver.getLatticeValueFor(Inst); local
[all...]
H A DLoopRerollPass.cpp348 // The instructions between IV and BaseInst (but not including BaseInst).
355 DAGRootTracker(LoopReroll *Parent, Loop *L, Instruction *IV, argument
361 PreserveLCSSA(PreserveLCSSA), IV(IV), IVToIncMap(IncrMap) {}
412 Instruction *IV; member in struct:__anon12509::LoopReroll::DAGRootTracker
421 // All increment instructions for IV.
434 bool reroll(Instruction *IV, Loop *L, BasicBlock *Header, const SCEV *IterCount,
487 DEBUG(dbgs() << "LRR: Possible IV: " << *I << " = " << *PHISCEV
566 // including root increments in the use set of the primary IV.
652 static bool isLoopIncrement(User *U, Instruction *IV) { argument
1449 reroll(Instruction *IV, Loop *L, BasicBlock *Header, const SCEV *IterCount, ReductionTracker &Reductions) argument
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp82 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); local
84 << " ivar '" << IV->getDecl()->getName() << "')";
85 SourceLocation L = IV->getLocation();
157 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); local
158 os << "Access to instance variable '" << *IV->getDecl()
160 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(),
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp235 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this); local
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/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderOperatorTests.cpp269 IV = VALUE_INT_VEC, enumerator in enum:vkt::sr::__anon3731::ValueType
1441 << operInfoFunc(addName, addOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_MEDIUMP, INT_VEC_FUNCS(addVecScalar))
1442 << operInfoFunc(addName, addOp, IV, Value(IV, -2e9f, 2e9f), Value(I, -2e9f, 2e9f), notUsed, 4e-10f, 0.5f, PRECMASK_HIGHP, INT_VEC_FUNCS(addVecScalar))
1449 << operInfoFunc(addName, addOp, IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_MEDIUMP, INT_VEC_FUNCS(addScalarVec))
1450 << operInfoFunc(addName, addOp, IV, Value(I, -2e9f, 2e9f), Value(IV, -2e9f, 2e9f), notUsed, 4e-10f, 0.5f, PRECMASK_HIGHP, INT_VEC_FUNCS(addScalarVec))
1463 << operInfoFunc(subName, subOp, IV, Valu
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp289 IV = VALUE_INT_VEC, enumerator in enum:deqp::gles3::Functional::ValueType
1473 << operInfoFunc(addName, addOp, IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_LOWP_MEDIUMP, INT_VEC_FUNCS(addVecScalar))
1474 << operInfoFunc(addName, addOp, IV, Value(IV, -2e9f, 2e9f), Value(I, -2e9f, 2e9f), notUsed, 4e-10f, 0.5f, PRECMASK_HIGHP, INT_VEC_FUNCS(addVecScalar))
1481 << operInfoFunc(addName, addOp, IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_LOWP_MEDIUMP, INT_VEC_FUNCS(addScalarVec))
1482 << operInfoFunc(addName, addOp, IV, Value(I, -2e9f, 2e9f), Value(IV, -2e9f, 2e9f), notUsed, 4e-10f, 0.5f, PRECMASK_HIGHP, INT_VEC_FUNCS(addScalarVec))
1495 << operInfoFunc(subName, subOp, IV, Valu
[all...]
/external/llvm/include/llvm/ADT/
H A DPointerIntPair.h177 uintptr_t IV = reinterpret_cast<uintptr_t>(V.getOpaqueValue());
178 return unsigned(IV) ^ unsigned(IV >> 9);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp689 DwarfDebug::getExistingAbstractVariable(InlinedVariable IV, argument
692 Cleansed = IV.first;
699 DbgVariable *DwarfDebug::getExistingAbstractVariable(InlinedVariable IV) { argument
701 return getExistingAbstractVariable(IV, Cleansed);
711 void DwarfDebug::ensureAbstractVariableIsCreated(InlinedVariable IV, argument
714 if (getExistingAbstractVariable(IV, Cleansed))
722 InlinedVariable IV, const MDNode *ScopeNode) {
724 if (getExistingAbstractVariable(IV, Cleansed))
897 InlinedVariable IV) {
898 ensureAbstractVariableIsCreatedIfScoped(IV, Scop
721 ensureAbstractVariableIsCreatedIfScoped( InlinedVariable IV, const MDNode *ScopeNode) argument
896 createConcreteVariable(LexicalScope &Scope, InlinedVariable IV) argument
913 InlinedVariable IV = I.first; local
[all...]
H A DDwarfDebug.h336 DbgVariable *getExistingAbstractVariable(InlinedVariable IV,
338 DbgVariable *getExistingAbstractVariable(InlinedVariable IV);
345 DbgVariable *createConcreteVariable(LexicalScope &Scope, InlinedVariable IV);
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp225 IV = VALUE_INT_VEC, enumerator in enum:deqp::gles2::Functional::ValueType
995 << BuiltinOperInfo("add", "+", IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_ALL, INT_VEC_FUNCS(addVecScalar))
997 << BuiltinOperInfo("add", "+", IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_ALL, INT_VEC_FUNCS(addScalarVec))
1001 << BuiltinOperInfo("sub", "-", IV, Value(IV, -4.0f, 6.0f), Value(I, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_ALL, INT_VEC_FUNCS(subVecScalar))
1003 << BuiltinOperInfo("sub", "-", IV, Value(I, -4.0f, 6.0f), Value(IV, -6.0f, 5.0f), notUsed, 0.1f, 0.5f, PRECMASK_ALL, INT_VEC_FUNCS(subScalarVec))
1007 << BuiltinOperInfo("mul", "*", IV, Valu
[all...]
/external/clang/lib/Sema/
H A DSemaExprMember.cpp1322 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); local
1324 if (!IV) {
1331 IV = Corrected.getCorrectionDeclAs<ObjCIvarDecl>();
1339 Decl *D = cast<Decl>(IV->getDeclContext());
1363 if (IV->isInvalidDecl())
1367 if (S.DiagnoseUseOfDecl(IV, MemberLoc))
1369 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
1370 IV->getAccessControl() != ObjCIvarDecl::Package) {
1389 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
1393 << IV
[all...]
/external/boringssl/linux-arm/crypto/aes/
H A Dbsaes-armv7.S1091 ldr r8, [ip] @ IV is 1st arg on the stack
1093 sub sp, #0x10 @ scratch space to carry over the IV
1132 vld1.8 {q15}, [r8] @ load IV
1151 vstmia r9, {q15} @ put aside IV
1155 vldmia r9, {q14} @ reload IV
1157 veor q0, q0, q14 @ ^= IV
1192 vstmia r9, {q15} @ put aside IV
1209 vldmia r9, {q14} @ reload IV
1211 veor q0, q0, q14 @ ^= IV
1232 vldmia r9,{q14} @ reload IV
[all...]
/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp170 if (ObjCIvarRefExpr *IV = dyn_cast<ObjCIvarRefExpr>(LHS)) {
171 ObjCIvarDecl *IVDecl = IV->getDecl();
/external/boringssl/src/crypto/aes/asm/
H A Dbsaes-armv7.pl1140 ldr $ivp, [ip] @ IV is 1st arg on the stack
1142 sub sp, #0x10 @ scratch space to carry over the IV
1181 vld1.8 {@XMM[15]}, [$ivp] @ load IV
1200 vstmia $fp, {@XMM[15]} @ put aside IV
1204 vldmia $fp, {@XMM[14]} @ reload IV
1206 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1241 vstmia $fp, {@XMM[15]} @ put aside IV
1258 vldmia $fp, {@XMM[14]} @ reload IV
1260 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1281 vldmia $fp,{@XMM[14]} @ reload IV
[all...]
/external/deqp/modules/gles2/performance/
H A Des2pShaderOperatorTests.cpp1960 IV = VALUE_INT_VEC,
2110 { intCompareGroup, "lessThan", "lessThan", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2111 { intCompareGroup, "lessThanEqual", "lessThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2112 { intCompareGroup, "greaterThan", "greaterThan", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2113 { intCompareGroup, "greaterThanEqual", "greaterThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2114 { intCompareGroup, "equal", "equal", { BV, IV, I
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pShaderOperatorTests.cpp1971 IV = VALUE_INT_VEC,
2153 { intCompareGroup, "lessThan", "lessThan", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2154 { intCompareGroup, "lessThanEqual", "lessThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2155 { intCompareGroup, "greaterThan", "greaterThan", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2156 { intCompareGroup, "greaterThanEqual", "greaterThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false, false, PRECMASK_ALL },
2157 { intCompareGroup, "equal", "equal", { BV, IV, I
[all...]

Completed in 753 milliseconds

123