HomeSort by relevance Sort by last modified time
    Searched defs:Store (Results 1 - 25 of 50) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Store.java 5 public interface Store
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_temp_storage.cc 26 bool SignedSettingsTempStorage::Store(const std::string& name,
  /external/chromium/chrome/browser/ui/gtk/
focus_store_gtk.cc 20 void FocusStoreGtk::Store(GtkWidget* widget) {
  /external/chromium/net/disk_cache/
mapped_file_posix.cc 40 bool MappedFile::Store(const FileBlock* block) {
mapped_file_win.cc 50 bool MappedFile::Store(const FileBlock* block) {
storage_block-inl.h 27 Store();
124 template<typename T> bool StorageBlock<T>::Store() {
126 if (file_->Store(this)) {
131 LOG(ERROR) << "Failed data store.";
132 Trace("Failed data store.");
stats.cc 232 void Stats::Store() {
  /packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java 32 * Tests of StoreInfo & Store lookup in the Store abstract class
35 * runtest -c com.android.email.mail.store.StoreTests email
48 Store.sStores.clear();
56 Store testStore;
66 testStore = Store.getInstance(testAccount, getContext());
67 assertEquals(1, Store.sStores.size());
68 assertSame(testStore, Store.sStores.get(testAccount.mId));
69 Store.sStores.clear();
78 testStore = Store.getInstance(testAccount, getContext())
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
22 /// Store - This opaque type encapsulates an immutable mapping from
26 typedef const void *Store;
31 Store store; member in class:clang::ento::StoreRef
34 StoreRef(Store, StoreManager &);
40 return x.store == store;
46 Store getStore() const { return store; }
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 32 Store = (1<<2),
58 /// store to a stack slot, return the virtual or physical register number of
SparcISelLowering.cpp 299 // Store remaining ArgRegs to the stack if this is a varargs function.
437 // store SRet argument in %sp+64
453 //if it is double-word aligned, just store.
466 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
470 SDValue Hi = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
476 SDValue Lo = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
486 //Store the low part in stack.
497 // Store the high part.
504 // Store the low part.
528 // Create a store off the stack pointer for this argument
    [all...]
  /external/chromium/chrome/browser/policy/
user_policy_identity_strategy.cc 38 void Store(const std::string& token, const std::string& device_id);
70 void UserPolicyIdentityStrategy::TokenCache::Store(
198 cache_->Store(device_token_, device_id_);
  /packages/apps/Email/src/com/android/email/mail/
Store.java 24 import com.android.email.mail.store.ExchangeStore;
25 import com.android.email.mail.store.ImapStore;
26 import com.android.email.mail.store.Pop3Store;
40 * Store is the legacy equivalent of the Account class
42 public abstract class Store {
44 * A global suggestion to Store implementors on how much of the body
50 static final HashMap<HostAuth, Store> sStores = new HashMap<HostAuth, Store>();
57 static final HashMap<String, Class<? extends Store>> sStoreClasses =
58 new HashMap<String, Class<? extends Store>>();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
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);
39 Store = Bind(Store.getStore(), I->first, I->second);
42 return Store;
62 StoreRef StoreManager::BindDefault(Store store, const MemRegion *R, SVal V)
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 231 /// Attempt to merge an objc_release with a store, load, and objc_retain to form
244 // Walk down to find the store and the release, which may be in either order.
248 StoreInst *Store = 0;
250 for (; !Store || !SawRelease; ++I) {
266 if (Store) {
267 // The store is the point where we're going to put the objc_storeStrong,
272 // We are moving the load down to the store, so check for anything
273 // else which writes to the memory between the load and the store.
274 Store = dyn_cast<StoreInst>(Inst);
275 if (!Store || !Store->isSimple()) return
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 147 // Lower the bit-convert to a store/load from the stack.
159 // Emit a store to the stack slot.
160 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo,
164 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo,
173 Hi = DAG.getLoad(NOutVT, dl, Store, StackPtr,
337 // Otherwise, store to a temporary and load out again as the new type.
LegalizeDAG.cpp 299 /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
316 // same size, then a (misaligned) int store.
324 // Do a (aligned) store to a stack slot, then copy from the stack slot
338 // Perform the original store, only redirected to the stack slot.
339 SDValue Store = DAG.getTruncStore(Chain, dl,
349 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
352 // Store it to the final location. Remember the store.
364 // The last store may be partial. Do a truncating store. On big-endia
    [all...]
LegalizeTypes.cpp     [all...]
LegalizeVectorOps.cpp 163 } else if (Op.getOpcode() == ISD::STORE) {
547 // Store Stride in bytes
557 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
564 Stores.push_back(Store);
  /external/clang/lib/CodeGen/
CGAtomic.cpp 143 /// Does a store of the given IR type modify the full expected width?
158 // For scalars and complexes, check whether the store size of the
229 assert(!Dest && "Store does not return a value");
232 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr);
233 Store->setAtomic(Order);
234 Store->setAlignment(Size);
235 Store->setVolatile(E->isVolatile());
795 // Okay, store the rvalue in.
813 llvm::Value *temp = CGF.CreateMemTemp(getAtomicType(), "atomic-store-temp");
819 /// Emit a store to an l-value of atomic type
892 llvm::StoreInst *store = Builder.CreateStore(intValue, addr); local
    [all...]
CGBuiltin.cpp     [all...]
  /external/v8/src/
ic.cc 233 // For keyed load/store/call, the most likely cause of cache failure is
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 424 // writes to memory. It's not safe to move the callee (a load) across a store.
481 // Lower fpround and fpextend nodes that target the FP stack to be store and
527 // FIXME: optimize the case where the src/dest is a load or store?
528 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
532 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
    [all...]
X86InstrInfo.cpp 77 // Minimum alignment required for load/store.
275 // Index 0, folded load and store, no alignment requirement.
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 139 setOperationAction(ISD::STORE, MVT::i32, Custom);
164 setTargetDAGCombine(ISD::STORE);
180 case ISD::STORE: return LowerSTORE(Op, DAG);
506 assert(!ST->isTruncatingStore() && "Unexpected store type");
507 assert(ST->getMemoryVT() == MVT::i32 && "Unexpected store EVT");
513 // Leave aligned store alone.
771 // Store the incremented VAList to the legalized pointer
    [all...]

Completed in 615 milliseconds

1 2