Lines Matching refs:ByteLength
189 UINT32 ByteLength);
429 UINT32 ByteLength = 0; in AcpiDbTestOneObject() local
453 ByteLength = ObjDesc->String.Length; in AcpiDbTestOneObject()
459 ByteLength = ObjDesc->Buffer.Length; in AcpiDbTestOneObject()
460 BitLength = ByteLength * 8; in AcpiDbTestOneObject()
483 ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); in AcpiDbTestOneObject()
550 Status = AcpiDbTestStringType (Node, ByteLength); in AcpiDbTestOneObject()
734 UINT32 ByteLength; in AcpiDbTestBufferType() local
739 ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); in AcpiDbTestBufferType()
740 if (ByteLength == 0) in AcpiDbTestBufferType()
748 Buffer = ACPI_ALLOCATE_ZEROED (ByteLength); in AcpiDbTestBufferType()
765 for (i = 0; ((i < 4) && (i < ByteLength)); i++) in AcpiDbTestBufferType()
779 memset (Buffer, BUFFER_FILL_VALUE, ByteLength); in AcpiDbTestBufferType()
783 Buffer [ByteLength - 1] = ACPI_MASK_BITS_ABOVE (ExtraBits); in AcpiDbTestBufferType()
787 WriteValue.Buffer.Length = ByteLength; in AcpiDbTestBufferType()
804 if (memcmp (Temp2->Buffer.Pointer, Buffer, ByteLength)) in AcpiDbTestBufferType()
811 WriteValue.Buffer.Length = ByteLength; in AcpiDbTestBufferType()
829 Temp3->Buffer.Pointer, ByteLength)) in AcpiDbTestBufferType()
861 UINT32 ByteLength) in AcpiDbTestStringType() argument