Lines Matching defs:length
45 * DESCRIPTION: Calculate the length of a string with boundary.
52 u32 length = 0;
55 length++;
60 return (length);
331 s32 length;
449 length = (s32)acpi_ut_bound_string_length(s, precision);
451 while (length < width--) {
459 for (i = 0; i < length; ++i) {
464 while (length < width--) {
574 int length;
577 length = vsnprintf(string, size, format, args);
580 return (length);
599 int length;
602 length = vsnprintf(string, ACPI_UINT32_MAX, format, args);
605 return (length);
625 int length;
628 length = vsnprintf(acpi_gbl_print_buffer,
631 (void)fwrite(acpi_gbl_print_buffer, length, 1, ACPI_FILE_OUT);
634 return (length);
652 int length;
655 length = vprintf(format, args);
658 return (length);
678 int length;
681 length = vsnprintf(acpi_gbl_print_buffer,
684 (void)fwrite(acpi_gbl_print_buffer, length, 1, file);
687 return (length);
706 int length;
709 length = vfprintf(file, format, args);
712 return (length);