Home
last modified time | relevance | path

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

/external/perfetto/src/tracing/core/
Dtrace_buffer.cc330 const ChunkRecord& next_chunk = *GetChunkRecordAt(next_chunk_ptr); in DeleteNextChunksFor() local
333 next_chunk_ptr - begin() + next_chunk.size, next_chunk.is_valid()); in DeleteNextChunksFor()
339 if (PERFETTO_UNLIKELY(!next_chunk.is_valid())) { in DeleteNextChunksFor()
349 if (PERFETTO_LIKELY(!next_chunk.is_padding)) { in DeleteNextChunksFor()
350 ChunkMeta::Key key(next_chunk); in DeleteNextChunksFor()
359 bytes_overwritten += next_chunk.size; in DeleteNextChunksFor()
368 next_chunk_ptr - begin() + next_chunk.size, removed); in DeleteNextChunksFor()
371 padding_bytes_cleared += next_chunk.size; in DeleteNextChunksFor()
374 next_chunk_ptr += next_chunk.size; in DeleteNextChunksFor()
/external/python/google-api-python-client/tests/
Dtest_discovery.py975 status, body = request.next_chunk(http=http)
987 status, body = request.next_chunk(http=http)
993 status, body = request.next_chunk(http=http)
999 status, body = request.next_chunk(http=http)
1030 status, body = request.next_chunk(http=http)
1042 status, body = request.next_chunk(http=http)
1048 status, body = request.next_chunk(http=http)
1121 status, body = request.next_chunk(http=http)
1137 status, body = request.next_chunk(http=http)
1217 status, body = request.next_chunk(http=http)
[all …]
Dtest_http.py445 status, done = download.next_chunk()
453 status, done = download.next_chunk()
476 status, done = download.next_chunk()
489 status, done = download.next_chunk()
506 status, done = download.next_chunk()
519 status, done = download.next_chunk()
530 status, done = download.next_chunk()
543 status, done = download.next_chunk(num_retries=4)
577 status, done = download.next_chunk(num_retries=3)
591 status, done = download.next_chunk(num_retries=3)
[all …]
/external/compiler-rt/lib/lsan/
Dlsan_common.cc308 uptr next_chunk = frontier->back(); in FloodFillTag() local
310 LsanMetadata m(next_chunk); in FloodFillTag()
311 ScanRangeForPointers(next_chunk, next_chunk + m.requested_size(), frontier, in FloodFillTag()
/external/webp/src/mux/
Dmuxinternal.c107 WebPChunk* next_chunk = ChunkSearchNextInList(first->next_, tag); in ChunkSearchList() local
108 if (next_chunk == NULL) break; in ChunkSearchList()
109 first = next_chunk; in ChunkSearchList()
/external/u-boot/common/
Ddlmalloc.c399 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->size & ~PREV_INUSE) )) macro
788 mchunkptr next = next_chunk(p);
801 assert(next_chunk(prv) == p);
1819 if ( (newp = mem2chunk(newmem)) == next_chunk(oldp))
2279 for (q = next_chunk(p); in malloc_update_mallinfo()
2281 q = next_chunk(q)) in malloc_update_mallinfo()
Ddlmalloc.src1318 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->size & ~PREV_INUSE) ))
1653 mchunkptr next = next_chunk(p);
1666 assert(next_chunk(prv) == p);
2656 if ( (newp = mem2chunk(newmem)) == next_chunk(oldp))
3057 for (q = next_chunk(p);
3059 q = next_chunk(q))
/external/v8/src/heap/
Dslot-set.h587 explicit Chunk(Chunk* next_chunk, int chunk_capacity) { in Chunk()
588 next_ = next_chunk; in Chunk()
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c1741 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->head & ~INUSE_BITS))) macro
1745 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
2660 assert(is_mmapped(p) || pinuse(p) || next_chunk(prev_chunk(p)) == p); in do_check_inuse_chunk()
2781 q = next_chunk(p); in do_check_smallbin()
2847 q = next_chunk(q); in traverse_and_check()
2907 q = next_chunk(q); in internal_mallinfo()
2945 q = next_chunk(q); in internal_malloc_stats()
3563 mchunkptr mn = next_chunk(mem2chunk(m)); in sys_alloc()
4487 mn = next_chunk(mem2chunk(m)); in init_user_mstate()
/external/libffi/src/
Ddlmalloc.c1736 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->head & ~INUSE_BITS))) macro
1740 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
2655 assert(is_mmapped(p) || pinuse(p) || next_chunk(prev_chunk(p)) == p); in do_check_inuse_chunk()
2776 q = next_chunk(p); in do_check_smallbin()
2842 q = next_chunk(q); in traverse_and_check()
2902 q = next_chunk(q); in internal_mallinfo()
2940 q = next_chunk(q); in internal_malloc_stats()
3558 mchunkptr mn = next_chunk(mem2chunk(m)); in sys_alloc()
4482 mn = next_chunk(mem2chunk(m)); in init_user_mstate()
/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/python/google-api-python-client/googleapiclient/
Dhttp.py661 def next_chunk(self, num_retries=0): member in MediaIoBaseDownload
822 _, body = self.next_chunk(http=http, num_retries=num_retries)
867 def next_chunk(self, http=None, num_retries=0): member in HttpRequest
/external/python/google-api-python-client/docs/epy/
Dapi-objects.txt184 googleapiclient.http.HttpRequest.next_chunk googleapiclient.http.HttpRequest-class.html#next_chunk
220 …oogleapiclient.http.MediaIoBaseDownload.next_chunk googleapiclient.http.MediaIoBaseDownload-class.…