Searched defs:cache_ (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/compiler/
H A Djs-graph.h34 cache_(zone()) {}
107 CommonNodeCache cache_; member in class:v8::internal::compiler::JSGraph
/external/v8/src/
H A Dframes.h52 memset(&cache_[0], 0, sizeof(cache_));
58 InnerPointerToCodeCacheEntry* cache(int index) { return &cache_[index]; }
63 InnerPointerToCodeCacheEntry cache_[kInnerPointerToCodeCacheSize]; member in class:v8::internal::InnerPointerToCodeCache
H A Dbootstrapper.h20 explicit SourceCodeCache(Script::Type type): type_(type), cache_(NULL) { }
23 cache_ = create_heap_objects ? isolate->heap()->empty_fixed_array() : NULL;
27 v->VisitPointer(bit_cast<Object**, FixedArray**>(&cache_));
31 for (int i = 0; i < cache_->length(); i+=2) {
32 SeqOneByteString* str = SeqOneByteString::cast(cache_->get(i));
35 SharedFunctionInfo::cast(cache_->get(i + 1)));
46 int length = cache_->length();
48 cache_->CopyTo(0, *new_array, 0, cache_->length());
49 cache_
60 FixedArray* cache_; member in class:v8::internal::BASE_EMBEDDED
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h48 : cache_(LINKER_INITIALIZED) {
69 cache_.Transfer(c);
71 if (cache_.Size() > GetSize() && recycle_mutex_.TryLock())
84 Cache cache_; member in class:__sanitizer::Quarantine
92 while (cache_.Size() > min_size) {
93 QuarantineBatch *b = cache_.DequeueBatch();
/external/openfst/src/include/fst/
H A Daccumulator.h353 for(typename unordered_map<StateId, CacheState>::iterator it = cache_.begin();
354 it != cache_.end();
362 typename unordered_map<StateId, CacheState>::iterator it = cache_.find(s);
363 if (it != cache_.end()) {
374 cache_.insert(make_pair(s, CacheState(weights, true)));
398 typename unordered_map<StateId, CacheState>::iterator it = cache_.begin();
399 while (it != cache_.end() && cache_size_ > cache_target) {
404 cache_.erase(it++);
414 unordered_map<StateId, CacheState> cache_; // Cache member in class:fst::CacheLogAccumulatorData
/external/compiler-rt/lib/asan/
H A Dasan_allocator.cc133 : cache_(cache) {
159 get_allocator().Deallocate(cache_, p);
163 return get_allocator().Allocate(cache_, size, 1, false);
167 get_allocator().Deallocate(cache_, p);
170 AllocatorCache *cache_; member in struct:__asan::QuarantineCallback

Completed in 208 milliseconds