Searched refs:rsize (Results 1 - 25 of 53) sorted by path

123

/macosx-10.10.1/BerkeleyDB-21/db/examples_c/ex_rep/base/
H A Drep_net.c490 u_int32_t rsize, csize; local
503 nr = readn(fd, &rsize, 4);
508 if (rsize > 0) {
509 if (rec->size < rsize)
510 rec->data = realloc(rec->data, rsize);
512 nr = readn(fd, recbuf, rsize);
518 rec->size = rsize;
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/krb5/
H A Dtest_cfx.c54 size_t size, rsize; local
81 &rsize, &cksumsize, &padsize);
85 if (size < rsize)
87 "size (%d) < rsize (%d) for max_wrap_size %d",
88 (int)size, (int)rsize, (int)max_wrap_size);
97 size_t rsize; local
122 &rsize, &cksumsize, &padsize);
126 if (testsize < rsize)
128 "testsize (%d) < rsize (%d) for max_wrap_size %d",
129 (int)testsize, (int)rsize, (in
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/ipc/
H A Dclient.c494 arg.rsize = 0;
501 response->data = malloc(arg.rsize);
503 munmap(arg.rbuf, arg.rsize);
506 memcpy(response->data, arg.rbuf, arg.rsize);
507 response->length = arg.rsize;
508 munmap(arg.rbuf, arg.rsize);
/macosx-10.10.1/IOKitUser-1050.1.21/hidsystem.subproj/
H A DIOEventStatusAPI.c602 IOByteCount rsize; local
605 sizeof( fixed), (unsigned char *) &fixed, &rsize );
625 IOByteCount rsize; local
628 sizeof( *mode), (unsigned char *) mode, &rsize ));
641 IOByteCount rsize; local
644 sizeof( fixed), (unsigned char *) &fixed, &rsize );
666 IOByteCount rsize; local
669 sizeof( fixed), (unsigned char *) &fixed, &rsize );
/macosx-10.10.1/IOPCIFamily-239.1.2/
H A Dvtd.c531 ppnum_t rsize; member in struct:vtd_space
764 uint32_t buddybits, ppnum_t rsize);
880 uint32_t treebits, ppnum_t vsize, uint32_t buddybits, ppnum_t rsize)
891 vtassert(vsize > rsize);
1011 bf->rsize = rsize;
1012 vtd_rballocator_init(bf, rsize, vsize - rsize);
1014 VTLOG("bsize 0x%x, bsafe 0x%x, breserve 0x%x, rsize 0x%x\n",
1015 (1<<kBPagesLog2), kBPagesSafe, kBPagesReserve, bf->rsize);
879 space_create(uint32_t cachelinesize, uint32_t treebits, ppnum_t vsize, uint32_t buddybits, ppnum_t rsize) argument
[all...]
/macosx-10.10.1/Libc-1044.1.2/db/hash/FreeBSD/
H A Dhash_page.c520 int fd, page, size, rsize; local
534 if ((rsize = pread(fd, p, size, (off_t)page << hashp->BSHIFT)) == -1)
537 if (!rsize)
540 if (rsize != size) {
/macosx-10.10.1/Libinfo-459/rpc.subproj/
H A Dclnt_udp.c148 unsigned int rsize; local
230 rsize = 0;
231 len = sizeof(rsize);
232 if (getsockopt(*sockp, SOL_SOCKET, SO_RCVBUF, (char *)&rsize, &len) != 0)
240 if ((recvsz > rsize) && (setsockopt(*sockp, SOL_SOCKET, SO_RCVBUF, (char *)&recvsz, len)))
/macosx-10.10.1/NFS-82/mount_nfs/
H A Dmount_nfs.c197 { "rsize", 0, ALTF_RSIZE, 1 },
267 uint32_t rsize, wsize, readdirsize, readahead; /* I/O values */ member in struct:__anon2949
448 options.rsize = num;
724 xb_add_32(error, &xb, options.rsize);
1150 p2 = getmntoptstr(mop, "rsize");
1158 warnx("illegal rsize value -- %s", p2);
1161 options.rsize = num;
2101 printf(",rsize=%d", NFS_BITMAP_ISSET(options.mattrs, NFS_MATTR_READ_SIZE) ? options.rsize : NFS_RSIZE);
/macosx-10.10.1/NFS-82/nfsstat/
H A Dnfsstat.c753 uint32_t rsize, wsize, readdirsize, readahead; /* I/O values */ member in struct:mountargs
872 xb_get_32(error, xb, margs->rsize);
1214 printf("%crsize=%d", sep, margs->rsize), SEP;
/macosx-10.10.1/OpenSSL098-52/src/crypto/dso/
H A Ddso_dl.c323 int len, rsize, transform; local
326 rsize = len + 1;
330 rsize += strlen(extension);/* The length of ".s?" */
332 rsize += 3; /* The length of "lib" */
334 translated = OPENSSL_malloc(rsize);
H A Ddso_dlfcn.c350 int len, rsize, transform; local
353 rsize = len + 1;
361 rsize += 5; /* The length of ".1.so" */
363 rsize += DSO_extlen; /* The length of "lib" */
367 rsize += DSO_extlen; /* The length of ".so" */
369 rsize += 3; /* The length of "lib" */
372 translated = OPENSSL_malloc(rsize);
384 snprintf(translated, rsize, "lib%s.1.so", filename);
386 snprintf(translated, rsize, "%s.1.so", filename);
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A DSecOTRDHKey.c301 size_t rsize = ccec_export_pub_size(r); local
305 if (lsize == rsize) {
307 uint8_t rpub[rsize];
314 result = rsize < lsize ? -1 : 1;
/macosx-10.10.1/apache-793/httpd/modules/lua/
H A Dlua_request.c241 apr_off_t rsize, len_read, rpos = 0; local
249 rsize = length - rpos;
252 rsize = len_read;
255 memcpy((char *) *rbuf + rpos, argsbuffer, (size_t) rsize);
256 rpos += rsize;
278 apr_off_t rsize, local
289 rsize = (apr_size_t) length - rpos;
291 rsize = len_read;
293 rc = apr_file_write_full(file, argsbuffer, (apr_size_t) rsize,
295 if (written != rsize || r
[all...]
/macosx-10.10.1/apache-793/httpd/modules/ssl/
H A Dssl_engine_kernel.c644 apr_size_t rsize; local
646 rsize = dc->nRenegBufferSize == UNSET ? DEFAULT_RENEG_BUFFER_SIZE :
648 if (rsize > 0) {
650 rv = ssl_io_buffer_fill(r, rsize);
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Darray.c632 int slen, rsize, rlen, reg; local
639 for (rsize = rlen = 0, ae = start; ae != end; ae = element_forw(ae)) {
640 if (rsize == 0)
641 result = (char *)xmalloc (rsize = 64);
646 rsize, rsize);
673 int rsize, rlen, elen; local
678 result = (char *)xmalloc (rsize = 128);
687 RESIZE_MALLOCED_BUFFER (result, rlen, (elen + 1), rsize, rsize);
[all...]
H A Dbashline.c722 register int i, len, nmatch, rsize; local
745 for (i = nmatch = rsize = 0; i < hostname_list_length; i++)
751 if (nmatch >= (rsize - 1))
753 rsize = (rsize + 16) - (rsize % 16);
754 result = strvec_resize (result, rsize);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dieee.c2361 bfd_vma rsize = bfd_get_reloc_size (r->howto);
2362 if (! ieee_write_int (abfd, rsize))
2358 bfd_vma rsize = bfd_get_reloc_size (r->howto); local
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Dcncassm.c4724 unsigned32 rsize = 0;
4856 &rsize);
4860 rpc__cn_set_sock_buffsize(rsize, ssize, &status);
4866 rsize = 0;
4883 if ( (rsize != 0) && (rsize < rpc_g_cn_large_frag_size) )
4885 RPC_CN_PKT_MAX_RECV_FRAG (header) = rsize;
4904 if (rsize != 0)
4905 RPC_CN_PKT_AUTH3_MAX_RECV_FRAG (header) = rsize;
4674 unsigned32 rsize = 0; local
H A Dcnnet.c716 unsigned32 ssize, rsize;
809 &rsize);
820 rpc__cn_set_sock_buffsize(rsize, ssize, status);
829 *desc, ssize, rsize));
831 if (rsize < RPC_C_ASSOC_MUST_RECV_FRAG_SIZE)
1224 unsigned32 ssize, rsize;
1261 &rsize);
1273 rpc__cn_set_sock_buffsize(rsize, ssize, st);
1280 assoc->cn_ctlblk.cn_sock, ssize, rsize));
2165 ** rsize Th
710 unsigned32 ssize, rsize; local
1215 unsigned32 ssize, rsize; local
2167 rpc__cn_inq_sock_buffsize( unsigned32 *rsize, unsigned32 *ssize, unsigned32 *st) argument
2213 rpc__cn_set_sock_buffsize( unsigned32 rsize, unsigned32 ssize, unsigned32 *st) argument
[all...]
H A Dcnsassm.c1989 unsigned32 rsize = 0;
2099 &rsize);
2103 rpc__cn_set_sock_buffsize(rsize, ssize, &status);
2109 rsize = 0;
2123 if ( (rsize != 0) && (rsize < rpc_g_cn_large_frag_size) )
2126 MIN (rsize, RPC_CN_PKT_MAX_XMIT_FRAG (req_header));
1965 unsigned32 rsize = 0; local
/macosx-10.10.1/dcerpc-61/dcerpc/perf/
H A Dclient.c2353 unsigned32 /* rsize */,
2357 unsigned32 * /* rsize */,
2367 unsigned32 rsize, ssize;
2377 rpc__cn_inq_sock_buffsize(&rsize, &ssize, &status);
2383 if (socket_buf_size != rsize || socket_buf_size != ssize)
2386 fprintf(stderr, "*** READ desired: %lu actual: %lu\n", socket_buf_size, rsize);
2330 unsigned32 rsize, ssize; local
H A Dserver.c632 unsigned32 /* rsize */,
636 unsigned32 * /* rsize */,
661 unsigned32 ssize,rsize;
777 rpc__cn_inq_sock_buffsize(&rsize, &ssize, &st);
783 if (socket_buf_size != rsize || socket_buf_size != ssize)
786 fprintf(stderr, "*** READ desired: %lu actual: %lu\n", socket_buf_size, rsize);
648 unsigned32 ssize,rsize; local
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dbuffer.c760 unsigned long rsize = (record_size - left) / BLOCKSIZE;
764 rsize),
765 rsize));
752 unsigned long rsize = (record_size - left) / BLOCKSIZE; local
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dnvtype.c1436 Namval_t *nv_mkstruct(const char *name, int rsize, Fields_t *fields) argument
1474 pp = newof(NiL,Namtype_t, 1, nnodes*NV_MINSZ + rsize + size);
1475 pp->fun.dsize = sizeof(Namtype_t)+nnodes*NV_MINSZ +rsize;
1487 cp = pp->data + rsize;
1548 nv_setsize(mp,rsize);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfmove.c49 ssize_t rsize = 0; local
143 if(rsize <= 0 && (rbuf = (uchar*)malloc(w)) )
144 rsize = w;
147 w = rsize;

Completed in 368 milliseconds

123