Lines Matching refs:temp

512   unsigned    temp;  in qh_lines()  local
540 temp = snprintf (next, size, in qh_lines()
550 size -= temp; in qh_lines()
551 next += temp; in qh_lines()
600 temp = snprintf (next, size, in qh_lines()
607 if ((signed int)temp < 0) in qh_lines()
608 temp = 0; in qh_lines()
609 else if (size < temp) in qh_lines()
610 temp = size; in qh_lines()
611 size -= temp; in qh_lines()
612 next += temp; in qh_lines()
613 if (temp == size) in qh_lines()
617 temp = snprintf (next, size, "\n"); in qh_lines()
618 if ((signed int)temp < 0) in qh_lines()
619 temp = 0; in qh_lines()
620 else if (size < temp) in qh_lines()
621 temp = size; in qh_lines()
622 size -= temp; in qh_lines()
623 next += temp; in qh_lines()
653 unsigned temp, size; in show_async() local
666 temp = snprintf (next, size, "\nreclaim =\n"); in show_async()
667 size -= temp; in show_async()
668 next += temp; in show_async()
704 unsigned temp, size, seen_count; in show_periodic() local
718 temp = snprintf (next, size, "size = %d\n", ehci->periodic_size); in show_periodic()
719 size -= temp; in show_periodic()
720 next += temp; in show_periodic()
747 temp = snprintf (next, size, "%4d: ", i); in show_periodic()
748 size -= temp; in show_periodic()
749 next += temp; in show_periodic()
754 temp = snprintf (next, size, " qh%d-%04x/%p", in show_periodic()
760 size -= temp; in show_periodic()
761 next += temp; in show_periodic()
762 for (temp = 0; temp < seen_count; temp++) { in show_periodic()
763 if (seen [temp].ptr != p.ptr) in show_periodic()
766 temp = snprintf (next, size, in show_periodic()
790 if (temp == seen_count && p.ptr) { in show_periodic()
796 temp = 0; in show_periodic()
807 temp++; in show_periodic()
815 temp = snprintf (next, size, in show_periodic()
822 temp, in show_periodic()
846 temp = 0; in show_periodic()
853 temp = snprintf (next, size, in show_periodic()
878 temp = snprintf (next, size, in show_periodic()
884 temp = snprintf (next, size, in show_periodic()
890 size -= temp; in show_periodic()
891 next += temp; in show_periodic()
894 temp = snprintf (next, size, "\n"); in show_periodic()
895 size -= temp; in show_periodic()
896 next += temp; in show_periodic()
939 unsigned temp, size, i; in show_registers() local
952 temp = snprintf (next, size, in show_registers()
955 size -= temp; in show_registers()
956 next += temp; in show_registers()
959 temp = snprintf (next, size, "structural params 0x%08x\n", i); in show_registers()
960 size -= temp; in show_registers()
961 next += temp; in show_registers()
964 temp = snprintf (next, size, "capability params 0x%08x\n", i); in show_registers()
965 size -= temp; in show_registers()
966 next += temp; in show_registers()
968 temp = dbg_status_buf (scratch, sizeof scratch, label, in show_registers()
970 temp = snprintf (next, size, fmt, temp, scratch); in show_registers()
971 size -= temp; in show_registers()
972 next += temp; in show_registers()
992 temp = dbg_command_buf (scratch, sizeof scratch, label, in show_registers()
994 temp = snprintf (next, size, fmt, temp, scratch); in show_registers()
995 size -= temp; in show_registers()
996 next += temp; in show_registers()
998 temp = dbg_intr_buf (scratch, sizeof scratch, label, in show_registers()
1000 temp = snprintf (next, size, fmt, temp, scratch); in show_registers()
1001 size -= temp; in show_registers()
1002 next += temp; in show_registers()
1004 temp = snprintf (next, size, "uframe %04x\n", in show_registers()
1006 size -= temp; in show_registers()
1007 next += temp; in show_registers()
1028 temp = dbg_port_buf (scratch, sizeof scratch, label, i, in show_registers()
1030 temp = snprintf (next, size, fmt, temp, scratch); in show_registers()
1031 size -= temp; in show_registers()
1032 next += temp; in show_registers()
1036 temp = snprintf (next, size, "reclaim qh %p%s\n", in show_registers()
1039 size -= temp; in show_registers()
1040 next += temp; in show_registers()
1062 temp = snprintf (next, size, in show_registers()
1066 size -= temp; in show_registers()
1067 next += temp; in show_registers()
1069 temp = snprintf (next, size, "complete %ld unlink %ld\n", in show_registers()
1071 size -= temp; in show_registers()
1072 next += temp; in show_registers()