Searched refs:CHUNK_SIZE (Results 1 - 4 of 4) sorted by relevance

/haiku-fatelf/src/libs/icon/flat_icon/
H A DLittleEndianBuffer.cpp22 #define CHUNK_SIZE 256 macro
27 : fBuffer((uint8*)malloc(CHUNK_SIZE)),
29 fBufferEnd(fBuffer + CHUNK_SIZE),
30 fSize(CHUNK_SIZE),
67 _SetSize(fSize + CHUNK_SIZE);
83 _SetSize(fSize + CHUNK_SIZE);
99 _SetSize(fSize + CHUNK_SIZE);
115 _SetSize(fSize + CHUNK_SIZE);
131 _SetSize(fSize + CHUNK_SIZE);
160 newSize += CHUNK_SIZE;
[all...]
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dobjalloc.c79 #define CHUNK_SIZE (4096 - 32) macro
97 ret->chunks = (PTR) malloc (CHUNK_SIZE);
109 ret->current_space = CHUNK_SIZE - CHUNK_HEADER_SIZE;
156 chunk = (struct objalloc_chunk *) malloc (CHUNK_SIZE);
163 o->current_space = CHUNK_SIZE - CHUNK_HEADER_SIZE;
210 if (b > (char *) p && b < (char *) p + CHUNK_SIZE)
264 o->current_space = ((char *) p + CHUNK_SIZE) - b;
296 o->current_space = ((char *) p + CHUNK_SIZE) - current_ptr;
/haiku-fatelf/src/libs/stdc++/legacy/
H A Disgetline.cc91 #define CHUNK_SIZE 512 macro
99 char buf[CHUNK_SIZE];
103 _IO_size_t count = _IO_getline_info(sb, buf, CHUNK_SIZE, terminator,
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlreader.c66 #define CHUNK_SIZE 512 macro
802 if (inbuf->use < reader->cur + CHUNK_SIZE) {
830 * parse by block of CHUNK_SIZE bytes, various tests show that
833 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
836 CHUNK_SIZE, 0);
837 reader->cur += CHUNK_SIZE;
858 (inbuf->use - reader->cur <= CHUNK_SIZE)) {

Completed in 107 milliseconds