HomeSort by: relevance | last modified time | path
    Searched defs:n0 (Results 1 - 12 of 12) sorted by relevancy

  /src/usr.bin/telnet/
terminal.c 91 int n, n0, n1; local in function:ttyflush
93 n0 = ring_full_count(&ttyoring);
111 if (n1 == n && n0 > n) {
112 n1 = n0 - n;
132 if (n == n0) {
133 if (n0)
137 return n0 - n + 1;
  /src/lib/libc/gdtoa/
gethex.c 45 int big, esign, havedig, irv, j, k, n, n0, nbits, up, zret; local in function:gethex
172 n0 = n = (unsigned int)nbits >> kshift;
178 for(j = 0; j < n0; ++j)
180 if (n > n0)
  /src/lib/libm/noieee_src/
n_cbrt.c 86 const int n0=1,n1=0; local in function:cbrt
88 const int n0=0,n1=1; local in function:cbrt
91 mexp=px[n0]&0x7ff00000;
95 sign=px[n0]&0x80000000; /* sign= sign(x) */
96 px[n0] ^= sign; /* x=|x| */
101 {pt[n0]=0x43500000; /* set t= 2**54 */
102 t*=x; pt[n0]=pt[n0]/3+B2;
105 pt[n0]=px[n0]/3+B1
    [all...]
  /src/sys/netipsec/
ipsec_mbuf.c 212 struct mbuf *n0, *n, **np; local in function:m_makespace
215 n0 = NULL;
216 np = &n0;
229 m_freem(n0);
245 if (n0 != NULL) {
247 m->m_next = n0;
252 m_freem(n0);
257 if ((n->m_next = n0) == NULL)
259 n0 = n;
262 m->m_next = n0;
    [all...]
  /src/sys/crypto/cprng_fast/
cprng_fast.c 172 unsigned n = len, n0;
177 n0 = MIN(n, sizeof(cprng->buf) - cprng->i);
178 memcpy(p, &cprng->buf[cprng->i], n0);
179 if ((n -= n0) == 0) {
180 cprng->i += n0;
184 p += n0;
169 unsigned n = len, n0; local in function:cprng_fast_buf
  /src/games/hack/
hack.topl.c 217 int n, n0, tlpos, dead; local in function:vpline
231 n0 = strlen(bp);
233 n0 + (int)strlen(toplines) + 3 < CO - 8 && /* leave room for
247 while (n0 && !dead) {
248 if (n0 >= CO) {
250 n0 = 0;
253 n0 = n;
254 if (!n0)
257 n0 = n;
258 if (!n0)
    [all...]
  /src/sys/lib/libkern/
entpool.c 184 size_t n0, n;
199 n = n0 = MIN(127, MIN(len, RATE-1 - P->i - 1));
208 return (n0 == len);
181 size_t n0, n; local in function:entpool_enter_nostir
  /src/sys/arch/sh3/sh3/
db_disasm.c 179 int n0, n3; local in function:get_opcode
183 n0 = (insn & 0xf000) >> 12;
186 if (f[n0][n3] != NULL) {
187 (*f[n0][n3])(pc, buf, len);
  /src/bin/ksh/
expr.c 523 int i, n0; local in function:token
525 for (i = 0; (n0 = opinfo[i].name[0]); i++)
526 if (c == n0
533 if (!n0)
  /src/sys/kern/
uipc_socket2.c 1132 struct mbuf *m, *n, *n0, *nlast; local in function:sbappendaddrchain
1163 n0 = NULL;
1179 /* Append record (asa+m) to end of new chain n0 */
1180 if (n0 == NULL) {
1181 n0 = n;
1195 SBLINKRECORDCHAIN(sb, n0, nlast);
1212 while ((n = n0) != NULL) {
1219 n0 = n->m_nextpkt; /* iterate at next prepended address */
  /src/sys/net80211/
ieee80211_input.c 984 struct mbuf *n, *n0, **np; local in function:ieee80211_decap
988 n0 = NULL;
989 np = &n0;
993 if (n0 == NULL) {
1005 m_freem(n0);
1015 if (n0 == NULL) {
1030 m = n0;
  /src/sys/netinet6/
icmp6.c 677 struct mbuf *n0 = n; local in function:_icmp6_input
683 if ((n = m_dup(n0, 0, M_COPYALL, M_DONTWAIT)) == NULL) {
688 m_freem(n0);

Completed in 22 milliseconds