Lines Matching defs:tmp
353 uint32_t tmp = ((uint32_t)argp->timeo * NFS_HZ + 5) / 10;
354 if (tmp < NFS_MINTIMEO)
356 tmp = NFS_MINTIMEO;
358 else if (tmp > NFS_MAXTIMEO)
360 tmp = NFS_MAXTIMEO;
363 nprmt->timeo = tmp;
497 uint32_t tmp;
525 tmp = SIZEOF_rpc_reply_read(nprmt.rsize);
529 if (tmp > buflen)
531 buflen = tmp;
978 uint32_t tmp;
1077 tmp = *ptr++;
1078 if (tmp != 0)
1094 tmp = *ptr++;
1095 if (tmp == 0)
1101 tmp = *ptr++;
1102 if (tmp != 0)
1139 tmp = *ptr++; /*lint !e662 !e661*/
1140 entry->name_len = fxdr_unsigned(uint32_t, tmp);
1260 tmp = fxdr_unsigned(uint32_t, obj_attributes.fa_type);
1261 switch (tmp)
1414 uint32_t tmp;
1473 tmp = mode & (NFSMODE_IXOTH | NFSMODE_IWOTH | NFSMODE_IROTH |
1476 *ptr++ = txdr_unsigned(tmp);
1564 uint32_t tmp;
1718 tmp = *ptr++;
1719 if (tmp != 0)
1728 tmp = *ptr++;
1729 if (tmp != 0)
1739 tmp = fxdr_unsigned(uint32_t, *ptr);
1742 if (tmp < 1 || tmp > writesize)
1748 writesize = tmp;
1783 uint32_t tmp;
1929 tmp = *ptr++;
1930 if (tmp != 0)
1939 tmp = *ptr++;
1940 if (tmp != 0)
1950 tmp = fxdr_unsigned(uint32_t, *ptr);
1953 if (tmp < 1 || tmp > writesize)
1959 writesize = tmp;
2052 size_t tmp;
2096 tmp = np->n_size - pos;
2097 if (buflen > tmp)
2099 buflen = tmp;
2116 tmp = SIZEOF_rpc_reply_read(readsize);
2117 if (tmp > nmp->nm_buflen)
2119 readsize -= (tmp - nmp->nm_buflen);
2202 size_t tmp;
2241 tmp = np->n_size - filep->f_pos;
2242 if (buflen > tmp)
2244 buflen = tmp;
2261 tmp = SIZEOF_rpc_reply_read(readsize);
2262 if (tmp > nmp->nm_buflen)
2264 readsize -= (tmp - nmp->nm_buflen);
2345 uint32_t tmp;
2404 tmp = mode & (NFSMODE_IWOTH | NFSMODE_IROTH | NFSMODE_IWGRP |
2406 *ptr++ = txdr_unsigned(tmp);
2462 tmp = *ptr++; /* handle_follows */
2463 if (!tmp)
2470 tmp = *ptr++;
2471 tmp = fxdr_unsigned(uint32_t, tmp);
2472 DEBUGASSERT(tmp <= NFSX_V3FHMAX);
2474 np->n_fhsize = (uint8_t)tmp;
2475 (void)memcpy_s(&np->n_fhandle, tmp, ptr, tmp);
2476 ptr += uint32_increment(tmp);
2480 tmp = *ptr; /* handle_follows */
2481 if (!tmp)