HomeSort by relevance Sort by last modified time
    Searched refs:lamt (Results 1 - 3 of 3) sorted by null

  /external/openssh/
misc.h 84 u_int64_t rate, thresh, lamt; member in struct:bwlimit
misc.c 864 bw->lamt = 0;
881 bw->lamt += read_len;
882 if (bw->lamt < bw->thresh)
890 bw->lamt *= 8;
891 waitlen = (double)1000000L * bw->lamt / bw->rate;
918 bw->lamt = 0;
  /external/dropbear/
scp.c 770 static int lamt, thresh = 16384; local
779 lamt += amount;
780 if (lamt < thresh)
788 lamt *= 8;
789 waitlen = (double)1000000L * lamt / limit_rate;
816 lamt = 0;

Completed in 77 milliseconds