/external/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 234 LatticeVal &IV = TrackedGlobals[GV]; in TrackValueOfGlobalVariable() local 320 void pushToWorkList(LatticeVal &IV, Value *V) { in pushToWorkList() 330 void markConstant(LatticeVal &IV, Value *V, Constant *C) { in markConstant() 343 LatticeVal &IV = ValueState[V]; in markForcedConstant() local 353 void markOverdefined(LatticeVal &IV, Value *V) { in markOverdefined() 365 void mergeInValue(LatticeVal &IV, Value *V, LatticeVal MergeWithV) { in mergeInValue() 699 LatticeVal IV = getValueState(PN.getIncomingValue(i)); in visitPHINode() local 880 LatticeVal &IV = ValueState[&I]; in visitBinaryOperator() local 942 LatticeVal &IV = ValueState[&I]; in visitCmpInst() local 1034 LatticeVal &IV = ValueState[&I]; in visitLoadInst() local [all …]
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 221 ValueLatticeElement &IV = TrackedGlobals[GV]; in TrackValueOfGlobalVariable() local 372 void pushToWorkList(ValueLatticeElement &IV, Value *V) { in pushToWorkList() 380 void pushToWorkListMsg(ValueLatticeElement &IV, Value *V) { in pushToWorkListMsg() 388 bool markConstant(ValueLatticeElement &IV, Value *V, Constant *C, in markConstant() 405 bool markOverdefined(ValueLatticeElement &IV, Value *V) { in markOverdefined() 419 bool mergeInValue(ValueLatticeElement &IV, Value *V, in mergeInValue() 771 ValueLatticeElement IV = getValueState(PN.getIncomingValue(i)); in visitPHINode() local 964 ValueLatticeElement &IV = ValueState[&I]; in visitUnaryOperator() local 991 ValueLatticeElement &IV = ValueState[&I]; in visitBinaryOperator() local 1159 ValueLatticeElement &IV = ValueState[&I]; in visitLoadInst() local [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 295 LatticeVal &IV = TrackedGlobals[GV]; in TrackValueOfGlobalVariable() local 425 void pushToWorkList(LatticeVal &IV, Value *V) { in pushToWorkList() 434 bool markConstant(LatticeVal &IV, Value *V, Constant *C) { in markConstant() 448 LatticeVal &IV = ValueState[V]; in markForcedConstant() local 457 bool markOverdefined(LatticeVal &IV, Value *V) { in markOverdefined() 469 bool mergeInValue(LatticeVal &IV, Value *V, LatticeVal MergeWithV) { in mergeInValue() 803 LatticeVal IV = getValueState(PN.getIncomingValue(i)); in visitPHINode() local 980 LatticeVal &IV = ValueState[&I]; in visitUnaryOperator() local 1004 LatticeVal &IV = ValueState[&I]; in visitBinaryOperator() local 1158 LatticeVal &IV = ValueState[&I]; in visitLoadInst() local [all …]
|
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/java/security/ |
D | AlgorithmParametersTestGCM.java | 49 private static final byte[] IV = new byte[] { field in AlgorithmParametersTestGCM
|
/external/conscrypt/common/src/test/java/org/conscrypt/java/security/ |
D | AlgorithmParametersTestGCM.java | 45 private static final byte[] IV = new byte[] { field in AlgorithmParametersTestGCM
|
/external/python/cpython3/Lib/test/ |
D | dataclass_module_1.py | 26 class IV: class
|
D | dataclass_module_2_str.py | 26 class IV: class
|
D | dataclass_module_1_str.py | 26 class IV: class
|
D | dataclass_module_2.py | 26 class IV: class
|
/external/llvm-project/polly/lib/CodeGen/ |
D | LoopGenerators.cpp | 152 PHINode *IV = Builder.CreatePHI(LoopIVType, 2, "polly.indvar"); in createLoop() local 182 Value *IV; in createParallelLoop() local
|
/external/llvm/lib/Analysis/ |
D | SparsePropagation.cpp | 235 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this); in visitPHINode() local 285 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this); in visitInst() local
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DereferenceChecker.cpp | 81 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource() local 166 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); in reportBug() local
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | DereferenceChecker.cpp | 84 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource() local 185 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); in reportBug() local
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/ |
D | OFBBlockCipher.java | 18 private byte[] IV; field in OFBBlockCipher
|
D | CBCBlockCipher.java | 17 private byte[] IV; field in CBCBlockCipher
|
D | CFBBlockCipher.java | 18 private byte[] IV; field in CFBBlockCipher
|
D | SICBlockCipher.java | 25 private byte[] IV; field in SICBlockCipher
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | OFBBlockCipher.java | 16 private byte[] IV; field in OFBBlockCipher
|
D | CBCBlockCipher.java | 15 private byte[] IV; field in CBCBlockCipher
|
D | CFBBlockCipher.java | 16 private byte[] IV; field in CFBBlockCipher
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/modes/ |
D | OFBBlockCipher.java | 18 private byte[] IV; field in OFBBlockCipher
|
D | CBCBlockCipher.java | 17 private byte[] IV; field in CBCBlockCipher
|
D | CFBBlockCipher.java | 18 private byte[] IV; field in CFBBlockCipher
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | MatrixUtils.cpp | 38 PHINode *IV = in CreateLoop() local
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
D | rijndael-api-fst.h | 70 u_int8_t IV[MAX_IV_SIZE]; /* A possible Initialization Vector for ciphering */ member
|