Home
last modified time | relevance | path

Searched refs:next_chunk (Results 1 – 8 of 8) sorted by relevance

/external/chromium-trace/catapult/third_party/coverage/coverage/
Dparser.py590 next_chunk = byte_chunks[ex]
591 if next_chunk in chunks_considered:
597 backward_jump = next_chunk.byte < this_chunk.byte
598 if next_chunk.first or backward_jump:
599 if next_chunk.line != chunk.line:
600 yield (chunk.line, next_chunk.line)
602 chunks_to_consider.append(next_chunk)
/external/compiler-rt/lib/lsan/
Dlsan_common.cc278 uptr next_chunk = frontier->back(); in FloodFillTag() local
280 LsanMetadata m(next_chunk); in FloodFillTag()
281 ScanRangeForPointers(next_chunk, next_chunk + m.requested_size(), frontier, in FloodFillTag()
/external/opencv3/3rdparty/libwebp/mux/
Dmuxinternal.c113 WebPChunk* next_chunk = ChunkSearchNextInList(first->next_, tag); in ChunkSearchList() local
114 if (next_chunk == NULL) break; in ChunkSearchList()
115 first = next_chunk; in ChunkSearchList()
/external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
Dhttp.py521 def next_chunk(self, num_retries=0): member in MediaIoBaseDownload
694 _, body = self.next_chunk(http=http, num_retries=num_retries)
745 def next_chunk(self, http=None, num_retries=0): member in HttpRequest
/external/dlmalloc/
Dmalloc.c2273 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->head & ~FLAG_BITS))) macro
2277 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
3272 assert(is_mmapped(p) || pinuse(p) || next_chunk(prev_chunk(p)) == p); in do_check_inuse_chunk()
3393 q = next_chunk(p); in do_check_smallbin()
3459 q = next_chunk(q); in traverse_and_check()
3521 q = next_chunk(q); in internal_mallinfo()
3563 q = next_chunk(q); in internal_malloc_stats()
4216 mchunkptr mn = next_chunk(mem2chunk(m)); in sys_alloc()
5146 mchunkptr next = next_chunk(p); in internal_bulk_free()
5182 mchunkptr next = next_chunk(q); in internal_inspect_all()
[all …]
/external/v8/src/heap/
Dspaces.h480 MemoryChunk* next_chunk() { return next_chunk_.Value(); } in next_chunk() function
823 DCHECK(next_chunk()->owner() == owner()); in next_page()
824 return static_cast<Page*>(next_chunk()); in next_page()
951 return static_cast<LargePage*>(next_chunk()); in next_page()
2284 return static_cast<NewSpacePage*>(next_chunk()); in next_page()
Dspaces.cc552 MemoryChunk* other_next = other->next_chunk(); in InsertAfter()
562 MemoryChunk* next_element = next_chunk(); in Unlink()
1254 if (page->next_chunk() != NULL) { in AllocateChunk()
Dheap.cc6107 next = chunk->next_chunk(); in FilterStoreBufferEntriesOnAboutToBeFreedPages()
6139 next = chunk->next_chunk(); in FreeQueuedChunks()