Home
last modified time | relevance | path

Searched refs:to_fill (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dscanner-character-streams.cc26 unsigned to_fill = length; in CopyCharsHelper() local
27 if (to_fill > src_length - *src_pos) to_fill = src_length - *src_pos; in CopyCharsHelper()
30 v8::internal::CopyChars<uint8_t, uint16_t>(dest, src + *src_pos, to_fill); in CopyCharsHelper()
34 dest, reinterpret_cast<const uint16_t*>(src + *src_pos), to_fill); in CopyCharsHelper()
36 *src_pos += to_fill; in CopyCharsHelper()
37 return to_fill; in CopyCharsHelper()
/external/v8/test/cctest/
Dtest-heap.cc1018 int to_fill = static_cast<int>(*limit_addr - *top_addr - object_size); in TEST() local
1019 int fixed_array_len = LenFromSize(to_fill); in TEST()