Searched refs:chunks (Results 1 - 7 of 7) sorted by path

/haiku/src/system/kernel/slab/
H A DMemoryManager.h91 Chunk chunks[SLAB_SMALL_CHUNKS_PER_META_CHUNK]; member in struct:MemoryManager::MetaChunk
287 + (chunk - metaChunk->chunks) * metaChunk->chunkSize;
295 || (chunk->next >= metaChunk->chunks
296 && chunk->next < metaChunk->chunks + metaChunk->chunkCount);
H A DMemoryManager.cpp292 fChunk(chunk - metaChunk->chunks)
320 fChunk(chunk - metaChunk->chunks)
327 out.Print("slab memory manager alloc chunks: size: %" B_PRIuSIZE
346 fChunk(chunk - metaChunk->chunks)
498 "If \"-c\" is given, the chunks of all meta chunks area printed as "
510 "List all non-full slab meta chunks",
512 "Lists all non-full slab meta chunks.\n"
513 "If \"-c\" is given, the chunks of all meta chunks are
[all...]
/haiku/src/add-ons/kernel/generic/locked_pool/
H A Dlocked_pool.c61 struct chunk_header *chunks;// list of chunks member in struct:locked_pool
176 chunk->next = pool->chunks;
177 pool->chunks = chunk;
243 /*! Free all chunks belonging to pool */
249 for (chunk = pool->chunks; chunk; chunk = next) {
267 pool->chunks = NULL;
468 pool->chunks = NULL;
/haiku/src/apps/haikudepot/build/scripts/
H A Dustache.py784 Generate rendered mustache template byte chunks.
978 Generate rendered mustache template chunks.
990 :returns: generator of bytes/str chunks (same type as template)
997 chunks = process(
1010 codecs.iterdecode(chunks, 'utf8')
1012 chunks
/haiku/src/system/libroot/posix/malloc_hoard2/
H A Dwrapper.cpp596 int chunks = 0; local
603 chunks++;
610 stats.chunks_used = chunks;
612 stats.chunks_free = hoardHeap::SIZE_CLASSES - chunks;
/haiku/src/tests/kits/midi/synth_file_reader/
H A DSynthFileReader.cpp121 bool SSynthFileReader::ReadHeader(uint32& version, uint32& chunks, uint32& nextChunk) { argument
124 if (Read(tag) && TagEquals(tag, "IREZ") && Read(version) && Read(chunks)) {
163 uint32 chunks; local
167 if (ReadHeader(version, chunks, nextChunk)) {
168 for (uint32 chunk = 0; chunk < chunks; chunk ++) {
H A DSynthFileReader.h57 bool ReadHeader(uint32& version, uint32& chunks, uint32& nextChunk);

Completed in 76 milliseconds