Home | History | Annotate | Download | only in stagefright

Lines Matching refs:chunkSize

79     // The optional parameter chunkSize specifies how many entries should be
81 // chunkSize can improve the performance at the cost of extra memory usage.
82 // The default value for chunkSize is set to read at least 4k bytes at a
86 size_t chunkSize = (4095 / sizeof(T)) + 1);
146 size_t chunkSize)
149 if (chunkSize == 0) {
156 T tmp[chunkSize];
158 size_t numBytesPerChunk = chunkSize * sizeof(T);
161 for (i = 0; i + chunkSize < count; i += chunkSize) {
162 // This loops is executed when more than chunkSize records need to be
174 x->appendArray(tmp, chunkSize);
179 // Right now, (count - i) <= chunkSize.
180 // We do the same thing as above, but with chunkSize replaced by count - i.