Lines Matching refs:BitLength
179 UINT32 BitLength);
184 UINT32 BitLength);
428 UINT32 BitLength = 0; in AcpiDbTestOneObject() local
447 BitLength = AcpiGbl_IntegerBitWidth; in AcpiDbTestOneObject()
460 BitLength = ByteLength * 8; in AcpiDbTestOneObject()
482 BitLength = ObjDesc->CommonField.BitLength; in AcpiDbTestOneObject()
483 ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); in AcpiDbTestOneObject()
484 if (BitLength > AcpiGbl_IntegerBitWidth) in AcpiDbTestOneObject()
545 Status = AcpiDbTestIntegerType (Node, BitLength); in AcpiDbTestOneObject()
555 Status = AcpiDbTestBufferType (Node, BitLength); in AcpiDbTestOneObject()
618 UINT32 BitLength) in AcpiDbTestIntegerType() argument
628 if (BitLength > 64) in AcpiDbTestIntegerType()
630 AcpiOsPrintf (" Invalid length for an Integer: %u", BitLength); in AcpiDbTestIntegerType()
643 BitLength, ACPI_ROUND_BITS_UP_TO_BYTES (BitLength), in AcpiDbTestIntegerType()
646 ValueToWrite = ACPI_UINT64_MAX >> (64 - BitLength); in AcpiDbTestIntegerType()
726 UINT32 BitLength) in AcpiDbTestBufferType() argument
739 ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); in AcpiDbTestBufferType()
764 AcpiOsPrintf (" (%4.4X/%3.3X)", BitLength, Temp1->Buffer.Length); in AcpiDbTestBufferType()
780 ExtraBits = BitLength % 8; in AcpiDbTestBufferType()