Lines Matching defs:Length
181 ACPI_SIZE Length;
190 case AML_MID_OP: /* Mid (Source[0], Index[1], Length[2], Result[3]) */
206 Length = (ACPI_SIZE) Operand[2]->Integer.Value;
212 if (Index >= Operand[0]->String.Length)
214 Length = 0;
219 else if ((Index + Length) > Operand[0]->String.Length)
221 Length =
222 (ACPI_SIZE) Operand[0]->String.Length - (ACPI_SIZE) Index;
233 Buffer = ACPI_ALLOCATE_ZEROED ((ACPI_SIZE) Length + 1);
245 if (Length > 0)
249 Buffer = ACPI_ALLOCATE_ZEROED (Length);
269 Operand[0]->String.Pointer + Index, Length);
275 ReturnDesc->String.Length = (UINT32) Length;