Searched refs:store (Results 376 - 400 of 835) sorted by last modified time

<<11121314151617181920>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/e2fsprogs/tests/progs/test_data/
H A Dtest.icount11 store 0 0
15 store 20001 0
21 # OK, now let's test fetch and store. We also test the boundary cases
25 store 1 1
27 store 1 2
29 store 1 3
31 store 1 1
33 store 1 0
36 store 20000 0
38 store 2000
[all...]
/external/e2fsprogs/tests/progs/
H A Dtest_icount_cmds.ct26 store;
/external/conscrypt/src/platform/java/org/conscrypt/
H A DCertPinManager.java46 public CertPinManager(TrustedCertificateStore store) throws PinManagerException { argument
48 certStore = store;
52 public CertPinManager(String path, TrustedCertificateStore store) throws PinManagerException { argument
57 certStore = store;
H A DPinListEntry.java56 public PinListEntry(String entry, TrustedCertificateStore store) throws PinEntryException { argument
60 certStore = store;
H A DTrustedCertificateKeyStoreSpi.java33 private final TrustedCertificateStore store = new TrustedCertificateStore(); field in class:TrustedCertificateKeyStoreSpi
53 return store.getCertificate(alias);
58 return store.getCreationDate(alias);
87 return Collections.enumeration(store.aliases());
92 return store.containsAlias(alias);
97 return store.aliases().size();
115 return store.getCertificateAlias(c);
/external/conscrypt/src/test/java/org/conscrypt/
H A DTrustedCertificateStoreTest.java50 "cert-store-test" + tempFileRandom.nextInt());
290 private TrustedCertificateStore store; field in class:TrustedCertificateStoreTest
303 store = new TrustedCertificateStore(dirSystem, dirAdded, dirDeleted);
320 store = null;
334 store.deleteCertificateEntry(getAliasSystemCa1());
341 store.deleteCertificateEntry(getAliasSystemCa1());
343 store.deleteCertificateEntry(getAliasSystemCa2());
362 store.getCertificate(null);
366 assertNull(store.getCertificate(""));
369 store
[all...]
/external/deqp/framework/randomshaders/
H A DrsgVariableManager.cpp374 void VariableManager::reserve (ReservedScalars& store, int numScalars) argument
376 DE_ASSERT(store.numScalars == 0);
377 store.numScalars = numScalars;
381 void VariableManager::release (ReservedScalars& store) argument
383 m_numAllocatedScalars -= store.numScalars;
384 store.numScalars = 0;
472 // Build new intersected value and store into current scope.
H A DrsgVariableManager.hpp204 void reserve (ReservedScalars& store, int numScalars);
205 void release (ReservedScalars& store);
/external/cmockery/cmockery_0_1_2/
H A Ddepcomp46 DEPDIR directory where to store dependencies.
191 # store a dummy comment line, to avoid errors with the Makefile
234 # store a dummy comment line, to avoid errors with the Makefile
/external/compiler-rt/lib/asan/
H A Dasan_rtl.cc372 ASAN_REPORT_ERROR(store, true, 1)
373 ASAN_REPORT_ERROR(store, true, 2)
374 ASAN_REPORT_ERROR(store, true, 4)
375 ASAN_REPORT_ERROR(store, true, 8)
376 ASAN_REPORT_ERROR(store, true, 16)
387 ASAN_REPORT_ERROR_N(store, true)
414 ASAN_MEMORY_ACCESS_CALLBACK(store, true, 1)
415 ASAN_MEMORY_ACCESS_CALLBACK(store, true, 2)
416 ASAN_MEMORY_ACCESS_CALLBACK(store, true, 4)
417 ASAN_MEMORY_ACCESS_CALLBACK(store, tru
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cc62 void store(const args_type &args, u32 other_hash) { function in struct:__msan::ChainedOriginDepotNode
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cc55 // We use these bits to store the per-stack use counter.
75 void store(const args_type &args, u32 hash) { function in struct:__sanitizer::StackDepotNode
H A Dsanitizer_stackdepotbase.h125 s->store(args, h);
/external/compiler-rt/lib/tsan/
H A Danalyze_libtsan.sh36 store=$(egrep 'mov .*\(.*\),' $file | wc -l)
41 printf "%10s tot %3d; size %4d; rsp %d; push %d; pop %d; call %d; load %2d; store %2d; sh %3d; mov %3d; lea %3d; cmp %3d\n" \
42 $f $tot $size $rsp $push $pop $call $load $store $sh $mov $lea $cmp;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp223 Store store; member in class:FindUninitializedField
227 : StoreMgr(storeMgr), MrMgr(mrMgr), store(s) {}
243 const SVal &V = StoreMgr.getBinding(store, loc::MemRegionVal(FR));
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp30 const StoreRef &store,
32 ID.AddPointer(store.getStore());
127 BasicValueFactory::getLazyCompoundValData(const StoreRef &store, argument
130 LazyCompoundValData::Profile(ID, store, region);
138 new (D) LazyCompoundValData(store, region);
29 Profile(llvm::FoldingSetNodeID& ID, const StoreRef &store, const TypedValueRegion *region) argument
H A DExplodedGraph.cpp88 // (5) The 'store' is the same as the predecessor.
127 if (state->store != pred_state->store || state->GDM != pred_state->GDM ||
H A DProgramState.cpp49 store(st.getStore()),
52 stateMgr->getStoreManager().incrementReferenceCount(store);
59 store(RHS.store),
62 stateMgr->getStoreManager().incrementReferenceCount(store);
66 if (store)
67 stateMgr->getStoreManager().decrementReferenceCount(store);
104 // Clean up the store.
403 ProgramStateRef ProgramState::makeWithStore(const StoreRef &store) const {
405 NewSt.setStore(store);
[all...]
H A DRegionStore.cpp1 //== RegionStore.cpp - Field-sensitive store model --------------*- C++ -*--==//
10 // This file defines a basic region store model. In this model, we do have field
55 assert(getConcreteOffsetRegion() == Base && "Failed to store base region");
62 assert(getOffset() == offset && "Failed to store offset");
340 /// This is controlled by 'region-store-small-struct-limit' option.
358 Options.getOptionAsInteger("region-store-small-struct-limit", 2);
391 StoreRef invalidateRegions(Store store,
409 StoreRef Bind(Store store, Loc LV, SVal V) override {
410 return StoreRef(bind(getRegionBindings(store), LV, V).asStore(), *this);
416 StoreRef BindDefault(Store store, cons
1149 invalidateRegions(Store store, ArrayRef<SVal> Values, const Expr *Ex, unsigned Count, const LocationContext *LCtx, const CallEvent *Call, InvalidatedSymbols &IS, RegionAndSymbolInvalidationTraits &ITraits, InvalidatedRegions *TopLevelRegions, InvalidatedRegions *Invalidated) argument
1850 includedInBindings(Store store, const MemRegion *region) const argument
2302 removeDeadBindings(Store store, const StackFrameContext *LCtx, SymbolReaper& SymReaper) argument
2351 print(Store store, raw_ostream &OS, const char* nl, const char *sep) argument
[all...]
H A DStore.cpp62 StoreRef StoreManager::BindDefault(Store store, const MemRegion *R, SVal V) { argument
63 return StoreRef(store, *this);
506 Store store,
505 HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R, SVal val) argument
H A DSymbolManager.cpp536 // Query the store to see if the region occurs in any live bindings.
537 if (Store store = reapedStore.getStore()) {
539 reapedStore.getStoreManager().includedInBindings(store, VR);
/external/clang/test/CodeGen/
H A Dcatch-undef-behavior.c184 // CHECK: @store
185 // CHECK-TRAP: @store
186 void store(int *p, int q) { function
314 // CHECK: store x86_fp80 %[[F]], x86_fp80* %[[ALLOCA:.*]]
/external/clang/tools/scan-build/
H A Dscan-build1095 to store the reports.
1367 my $HtmlDir; # Parent directory to store HTML files.
1496 if ($arg eq "-store") {
/external/clang/www/demo/
H A Dindex.cgi99 $input =~ s@\b(add|sub|mul|div|rem|and|or|xor|setne|seteq|setlt|setgt|setle|setge|phi|tail|call|cast|to|shl|shr|vaarg|vanext|ret|br|switch|invoke|unwind|malloc|alloca|free|load|store|getelementptr|begin|end|true|false|declare|global|constant|const|internal|uninitialized|external|implementation|linkonce|weak|appending|null|to|except|not|target|endian|pointersize|big|little|volatile)\b@<span class="llvm_keyword">$1</span>@g;

Completed in 556 milliseconds

<<11121314151617181920>>