Lines Matching refs:fCapacity
119 // Note: fCapacity is the number of bytes remaining, and is subtracted from fEndByte to
122 fCapacity = fCapacity & -alignment;
123 if (fCapacity < size) {
126 char* const ptr = fEndByte - fCapacity;
128 SkASSERT(fCapacity >= size);
129 fCapacity -= size;
133 // Adjust fEndByte and fCapacity give a new block starting at bytes with size.
136 // Adjust fEndByte and fCapacity to satisfy the size and alignment request.
140 // the current end of allocated data is given by fEndByte - fCapacity. While the negative side
147 int fCapacity{0};