Searched defs:nn (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dgetnetbynis.c133 int nn; local
142 for (nn = 4, net2 = addr; net2; net2 >>= 8) {
143 netbr[--nn] = net2 & 0xff;
146 switch (nn) {
H A Dgetnetbydns.c234 int nn, anslen; local
243 for (nn = 4, net2 = net; net2; net2 >>= 8)
244 netbr[--nn] = net2 & 0xff;
245 switch (nn) {
H A Dgethostbydns.c430 register int nn; local
433 nn = (int)strlen(bp) + 1; /* for the \0 */
434 bp += nn;
435 buflen -= nn;
/vbox/src/VBox/Devices/Network/slirp/
H A Dsbuf.c206 int len, n, nn; local
234 nn = sb->sb_rptr - sb->sb_data;
235 if (nn > len)
236 nn = len;
237 m_copydata(m, n, nn, sb->sb_data);
238 n += nn;
H A Dsocket.c241 int n, nn, lss, total; local
319 nn = readv(so->s, (struct iovec *)iov, n);
321 nn = recv(so->s, iov[0].iov_base, iov[0].iov_len, (so->so_tcpcb->t_force? MSG_OOB:0));
323 Log2(("%s: read(1) nn = %d bytes\n", __PRETTY_FUNCTION__, nn));
325 if (nn <= 0)
339 if (nn == 0 && (pending != 0))
345 if ( nn < 0
358 /* nn == 0 means peer has performed an orderly shutdown */
359 Log2(("%s: disconnected, nn
530 int n, nn; local
[all...]
/vbox/src/VBox/Runtime/common/math/gcc/
H A Dqdivrem.c208 u_int nn = COMBINE(uj0, uj1); local
209 qhat = nn / v1;
210 rhat = nn % v1;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c305 @param nn Number of symbols.
306 @param nbit Number of bits needed to represent nn.
316 IN UINT16 nn,
341 SetMem (Sd->mPTLen, nn, 0);
383 while (Index < nn && Index < NPT) {
387 return MakeTable (Sd, nn, Sd->mPTLen, 8, Sd->mPTTable);
314 ReadPTLen( IN SCRATCH_DATA *Sd, IN UINT16 nn, IN UINT16 nbit, IN UINT16 Special ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c315 @param nn The number of symbols.
316 @param nbit The number of bits needed to represent nn.
326 IN UINT16 nn,
349 SetMem (Sd->mPTLen, nn, 0);
391 while (Index < nn && Index < NPT) {
395 return MakeTable (Sd, nn, Sd->mPTLen, 8, Sd->mPTTable);
324 ReadPTLen( IN SCRATCH_DATA *Sd, IN UINT16 nn, IN UINT16 nbit, IN UINT16 Special ) argument
/vbox/src/VBox/Devices/Network/lwip/src/core/snmp/
H A Dmib_structs.c230 struct mib_list_node *nn; local
241 nn = snmp_mib_ln_alloc(objid);
242 if (nn != NULL)
244 rn->head = nn;
245 rn->tail = nn;
246 *insn = nn;
274 nn = snmp_mib_ln_alloc(objid);
275 if (nn != NULL)
277 nn->next = NULL;
278 nn
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/snmp/
H A Dmib_structs.c218 struct mib_list_node *nn; local
229 nn = snmp_mib_ln_alloc(objid);
230 if (nn != NULL)
232 rn->head = nn;
233 rn->tail = nn;
234 *insn = nn;
262 nn = snmp_mib_ln_alloc(objid);
263 if (nn != NULL)
265 nn->next = NULL;
266 nn
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DDecompress.c354 IN UINT16 nn,
367 nn - Number of symbols
368 nbit - Number of bits needed to represent nn
392 for (Index = 0; Index < nn; Index++) {
427 while (Index < nn) {
431 return MakeTable (Sd, nn, Sd->mPTLen, 8, Sd->mPTTable);
352 ReadPTLen( IN SCRATCH_DATA *Sd, IN UINT16 nn, IN UINT16 nbit, IN UINT16 Special ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c2312 IN UINT16 nn,
2325 nn - Number of symbols
2326 nbit - Number of bits needed to represent nn
2350 for (Index = 0; Index < nn; Index++) {
2383 while (Index < nn) {
2387 return MakeTable (Sd, nn, Sd->mPTLen, 8, Sd->mPTTable);
2310 ReadPTLen( IN SCRATCH_DATA *Sd, IN UINT16 nn, IN UINT16 nbit, IN UINT16 Special ) argument

Completed in 654 milliseconds