Lines Matching refs:ByteLength
81 UINT32 ByteLength);
317 UINT32 ByteLength = 0; in AcpiDbTestOneObject() local
341 ByteLength = ObjDesc->String.Length; in AcpiDbTestOneObject()
347 ByteLength = ObjDesc->Buffer.Length; in AcpiDbTestOneObject()
348 BitLength = ByteLength * 8; in AcpiDbTestOneObject()
366 ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); in AcpiDbTestOneObject()
433 Status = AcpiDbTestStringType (Node, ByteLength); in AcpiDbTestOneObject()
603 UINT32 ByteLength; in AcpiDbTestBufferType() local
608 ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); in AcpiDbTestBufferType()
609 if (ByteLength == 0) in AcpiDbTestBufferType()
617 Buffer = ACPI_ALLOCATE_ZEROED (ByteLength); in AcpiDbTestBufferType()
634 for (i = 0; ((i < 4) && (i < ByteLength)); i++) in AcpiDbTestBufferType()
648 memset (Buffer, BUFFER_FILL_VALUE, ByteLength); in AcpiDbTestBufferType()
652 Buffer [ByteLength - 1] = ACPI_MASK_BITS_ABOVE (ExtraBits); in AcpiDbTestBufferType()
656 WriteValue.Buffer.Length = ByteLength; in AcpiDbTestBufferType()
673 if (memcmp (Temp2->Buffer.Pointer, Buffer, ByteLength)) in AcpiDbTestBufferType()
680 WriteValue.Buffer.Length = ByteLength; in AcpiDbTestBufferType()
698 Temp3->Buffer.Pointer, ByteLength)) in AcpiDbTestBufferType()
730 UINT32 ByteLength) in AcpiDbTestStringType() argument