Searched refs:rsize (Results 1 - 25 of 50) sorted by relevance

12

/macosx-10.9.5/Heimdal-323.92.1/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.9.5/top-89.1.2/tests/
H A Doverfill-stats.sh2 sudo ./build/Release/top -stats pid,command,cpu,time,th,wq,ports,mreg,rprvt,rshrd,rsize,vsize,vprvt,pgrp,ppid,state,uid,faults,cow,msgsent,msgrecv,sysbsd,sysmach,csw,pageins,user,pid
/macosx-10.9.5/ksh-20/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;
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
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 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
/macosx-10.9.5/IOKitUser-907.100.13/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.9.5/Security-55471.14.18/sec/Security/
H A DSecOTRDHKey.c231 size_t rsize = ccec_export_pub_size(r); local
235 if (lsize == rsize) {
237 uint8_t rpub[rsize];
244 result = rsize < lsize ? -1 : 1;
/macosx-10.9.5/ntp-88/ntpq/
H A Dntpq-subs.c1855 int rsize; local
1870 &rstatus, &rsize, &rdata);
1875 if (rsize > 0 && '\n' == rdata[rsize - 1])
1876 rsize--;
1877 rdata[rsize] = '\0';
1915 int rsize; local
1951 &rstatus, &rsize, &rdata);
1961 if (rsize > 0 && '\n' == rdata[rsize
[all...]
/macosx-10.9.5/Libinfo-449.1.3/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.9.5/bash-92/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...]
/macosx-10.9.5/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.9.5/Heimdal-323.92.1/lib/ipc/
H A Dclient.c492 arg.rsize = 0;
499 response->data = malloc(arg.rsize);
501 munmap(arg.rbuf, arg.rsize);
504 memcpy(response->data, arg.rbuf, arg.rsize);
505 response->length = arg.rsize;
506 munmap(arg.rbuf, arg.rsize);
/macosx-10.9.5/dcerpc-58/dcerpc/perf/
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.9.5/xnu-2422.115.4/bsd/kern/
H A Dmcache.c891 size_t rsize = P2ROUNDUP(cp->mc_bufsize, sizeof (u_int64_t)); local
934 VERIFY(((intptr_t)base + rsize) <=
936 mcache_set_pattern(MCACHE_FREE_PATTERN, base, rsize);
968 size_t rsize = P2ROUNDUP(cp->mc_bufsize, sizeof (u_int64_t)); local
993 VERIFY(((intptr_t)base + rsize) <=
995 mcache_audit_free_verify(NULL, base, offset, rsize);
1017 size_t rsize = P2ROUNDUP(cp->mc_bufsize, sizeof (u_int64_t)); local
1038 VERIFY(((intptr_t)base + rsize) <=
1042 mcache_set_pattern(MCACHE_FREE_PATTERN, base, rsize);
1044 mcache_audit_free_verify_set(NULL, base, offset, rsize);
[all...]
/macosx-10.9.5/xar-202/xar/lib/
H A Darchive.c435 long rsize, wsize; local
508 rsize = wsize = 4096;
511 rsize = strtol(opt, NULL, 0);
512 if ( ((rsize == LONG_MAX) || (rsize == LONG_MIN)) && (errno == ERANGE) ) {
513 rsize = wsize;
517 rbuf = malloc(rsize);
532 r = read(fd, rbuf, rsize);
545 wsize = rsize/2;
612 r = read(tocfd, rbuf, rsize);
[all...]
H A Dio.c125 opt = xar_opt_get(x, "rsize");
222 size_t bsize, rsize; local
252 rsize = r;
257 xar_datamods[i].th_in(x, f, p, &inbuf, &rsize, &(modulecontext[i]));
264 xar_datamods[i].th_out(x, f, p, inbuf, rsize, &(modulecontext[i]));
268 if( rsize != 0 ) {
270 r = write(XAR(x)->heap_fd, ((char *)inbuf)+off, rsize-off);
277 } while( off < rsize );
793 opt = xar_opt_get(x, "rsize");
/macosx-10.9.5/IOPCIFamily-224.92.1/
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.9.5/ruby-104/ruby/
H A Dvm_insnhelper.c2137 int rsize = argc > m ? argc - m : 0; /* # of arguments which did not consumed yet */ local
2138 int psize = rsize > len ? len : rsize; /* # of post arguments */
2143 rsize -= psize;
2147 if (rsize > opts) {
2152 osize = rsize;
2153 opt_pc = iseq->arg_opt_table[rsize];
2156 rsize -= osize;
2162 printf("rsize: %d\n", rsize);
[all...]
/macosx-10.9.5/top-89.1.2/
H A Dtop.c149 case STATISTIC_RSIZE: return COMP(a_a->rsize, a_b->rsize);
H A Dlibtop.h203 uint64_t rsize; member in struct:libtop_psamp_s
/macosx-10.9.5/ntp-88/ntpdc/
H A Dntpdc.c650 int *rsize,
680 *rsize = 0;
816 if (!firstpkt && esize != *rsize) {
819 size, *rsize);
868 *rsize = size + pad;
1017 int *rsize,
1065 res = getresponse(implcode, reqcode, ritems, rsize, rdata, esize);
646 getresponse( int implcode, int reqcode, int *ritems, int *rsize, char **rdata, int esize ) argument
1009 doquery( int implcode, int reqcode, int auth, int qitems, int qsize, char *qdata, int *ritems, int *rsize, char **rdata, int quiet_mask, int esize ) argument
/macosx-10.9.5/system_cmds-597.90.1/arch.tproj/
H A Darch.c378 ssize_t rsize; local
389 rsize = read(fd, buffer, length);
390 if (rsize == length) {
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/arch.tproj/
H A Darch.c378 ssize_t rsize; local
389 rsize = read(fd, buffer, length);
390 if (rsize == length) {
/macosx-10.9.5/Libc-997.90.3/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.9.5/passwordserver_sasl-170/cyrus_sasl/saslauthd/
H A Dtestsaslauthd.c172 arg.rsize = sizeof(response);

Completed in 268 milliseconds

12