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

  /external/chromium_org/v8/src/
scanner.h 222 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
223 OS::MemCopy(new_store.start(), backing_store_.start(), position_);
225 backing_store_ = new_store;
230 Vector<byte> new_store; local
235 new_store = Vector<byte>::New(NewCapacity(new_content_size));
237 new_store = backing_store_;
240 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
244 if (new_store.start() != backing_store_.start()) {
246 backing_store_ = new_store;
  /external/v8/src/
scanner.h 236 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
237 memcpy(new_store.start(), backing_store_.start(), position_);
239 backing_store_ = new_store;
244 Vector<byte> new_store; local
249 new_store = Vector<byte>::New(NewCapacity(new_content_size));
251 new_store = backing_store_;
254 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
258 if (new_store.start() != backing_store_.start()) {
260 backing_store_ = new_store;

Completed in 215 milliseconds