Searched defs:extra_bytes (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/courgette/third_party/
H A Dbsdiff_apply.cc75 SourceStream* extra_bytes = patch_streams.stream(5); local
77 const uint8* extra_start = extra_bytes->Buffer();
78 const uint8* extra_end = extra_start + extra_bytes->Remaining();
148 !extra_bytes->Empty())
H A Dbsdiff_create.cc216 SinkStream* extra_bytes = patch_streams.stream(5); local
390 if (!extra_bytes->Write(&newbuf[lastscan + lenf + i], 1))
/external/chromium/net/http/
H A Dhttp_stream_parser.cc441 int extra_bytes = read_buf_->offset() - read_buf_unused_offset_; local
442 if (extra_bytes) {
443 CHECK_GT(extra_bytes, 0);
446 extra_bytes);
448 read_buf_->SetCapacity(extra_bytes);
/external/e2fsprogs/lib/ext2fs/
H A Dinode.c408 int extra_bytes = 0; local
456 extra_bytes = scan->bytes_left;
472 if (extra_bytes) {
473 memcpy(scan->temp_buffer+extra_bytes, scan->ptr,
474 scan->inode_size - extra_bytes);
475 scan->ptr += scan->inode_size - extra_bytes;
476 scan->bytes_left -= scan->inode_size - extra_bytes;
/external/chromium_org/net/http/
H A Dhttp_stream_parser.cc597 int extra_bytes = read_buf_->offset() - end_of_header_offset; local
598 if (extra_bytes) {
599 CHECK_GT(extra_bytes, 0);
602 extra_bytes);
604 read_buf_->SetCapacity(extra_bytes);
/external/chromium_org/media/webm/
H A Dwebm_parser.cc439 int extra_bytes = -1; local
446 extra_bytes = i;
452 if (extra_bytes == -1)
456 if ((1 + extra_bytes) > size)
461 for (int i = 0; i < extra_bytes; ++i) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Ddebugallocation.cc1296 size_t extra_bytes = data_offset + alignment - 1; local
1297 if (size + extra_bytes < size) return NULL; // Overflow
1298 p = DebugAllocate(size + extra_bytes, MallocBlock::kMallocType);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Ddebugallocation.cc1284 size_t extra_bytes = data_offset + alignment - 1; local
1285 if (size + extra_bytes < size) return NULL; // Overflow
1286 p = DebugAllocate(size + extra_bytes, MallocBlock::kMallocType);
/external/chromium_org/v8/test/cctest/
H A Dtest-heap.cc3293 int extra_bytes) {
3296 CHECK(space_remaining >= extra_bytes);
3297 int new_linear_size = space_remaining - extra_bytes;
3292 AllocateAllButNBytes(v8::internal::NewSpace* space, int extra_bytes) argument

Completed in 979 milliseconds