Home | History | Annotate | Download | only in compiler

Lines Matching defs:Buffer

181  * DESCRIPTION: Convert ToPLD macro to 20-byte buffer
200 UINT8 *Buffer;
676 Buffer = OpcEncodePldBuffer (&PldInfo);
678 /* Change Op to a Buffer */
688 /* Child node is the buffer length */
699 /* Peer to the child is the raw buffer data */
704 NewOp->Asl.Value.String = ACPI_CAST_PTR (char, Buffer);
715 * PARAMETERS: PldInfo - _PLD buffer struct (Using local struct)
717 * RETURN: Encode _PLD buffer suitable for return value from _PLD
719 * DESCRIPTION: Bit-packs a _PLD buffer struct.
727 UINT32 *Buffer;
731 Buffer = ACPI_CAST_PTR (UINT32, UtLocalCacheCalloc (ACPI_PLD_BUFFER_SIZE));
741 ACPI_MOVE_32_TO_32 (&Buffer[0], &Dword);
748 ACPI_MOVE_32_TO_32 (&Buffer[1], &Dword);
764 ACPI_MOVE_32_TO_32 (&Buffer[2], &Dword);
776 ACPI_MOVE_32_TO_32 (&Buffer[3], &Dword);
787 ACPI_MOVE_32_TO_32 (&Buffer[4], &Dword);
790 return (ACPI_CAST_PTR (UINT8, Buffer));