Lines Matching refs:Operand0
168 ACPI_OPERAND_OBJECT *Operand0, in AcpiExConcatTemplate() argument
193 Status = AcpiUtGetResourceEndTag (Operand0, &EndTag); in AcpiExConcatTemplate()
199 Length0 = ACPI_PTR_DIFF (EndTag, Operand0->Buffer.Pointer); in AcpiExConcatTemplate()
228 memcpy (NewBuf, Operand0->Buffer.Pointer, Length0); in AcpiExConcatTemplate()
260 ACPI_OPERAND_OBJECT *Operand0, in AcpiExDoConcatenate() argument
282 switch (Operand0->Common.Type) in AcpiExDoConcatenate()
336 Operand0->Common.Type)); in AcpiExDoConcatenate()
358 switch (Operand0->Common.Type) in AcpiExDoConcatenate()
377 memcpy (NewBuf, &Operand0->Integer.Value, in AcpiExDoConcatenate()
391 ((ACPI_SIZE) Operand0->String.Length + in AcpiExDoConcatenate()
403 strcpy (NewBuf, Operand0->String.Pointer); in AcpiExDoConcatenate()
412 ((ACPI_SIZE) Operand0->Buffer.Length + in AcpiExDoConcatenate()
424 memcpy (NewBuf, Operand0->Buffer.Pointer, in AcpiExDoConcatenate()
425 Operand0->Buffer.Length); in AcpiExDoConcatenate()
426 memcpy (NewBuf + Operand0->Buffer.Length, in AcpiExDoConcatenate()
436 Operand0->Common.Type)); in AcpiExDoConcatenate()
637 ACPI_OPERAND_OBJECT *Operand0, in AcpiExDoLogicalOp() argument
661 switch (Operand0->Common.Type) in AcpiExDoLogicalOp()
693 if (Operand0->Common.Type == ACPI_TYPE_INTEGER) in AcpiExDoLogicalOp()
699 Integer0 = Operand0->Integer.Value; in AcpiExDoLogicalOp()
742 Length0 = Operand0->Buffer.Length; in AcpiExDoLogicalOp()
747 Compare = memcmp (Operand0->Buffer.Pointer, in AcpiExDoLogicalOp()