HomeSort by relevance Sort by last modified time
    Searched defs:new_store (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 183 const StoreRef &new_store = local
185 return makeWithStore(new_store);
  /external/v8/src/
scanner-base.h 214 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
215 memcpy(new_store.start(), backing_store_.start(), position_);
217 backing_store_ = new_store;
222 Vector<byte> new_store; local
227 new_store = Vector<byte>::New(NewCapacity(new_content_size));
229 new_store = backing_store_;
232 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
236 if (new_store.start() != backing_store_.start()) {
238 backing_store_ = new_store;

Completed in 191 milliseconds