Home
last modified time | relevance | path

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

/external/perfetto/src/tracing/core/
Dtrace_buffer.cc336 const ChunkRecord& next_chunk = *GetChunkRecordAt(next_chunk_ptr); in DeleteNextChunksFor() local
339 next_chunk_ptr - begin() + next_chunk.size, next_chunk.is_valid()); in DeleteNextChunksFor()
345 if (PERFETTO_UNLIKELY(!next_chunk.is_valid())) { in DeleteNextChunksFor()
355 if (PERFETTO_LIKELY(!next_chunk.is_padding)) { in DeleteNextChunksFor()
356 ChunkMeta::Key key(next_chunk); in DeleteNextChunksFor()
365 bytes_overwritten += next_chunk.size; in DeleteNextChunksFor()
373 next_chunk_ptr - begin(), next_chunk_ptr - begin() + next_chunk.size, in DeleteNextChunksFor()
377 padding_bytes_cleared += next_chunk.size; in DeleteNextChunksFor()
380 next_chunk_ptr += next_chunk.size; in DeleteNextChunksFor()
/external/rust/cxx/demo/src/
Dmain.rs13 fn next_chunk(buf: &mut MultiBuf) -> &[u8]; in next_chunk() function
38 pub fn next_chunk(buf: &mut MultiBuf) -> &[u8] { in next_chunk() function
Dblobstore.cc36 auto chunk = next_chunk(buf); in put()
/external/python/google-api-python-client/tests/
Dtest_discovery.py1080 status, body = request.next_chunk(http=http)
1092 status, body = request.next_chunk(http=http)
1098 status, body = request.next_chunk(http=http)
1104 status, body = request.next_chunk(http=http)
1145 status, body = request.next_chunk(http=http)
1157 status, body = request.next_chunk(http=http)
1163 status, body = request.next_chunk(http=http)
1249 status, body = request.next_chunk(http=http)
1264 status, body = request.next_chunk(http=http)
1354 status, body = request.next_chunk(http=http)
[all …]
Dtest_http.py472 status, done = download.next_chunk()
480 status, done = download.next_chunk()
508 status, done = download.next_chunk()
518 status, done = download.next_chunk()
539 status, done = download.next_chunk()
549 status, done = download.next_chunk()
559 status, done = download.next_chunk()
572 status, done = download.next_chunk(num_retries=4)
605 status, done = download.next_chunk(num_retries=3)
619 status, done = download.next_chunk(num_retries=3)
[all …]
/external/python/google-api-python-client/docs/
Dmedia.md31 …ad object and flag it as a resumable upload. You then repeatedly call `next_chunk()` on the [`goog…
38 status, response = request.next_chunk()
52 … is retryable, the upload can be resumed by continuing to call request.next_chunk(), but subsequen…
67 # Call next_chunk() again, but use an exponential backoff for repeated errors.
/external/rust/cxx/book/src/
Dtutorial.md262 fn next_chunk(buf: &mut MultiBuf) -> &[u8];
298 # fn next_chunk(buf: &mut MultiBuf) -> &[u8];
320 pub fn next_chunk(buf: &mut MultiBuf) -> &[u8] {
348 In blobstore.cc we're able to call the Rust `next_chunk` function, exposed to
371 auto chunk = next_chunk(buf);
394 # fn next_chunk(buf: &mut MultiBuf) -> &[u8];
411 # pub fn next_chunk(buf: &mut MultiBuf) -> &[u8] {
517 # fn next_chunk(buf: &mut MultiBuf) -> &[u8];
537 # pub fn next_chunk(buf: &mut MultiBuf) -> &[u8] {
617 # auto chunk = next_chunk(buf);
Dconcepts.md38 # fn next_chunk(buf: &mut MultiBuf) -> &[u8];
65 `use super::next_chunk` except re-exported to C++. The parent module will either
Dindex.md46 fn next_chunk(buf: &mut MultiBuf) -> &[u8];
/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/llvm-project/compiler-rt/lib/lsan/
Dlsan_common.cpp374 uptr next_chunk = frontier->back(); in FloodFillTag() local
376 LsanMetadata m(next_chunk); in FloodFillTag()
377 ScanRangeForPointers(next_chunk, next_chunk + m.requested_size(), frontier, in FloodFillTag()
/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.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/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.py687 def next_chunk(self, num_retries=0): member in MediaIoBaseDownload
862 _, body = self.next_chunk(http=http, num_retries=num_retries)
914 def next_chunk(self, http=None, num_retries=0): member in HttpRequest
/external/python/google-api-python-client/docs/epy/
Dapi-objects.txt205 googleapiclient.http.HttpRequest.next_chunk googleapiclient.http.HttpRequest-class.html#next_chunk
241 …oogleapiclient.http.MediaIoBaseDownload.next_chunk googleapiclient.http.MediaIoBaseDownload-class.…
/external/rust/cxx/
DREADME.md97 fn next_chunk(buf: &mut MultiBuf) -> &[u8];
165 `use super::next_chunk` except re-exported to C++. The parent module will either
/external/usrsctp/usrsctplib/netinet/
Dsctp_input.c5020 goto next_chunk;
5633 goto next_chunk;
5647 goto next_chunk;
5698 next_chunk: