OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:new_store
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
scanner.h
275
Vector<byte>
new_store
= Vector<byte>::New(NewCapacity(kInitialCapacity));
local
276
OS::MemCopy(
new_store
.start(), backing_store_.start(), position_);
278
backing_store_ =
new_store
;
283
Vector<byte>
new_store
;
local
288
new_store
= Vector<byte>::New(NewCapacity(new_content_size));
290
new_store
= backing_store_;
293
uc16* dst = reinterpret_cast<uc16*>(
new_store
.start());
297
if (
new_store
.start() != backing_store_.start()) {
299
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 57 milliseconds