Searched defs:next_chunk (Results 1 - 8 of 8) sorted by relevance

/external/perfetto/src/tracing/core/
H A Dtrace_buffer.cc212 const ChunkRecord& next_chunk = *GetChunkRecordAt(next_chunk_ptr); local
215 next_chunk_ptr - begin() + next_chunk.size, next_chunk.is_valid());
221 if (PERFETTO_UNLIKELY(!next_chunk.is_valid())) {
229 // Remove |next_chunk| from the index, unless it's a padding record (padding
231 if (PERFETTO_LIKELY(!next_chunk.is_padding)) {
232 ChunkMeta::Key key(next_chunk);
246 next_chunk_ptr - begin() + next_chunk.size, removed);
250 next_chunk_ptr += next_chunk.size;
/external/webp/src/mux/
H A Dmuxinternal.c107 WebPChunk* next_chunk = ChunkSearchNextInList(first->next_, tag); local
108 if (next_chunk == NULL) break;
109 first = next_chunk;
/external/compiler-rt/lib/lsan/
H A Dlsan_common.cc308 uptr next_chunk = frontier->back(); local
310 LsanMetadata m(next_chunk);
311 ScanRangeForPointers(next_chunk, next_chunk + m.requested_size(), frontier,
/external/dlmalloc/
H A 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);
3393 q = next_chunk(p);
3459 q = next_chunk(q);
3521 q = next_chunk(q);
3563 q = next_chunk(q);
4216 mchunkptr mn = next_chunk(mem2chunk(m));
5146 mchunkptr next = next_chunk(p);
5182 mchunkptr next = next_chunk(
[all...]
/external/libffi/src/
H A 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);
2776 q = next_chunk(p);
2842 q = next_chunk(q);
2902 q = next_chunk(q);
2940 q = next_chunk(q);
3558 mchunkptr mn = next_chunk(mem2chunk(m));
4482 mn = next_chunk(mem2chunk(m));
/external/python/cpython2/Modules/_ctypes/libffi/src/
H A 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);
2781 q = next_chunk(p);
2847 q = next_chunk(q);
2907 q = next_chunk(q);
2945 q = next_chunk(q);
3563 mchunkptr mn = next_chunk(mem2chunk(m));
4487 mn = next_chunk(mem2chunk(m));
/external/python/cpython3/Modules/_ctypes/libffi/src/
H A 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);
2781 q = next_chunk(p);
2847 q = next_chunk(q);
2907 q = next_chunk(q);
2945 q = next_chunk(q);
3563 mchunkptr mn = next_chunk(mem2chunk(m));
4487 mn = next_chunk(mem2chunk(m));
/external/v8/src/heap/
H A Dspaces.h549 MemoryChunk* next_chunk() { return next_chunk_.Value(); } function in class:v8::internal::MemoryChunk
715 Page* next_page() { return static_cast<Page*>(next_chunk()); }
802 return static_cast<LargePage*>(next_chunk());

Completed in 2345 milliseconds