/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
H A D | Store.java | 5 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; 30 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { argument 33 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/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::__anon10880
|
/external/v8/src/arm64/ |
H A D | delayed-masm-arm64.cc | 135 void DelayedMasm::Store(const CPURegister& rd, const MemOperand& operand) { function in class:v8::internal::DelayedMasm
|
/external/v8/src/compiler/ |
H A D | machine-operator.cc | 166 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \ 167 explicit Store##Type##Operator(WriteBarrierKind write_barrier_kind) \ 170 "Store", StoreRepresentation(k##Type, write_barrier_kind)) {} \ 172 struct Store##Type##NoWriteBarrier##Operator FINAL \ 173 : public Store##Type##Operator { \ 174 Store##Type##NoWriteBarrier##Operator() \ 175 : Store##Type##Operator(kNoWriteBarrier) {} \ 177 struct Store##Type##FullWriteBarrier##Operator FINAL \ 178 : public Store##Type##Operator { \ 179 Store##Typ 221 const Operator* MachineOperatorBuilder::Store(StoreRepresentation rep) { function in class:v8::internal::compiler::MachineOperatorBuilder [all...] |
H A D | raw-machine-assembler.h | 102 void Store(MachineType rep, Node* base, Node* value) { function in class:v8::internal::compiler::RawMachineAssembler 103 Store(rep, base, Int32Constant(0), value); 105 void Store(MachineType rep, Node* base, Node* index, Node* value) { function in class:v8::internal::compiler::RawMachineAssembler 106 NewNode(machine()->Store(StoreRepresentation(rep, kNoWriteBarrier)), base,
|
/external/v8/src/ |
H A D | typing.h | 43 typedef v8::internal::NestedEffects<int, kNoVar> Store; typedef in class:v8::internal::AstTyper 47 Store store_;
|
H A D | hydrogen-gvn.cc | 81 void Store(SideEffects side_effects, HInstruction* instr); 335 void HSideEffectMap::Store(SideEffects side_effects, HInstruction* instr) { function in class:v8::internal::BASE_EMBEDDED::HSideEffectMap 833 // Store instruction as the dominating one for tracked side effects. 835 dominators->Store(changes, instr);
|
/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/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/unittests/Transforms/Utils/ |
H A D | Cloning.cpp | 249 Instruction* Store = IBuilder.CreateStore(AllocaContent, Alloca); local 260 DBuilder.insertDeclare(Alloca, Variable, E, DL, Store);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 331 SDValue Store = DAG.getTruncStore(Chain, dl, local 341 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, 344 // Store it to the final location. Remember the store. 363 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr, 393 // Store the two parts 589 // Store the vector. 601 // Store the scalar value. 778 "Store size not an integral number of bytes!"); 786 // Store the bottom RoundWidth bits. 792 // Store th [all...] |
H A D | LegalizeTypes.cpp | 913 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op, StackPtr, local 916 return DAG.getLoad(DestVT, dl, Store, StackPtr, MachinePointerInfo(),
|
H A D | LegalizeTypesGeneric.cpp | 166 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo, local 170 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo, 180 Hi = DAG.getLoad(NOutVT, dl, Store, StackPtr,
|
H A D | LegalizeVectorOps.cpp | 651 // Store Stride in bytes 661 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR, local 669 Stores.push_back(Store);
|
/external/llvm/lib/Target/XCore/ |
H A D | XCoreFrameLowering.cpp | 435 auto Store = MI; local 436 --Store; 437 XFI->getSpillLabels().push_back(std::make_pair(Store, *it));
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 385 : Load(false), Store(false), Vol(false), MayReadFromMemory(false), 394 Store = Info.WriteMem; 407 Store = true; 413 bool isStore() { return Store; } 426 bool Store; member in class:__anon11016::EarlyCSE::ParseMemoryInst
|
/external/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelDAGToDAG.cpp | 165 // Return true on success and if the result had no index. Store the 295 // Return true if Load and Store are loads and stores of the same size 304 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const; 985 bool SystemZDAGToDAGISel::canUseBlockOperation(StoreSDNode *Store, argument 988 if (Load->getMemoryVT() != Store->getMemoryVT()) 992 if (Load->isVolatile() || Store->isVolatile()) 1001 const Value *V2 = Store->getMemOperand()->getValue(); 1008 int64_t End2 = Store->getSrcValueOffset() + Size; 1013 AliasAnalysis::Location(V2, End2, Store->getAAInfo())); 1017 auto *Store local [all...] |
/external/clang/lib/CodeGen/ |
H A D | CGAtomic.cpp | 531 assert(!Dest && "Store does not return a value"); 534 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr); local 535 Store->setAtomic(Order); 536 Store->setAlignment(Size); 537 Store->setVolatile(E->isVolatile()); 1497 // Store new value in the corresponding memory area 1581 // Store new value in the corresponding memory area
|
/external/llvm/lib/Analysis/ |
H A D | CFLAliasAnalysis.cpp | 637 Store = std::make_tuple(Current->Weight, Current->Other); 638 return Store; 651 std::tuple<EdgeTypeT, Node> Store; member in struct:__anon10333::WeightedBidirectionalGraph::EdgeIterator
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelDAGToDAG.cpp | 880 SDNode* Store = SelectStore(ST.getNode()); local 885 SDValue(Store, 0) }; 971 SDNode* Store = SelectStore(ST.getNode()); local 976 SDValue(Store, 0) };
|
/external/llvm/lib/Target/R600/ |
H A D | SIISelLowering.cpp | 1200 StoreSDNode *Store = cast<StoreSDNode>(Op); local 1201 EVT VT = Store->getMemoryVT(); 1204 if (Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) { 1218 return DAG.getTruncStore(Store->getChain(), DL, 1219 DAG.getSExtOrTrunc(Store->getValue(), DL, MVT::i32), 1220 Store->getBasePtr(), MVT::i1, Store->getMemOperand());
|