Lines Matching refs:ByteLength
57 UINT32 ByteLength);
63 UINT32 ByteLength);
69 UINT32 ByteLength);
96 UINT32 ByteLength, in DtCompileOneField() argument
107 DtCompileInteger (Buffer, Field, ByteLength, Flags); in DtCompileOneField()
112 DtCompileString (Buffer, Field, ByteLength); in DtCompileOneField()
117 Status = DtCompileUuid (Buffer, Field, ByteLength); in DtCompileOneField()
127 DtCompileBuffer (Buffer, Field->Value, Field, ByteLength); in DtCompileOneField()
132 DtCompileUnicode (Buffer, Field, ByteLength); in DtCompileOneField()
165 UINT32 ByteLength) in DtCompileString() argument
174 if (Length > ByteLength) in DtCompileString()
176 sprintf (MsgBuffer, "Maximum %u characters", ByteLength); in DtCompileString()
178 Length = ByteLength; in DtCompileString()
206 UINT32 ByteLength) in DtCompileUnicode() argument
245 UINT32 ByteLength) in DtCompileUuid() argument
288 UINT32 ByteLength, in DtCompileInteger() argument
298 if ((ByteLength > 8) || (ByteLength == 0)) in DtCompileInteger()
352 MaxValue = ((UINT64) (-1)) >> (64 - (ByteLength * 8)); in DtCompileInteger()
359 ACPI_FORMAT_UINT64 (Value), ByteLength); in DtCompileInteger()
363 memcpy (Buffer, &Value, ByteLength); in DtCompileInteger()
458 UINT32 ByteLength) in DtCompileBuffer() argument
494 return (ByteLength - Count); in DtCompileBuffer()