Lines Matching defs:Length
286 ACPI_SIZE Length = 0;
339 case AML_TO_STRING_OP: /* ToString (Buffer, Length, Result) (ACPI 2.0) */
348 * 1) Length of the input buffer
350 * 3) Length of input buffer up to a zero byte (null terminator)
355 while ((Length < Operand[0]->Buffer.Length) &&
356 (Length < Operand[1]->Integer.Value) &&
357 (Operand[0]->Buffer.Pointer[Length]))
359 Length++;
364 ReturnDesc = AcpiUtCreateStringObject (Length);
376 Operand[0]->Buffer.Pointer, Length);
412 if (Index >= Operand[0]->String.Length)
414 Length = Operand[0]->String.Length;
425 if (Index >= Operand[0]->Buffer.Length)
427 Length = Operand[0]->Buffer.Length;
440 Length = Operand[0]->Package.Count;
461 ACPI_FORMAT_UINT64 (Index), (UINT32) Length));