Lines Matching defs:Buffer
167 * PARAMETERS: Length - Size of buffer requested
169 * RETURN: Pointer to the buffer. Aborts compiler on allocation failure
171 * DESCRIPTION: Allocate a string buffer. Bypass the local
181 char *Buffer;
199 /* Link new cache buffer just following head of list */
209 return (Cache->Buffer);
216 /* Allocate a new buffer */
220 /* Link new cache buffer to head of list */
227 AslGbl_StringCacheNext = Cache->Buffer;
234 Buffer = AslGbl_StringCacheNext;
236 return (Buffer);
263 /* Allocate a new buffer */
268 /* Link new cache buffer to head of list */
275 AslGbl_ParseOpCacheNext = ACPI_CAST_PTR (ACPI_PARSE_OBJECT, Cache->Buffer);
290 * RETURN: Pointer to the buffer. Aborts on allocation failure
292 * DESCRIPTION: Allocate a subtable object buffer. Bypass the local
307 /* Allocate a new buffer */
312 /* Link new cache buffer to head of list */
319 AslGbl_SubtableCacheNext = ACPI_CAST_PTR (DT_SUBTABLE, Cache->Buffer);
334 * RETURN: Pointer to the buffer. Aborts on allocation failure
336 * DESCRIPTION: Allocate a field object buffer. Bypass the local
351 /* Allocate a new buffer */
356 /* Link new cache buffer to head of list */
363 AslGbl_FieldCacheNext = ACPI_CAST_PTR (DT_FIELD, Cache->Buffer);
380 * DESCRIPTION: Delete all local cache buffer blocks
405 "%u Strings (%u bytes), Buffer size: %u bytes, %u Buffers\n",
428 "%u ParseOps, Buffer size: %u ops (%u bytes), %u Buffers\n",
452 "%u Fields, Buffer size: %u fields (%u bytes), %u Buffers\n",
475 "%u Subtables, Buffer size: %u subtables (%u bytes), %u Buffers\n",