Lines Matching refs:Buffer
199 Length0 = ACPI_PTR_DIFF (EndTag, Operand0->Buffer.Pointer); in AcpiExConcatTemplate()
209 Length1 = ACPI_PTR_DIFF (EndTag, Operand1->Buffer.Pointer); in AcpiExConcatTemplate()
227 NewBuf = ReturnDesc->Buffer.Pointer; in AcpiExConcatTemplate()
228 memcpy (NewBuf, Operand0->Buffer.Pointer, Length0); in AcpiExConcatTemplate()
229 memcpy (NewBuf + Length0, Operand1->Buffer.Pointer, Length1); in AcpiExConcatTemplate()
373 NewBuf = (char *) ReturnDesc->Buffer.Pointer; in AcpiExDoConcatenate()
412 ((ACPI_SIZE) Operand0->Buffer.Length + in AcpiExDoConcatenate()
413 LocalOperand1->Buffer.Length)); in AcpiExDoConcatenate()
420 NewBuf = (char *) ReturnDesc->Buffer.Pointer; in AcpiExDoConcatenate()
424 memcpy (NewBuf, Operand0->Buffer.Pointer, in AcpiExDoConcatenate()
425 Operand0->Buffer.Length); in AcpiExDoConcatenate()
426 memcpy (NewBuf + Operand0->Buffer.Length, in AcpiExDoConcatenate()
427 LocalOperand1->Buffer.Pointer, in AcpiExDoConcatenate()
428 LocalOperand1->Buffer.Length); in AcpiExDoConcatenate()
742 Length0 = Operand0->Buffer.Length; in AcpiExDoLogicalOp()
743 Length1 = LocalOperand1->Buffer.Length; in AcpiExDoLogicalOp()
747 Compare = memcmp (Operand0->Buffer.Pointer, in AcpiExDoLogicalOp()
748 LocalOperand1->Buffer.Pointer, in AcpiExDoLogicalOp()