Home
last modified time | relevance | path

Searched refs:maxout (Results 1 – 3 of 3) sorted by relevance

/linux/fs/nls/
H A Dnls_base.c89 int utf32_to_utf8(unicode_t u, u8 *s, int maxout) in utf32_to_utf8() argument
103 for (t = utf8_table; t->cmask && maxout; t++, maxout--) { in utf32_to_utf8()
136 wchar_t *pwcs, int maxout) in utf8s_to_utf16s() argument
143 while (inlen > 0 && maxout > 0 && *s) { in utf8s_to_utf16s()
152 if (maxout < 2) in utf8s_to_utf16s()
162 maxout -= 2; in utf8s_to_utf16s()
165 maxout--; in utf8s_to_utf16s()
170 maxout--; in utf8s_to_utf16s()
190 u8 *s, int maxout) in utf16s_to_utf8s() argument
197 while (inlen > 0 && maxout > 0) { in utf16s_to_utf8s()
[all …]
/linux/drivers/block/aoe/
H A Daoecmd.c271 if (t->nout < t->maxout in newframe()
690 if (t->nout >= t->maxout) in rexmit_deferred()
801 if (t->maxout != 1) { in rexmit_timer()
802 t->ssthresh = t->maxout / 2; in rexmit_timer()
803 t->maxout = 1; in rexmit_timer()
1001 if (!t || t->maxout >= t->nframes) in calc_rttavg()
1003 if (t->maxout < t->ssthresh) in calc_rttavg()
1004 t->maxout += 1; in calc_rttavg()
1005 else if (t->nout == t->maxout && t->next_cwnd-- == 0) { in calc_rttavg()
1006 t->maxout += 1; in calc_rttavg()
[all …]
H A Daoe.h147 ushort maxout; /* current value for max outstanding */ member