Lines Matching refs:chunks
30 * Obstack Chunks:: How obstacks obtain and release chunks;
65 @dfn{chunks}. The @code{struct obstack} structure points to a chain of
66 the chunks currently in use.
70 chunks automatically, you don't need to pay much attention to them, but
91 the chunks of memory into which objects are packed. The other,
92 @code{obstack_chunk_free}, is used to return chunks when the objects in
262 Recall that the objects in an obstack are grouped into chunks. When all
328 Because memory in obstack chunks is used sequentially, it is possible to
624 @cindex efficiency of chunks
625 @cindex chunks
627 Obstacks work by allocating space for themselves in large chunks, and
628 then parceling out space in the chunks to satisfy your requests. Chunks
631 for storing objects. Regardless of the specified size, longer chunks
634 The obstack library allocates chunks by calling the function
654 If you allocate chunks with @code{malloc}, the chunk size should be a
666 assigning it a new value. Doing so does not affect the chunks already
667 allocated, but will change the size of chunks allocated for that particular
748 The size for allocating chunks. This is an lvalue. @xref{Obstack Chunks}.