/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
H A D | Store.java | 10 public interface Store<T> interface
|
/external/google-breakpad/src/processor/ |
H A D | address_map-inl.h | 48 bool AddressMap<AddressType, EntryType>::Store(const AddressType &address, function in class:google_breakpad::AddressMap 53 BPLOG(INFO) << "Store failed, address " << HexString(address) <<
|
/external/llvm/lib/IR/ |
H A D | MetadataImpl.h | 23 static T *getUniqued(DenseSet<T *, InfoT> &Store, argument 25 auto I = Store.find_as(Key); 26 return I == Store.end() ? nullptr : *I; 43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { argument 46 Store.insert(N);
|
H A D | Metadata.cpp | 86 auto &Store = Context.pImpl->MetadataAsValues; local 87 return Store.lookup(MD); 93 auto &Store = Context.pImpl->MetadataAsValues; local 96 Store.erase(this->MD); 101 auto *&Entry = Store[MD]; 279 auto &Store = V->getType()->getContext().pImpl->ValuesAsMetadata; local 280 auto I = Store.find(V); 281 if (I == Store.end()) 288 Store.erase(I); 302 auto &Store local 361 auto &Store = Context.pImpl->MDStringCache; local [all...] |
/external/autotest/client/cros/cellular/pseudomodem/ |
H A D | sms.py | 128 def Store(self, storage): member in class:SMS
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | StoreRef.h | 22 /// Store - This opaque type encapsulates an immutable mapping from 26 typedef const void *Store; typedef in namespace:clang::ento 31 Store store; 34 StoreRef(Store, StoreManager &); 46 Store getStore() const { return store; }
|
/external/llvm/lib/Target/Sparc/ |
H A D | SparcInstrInfo.h | 34 Store = (1<<2), enumerator in enum:llvm::SPII::__anon12735
|
/external/v8/src/crankshaft/arm64/ |
H A D | delayed-masm-arm64.cc | 133 void DelayedMasm::Store(const CPURegister& rd, const MemOperand& operand) { function in class:v8::internal::DelayedMasm
|
/external/webrtc/webrtc/video/ |
H A D | report_block_stats.cc | 33 void ReportBlockStats::Store(const RtcpStatistics& rtcp_stats, function in class:webrtc::ReportBlockStats 98 // Store current report block.
|
/external/v8/src/crankshaft/ |
H A D | typing.h | 35 typedef v8::internal::NestedEffects<int, kNoVar> Store; typedef in class:v8::internal::AstTyper 44 Store store_;
|
/external/llvm/lib/Transforms/ObjCARC/ |
H A D | ObjCARCContract.cpp | 199 StoreInst *Store = nullptr; local 211 if (Store && SawRelease) 234 if (Store) { 237 // instruction in between Store and the Release conservatively can not use 253 Store = dyn_cast<StoreInst>(Inst); 259 if (!Store || !Store->isSimple()) 263 // found our Store! 264 if (Store->getPointerOperand() == Loc.Ptr) 273 if (!Store || !SawReleas 281 findRetainForStoreStrongContraction(Value *New, StoreInst *Store, Instruction *Release, ProvenanceAnalysis &PA) argument [all...] |
/external/v8/src/compiler/ |
H A D | machine-operator.cc | 491 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \ 492 explicit Store##Type##Operator(WriteBarrierKind write_barrier_kind) \ 496 "Store", 3, 1, 1, 0, 1, 0, \ 500 struct Store##Type##NoWriteBarrier##Operator final \ 501 : public Store##Type##Operator { \ 502 Store##Type##NoWriteBarrier##Operator() \ 503 : Store##Type##Operator(kNoWriteBarrier) {} \ 505 struct Store##Type##MapWriteBarrier##Operator final \ 506 : public Store##Type##Operator { \ 507 Store##Typ 635 const Operator* MachineOperatorBuilder::Store(StoreRepresentation store_rep) { function in class:v8::internal::compiler::MachineOperatorBuilder [all...] |
H A D | code-assembler.cc | 266 Node* CodeAssembler::Store(MachineRepresentation rep, Node* base, Node* value) { function in class:v8::internal::compiler::CodeAssembler 267 return raw_assembler_->Store(rep, base, value, kFullWriteBarrier); 270 Node* CodeAssembler::Store(MachineRepresentation rep, Node* base, Node* index, function in class:v8::internal::compiler::CodeAssembler 272 return raw_assembler_->Store(rep, base, index, value, kFullWriteBarrier); 277 return raw_assembler_->Store(rep, base, value, kNoWriteBarrier); 282 return raw_assembler_->Store(rep, base, index, value, kNoWriteBarrier);
|
/external/v8/test/unittests/compiler/ |
H A D | control-equivalence-unittest.cc | 26 Store(graph()->start()); 64 return Store(graph()->NewNode(common()->Branch(), Value(), control)); 68 return Store(graph()->NewNode(common()->IfTrue(), control)); 72 return Store(graph()->NewNode(common()->IfFalse(), control)); 76 return Store(graph()->NewNode(common()->Merge(1), control)); 80 return Store(graph()->NewNode(common()->Merge(2), control1, control2)); 84 return Store(graph()->NewNode(common()->Loop(2), control, control)); 88 return Store(graph()->NewNode(common()->End(1), control)); 92 Node* Store(Node* node) { function in class:v8::internal::compiler::ControlEquivalenceTest
|
H A D | escape-analysis-unittest.cc | 77 Node* Store(const FieldAccess& access, Node* allocation, Node* value, function in class:v8::internal::compiler::EscapeAnalysisTest 214 Store(FieldAccessAtIndex(0), allocation, object1); 236 Store(FieldAccessAtIndex(0), allocation, object1); 261 Store(FieldAccessAtIndex(0), allocation, object1); 284 Store(FieldAccessAtIndex(0), allocation1, object1); 289 Store(FieldAccessAtIndex(0), allocation2, finish1); 312 Store(FieldAccessAtIndex(0), allocation, object1); 318 Store(FieldAccessAtIndex(0), allocation, object1, finish, ifFalse); 320 Store(FieldAccessAtIndex(0), allocation, object2, finish, ifTrue); 346 Store(FieldAccessAtInde [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | Store.cpp | 1 //== Store.cpp - Interface for maps from Locations to Values ----*- C++ -*--==// 10 // This file defined the types Store and StoreManager. 14 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h" 28 StoreRef StoreManager::enterStackFrame(Store OldStore, 31 StoreRef Store = StoreRef(OldStore, *this); local 39 Store = Bind(Store.getStore(), I->first, I->second); 42 return Store; 51 StoreRef StoreManager::BindDefault(Store store, const MemRegion *R, SVal V) { 495 Store stor [all...] |
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonShuffler.h | 75 bool Load, Store; member in class:llvm::HexagonCVIResource 81 void setStore(bool f = true) { Store = f; }; 89 bool mayStore() const { return (Store); };
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | LoopLoadElimination.cpp | 57 StoreInst *Store; member in struct:__anon12932::StoreToLoadForwardingCandidate 59 StoreToLoadForwardingCandidate(LoadInst *Load, StoreInst *Store) argument 60 : Load(Load), Store(Store) {} 66 Value *StorePtr = Store->getPointerOperand(); 94 OS << *Cand.Store << " -->\n"; 159 auto *Store = dyn_cast<StoreInst>(Source); local 160 if (!Store) 165 Candidates.emplace_front(Load, Store); 204 // If Store i [all...] |
/external/llvm/unittests/Transforms/Utils/ |
H A D | Cloning.cpp | 251 Instruction* Store = IBuilder.CreateStore(AllocaContent, Alloca); local 262 DBuilder.insertDeclare(Alloca, Variable, E, DL, Store);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 354 SDValue Store = DAG.getTruncStore(Chain, dl, local 365 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, 368 // Store it to the final location. Remember the store. 387 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr, 418 // Store the two parts 618 // Store the vector. 631 // Store the scalar value. 808 "Store size not an integral number of bytes!"); 816 // Store the bottom RoundWidth bits. 822 // Store th [all...] |
H A D | LegalizeTypes.cpp | 933 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op, StackPtr, local 936 return DAG.getLoad(DestVT, dl, Store, StackPtr, MachinePointerInfo(),
|
H A D | LegalizeTypesGeneric.cpp | 173 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo, local 177 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo, 187 Hi = DAG.getLoad(NOutVT, dl, Store, StackPtr,
|
H A D | LegalizeVectorOps.cpp | 672 // Store Stride in bytes 683 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR, local 691 Stores.push_back(Store);
|
/external/llvm/lib/Target/XCore/ |
H A D | XCoreFrameLowering.cpp | 442 auto Store = MI; local 443 --Store; 444 XFI->getSpillLabels().push_back(std::make_pair(Store, *it));
|
/external/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelDAGToDAG.cpp | 168 // Return true on success and if the result had no index. Store the 308 // Try to use scatter instruction Opcode to implement store Store. 309 SDNode *tryScatter(StoreSDNode *Store, unsigned Opcode); 311 // Return true if Load and Store are loads and stores of the same size 320 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const; 1080 SDNode *SystemZDAGToDAGISel::tryScatter(StoreSDNode *Store, unsigned Opcode) { argument 1081 SDValue Value = Store->getValue(); 1084 if (Store->getMemoryVT().getSizeInBits() != 1100 if (!selectBDVAddr12Only(Store->getBasePtr(), ElemV, Base, Disp, Index) || 1104 SDLoc DL(Store); 1112 canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const argument 1144 auto *Store = cast<StoreSDNode>(N); local 1260 auto *Store = cast<StoreSDNode>(Node); local [all...] |