Searched refs:cnt (Results 201 - 225 of 677) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/tests/compat/
H A Dcopyfile.test44 for {set cnt 0} {$cnt < 100} {incr cnt} {
45 set rec [GenRec $cnt]
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dpipe.h96 * Separate in, out, cnt are used to simplify calculations.
97 * Buffered write is active when the buffer.cnt field is set.
100 u_int cnt; /* number of chars currently in buffer */ member in struct:pipebuf
114 vm_size_t cnt; /* number of chars in buffer */ member in struct:pipemapping
/macosx-10.10/xnu-2782.1.97/osfmk/prng/
H A Drandom.c167 uint32_t cnt = 0; local
176 cnt = PE_get_random_seed((unsigned char *) EntropyData.buffer,
179 if (cnt < sizeof(EntropyData.buffer)) {
185 sizeof(EntropyData.buffer), cnt);
239 uint32_t cnt; local
255 cnt = sizeof(erandom_seed);
256 entropy_buffer_read(erandom_seed, &cnt);
257 assert(cnt == sizeof(erandom_seed));
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dexec.c157 size_t cnt, lp, ln; local
223 for (cnt = 0; argv[cnt]; ++cnt)
225 memp = alloca((cnt + 2) * sizeof(char *));
232 bcopy(argv + 1, memp + 2, cnt * sizeof(char *));
/macosx-10.10/OpenSSL098-52/src/crypto/rsa/
H A Drsa_oaep.c184 unsigned char cnt[4]; local
193 cnt[0] = (unsigned char)((i >> 24) & 255);
194 cnt[1] = (unsigned char)((i >> 16) & 255);
195 cnt[2] = (unsigned char)((i >> 8)) & 255;
196 cnt[3] = (unsigned char)(i & 255);
199 EVP_DigestUpdate(&c, cnt, 4);
/macosx-10.10/apr-32/apr-util/apr-util/misc/
H A Dapr_thread_pool.c774 * This function stop extra idle threads to the cnt.
779 apr_size_t *cnt, int idle)
794 if (n <= *cnt) {
796 *cnt = 0;
799 n -= *cnt;
802 for (i = 0; i < *cnt; i++) {
808 me->idle_cnt = *cnt;
819 *cnt = n;
828 static apr_size_t trim_idle_threads(apr_thread_pool_t *me, apr_size_t cnt) argument
834 elt = trim_threads(me, &cnt,
778 trim_threads(apr_thread_pool_t *me, apr_size_t *cnt, int idle) argument
861 trim_busy_threads(apr_thread_pool_t *me, apr_size_t cnt) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/
H A Dmulti-ip_sample.rb26 cnt = aobj.return_value + 5
27 label.text format("%d.%02d", *(cnt.divmod(100)))
28 cnt
H A Dtkrttimer.rb34 cnt = aobj.return_value + 1 # return_value keeps a result of the last proc
36 label.text format("%d.%02d", *(cnt.divmod(100)))
37 cnt #==> return value is kept by TkTimer object
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducdata.c66 ac_uint2 cnt; member in struct:__anon3029
172 hdr.cnt = endian_short(hdr.cnt);
176 if ((_ucprop_size = hdr.cnt) == 0) {
192 if ((size = ((hdr.cnt + 1) * sizeof(ac_uint2))) & 3)
353 hdr.cnt = endian_short(hdr.cnt);
362 _uccase_size = hdr.cnt;
548 hdr.cnt = endian_short(hdr.cnt);
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Dvstream.c534 (bp)->cnt = VSTREAM_BUF_COUNT((bp), (bp)->len); \
540 (bp)->cnt = VSTREAM_BUF_COUNT(bp, (bp)->len - (offset)); \
544 (bp)->cnt = 0; \
551 (bp)->len = (bp)->cnt = 0; \
575 stream->buffer.len = stream->buffer.cnt = 0; \
583 vstream_fflush_some((stream), (stream)->buf.len - (stream)->buf.cnt)
691 used = bp->len - bp->cnt;
761 bp->cnt += to_flush;
819 || stream->read_buf.cnt >= 0)
830 if (bp->cnt <
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/generic/
H A DjkFilter.c596 int cnt; member in struct:echoFilter
676 tmpbuf[i] = rf->buf[rf->cnt];
677 rf->cnt = (rf->cnt+1) % rf->nmax;
685 rf->cnt = nmax - 1;
687 rf->cnt = rf->nmax;
692 tmpbuf[i] = rf->buf[rf->cnt];
693 rf->cnt = (rf->cnt+rf->nmax+1) % rf->nmax;
695 rf->cnt
851 int cnt; member in struct:reverbFilter
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dsearch.c410 int cnt; local
412 for ( cnt = 0; references[ cnt ]; cnt++ )
416 rs->sr_ref = op->o_tmpalloc( ( cnt + 1 ) * sizeof( struct berval ),
419 for ( cnt = 0; references[ cnt ]; cnt++ ) {
420 ber_str2bv( references[ cnt ], 0, 0, &rs->sr_ref[ cnt ] );
510 int cnt; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/librewrite/
H A Dmap.c46 int l, cnt, mtx = 0, rc = 0; local
57 for ( p = string, cnt = 1; p[ 0 ] != '\0' && cnt > 0; p++ ) {
63 cnt++;
69 cnt++;
78 cnt--;
81 if ( cnt != 0 ) {
/macosx-10.10/adv_cmds-158/finger/
H A Dutil.c202 int cnt; local
214 for (cnt = 0; cnt < _UTX_USERSIZE && *name; ++name, ++cnt)
215 buf[cnt] = *name;
216 buf[cnt] = '\0';
218 key.size = cnt;
/macosx-10.10/shell_cmds-179/find/
H A Dfunction.c659 int cnt; local
688 for (cnt = 0; plan->e_argv[cnt]; ++cnt)
689 if (plan->e_len[cnt])
690 brace_subst(plan->e_orig[cnt],
691 &plan->e_argv[cnt], file,
692 plan->e_len[cnt]);
742 int cnt, i; local
768 cnt
[all...]
/macosx-10.10/rsync-45/rsync/
H A Dio.c469 int n, cnt = 0; local
473 while (cnt == 0) {
609 cnt += n;
615 return cnt;
625 int cnt; local
632 cnt = read(fd, &ch, 1);
633 if (cnt < 0 && (errno == EWOULDBLOCK
651 if (cnt != 1)
749 int tag, cnt = 0; local
760 while (cnt
841 int cnt; local
1046 int maxfd, count, cnt, using_r_fds; local
[all...]
/macosx-10.10/ppp-786.1.1/Helpers/pppdump/
H A Dpppdump.c228 int cnt; member in struct:pkt
256 spkt.cnt = rpkt.cnt = 0;
274 if (spkt.cnt > 0)
276 spkt.cnt);
277 if (rpkt.cnt > 0)
279 rpkt.cnt);
282 if (pkt->cnt > 0) {
288 nb = pkt->cnt;
290 pkt->cnt
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Dderef.c182 ber_len_t cnt = sizeof(struct berval); local
185 if ( ber_scanf( ber, "{m{M}}", &derefAttr, &attributes, &cnt, off ) == LBER_ERROR )
193 sizeof(DerefSpec) + sizeof(AttributeDescription *)*(cnt + 1),
196 ds->ds_nattrs = cnt;
224 for ( cnt = 0; !BER_BVISNULL( &attributes[ cnt ] ); cnt++ ) {
225 rc = slap_bv2ad( &attributes[ cnt ], &ds->ds_attributes[ cnt ], &text );
/macosx-10.10/BerkeleyDB-21/db/docs_src/ref/am_conf/
H A Dbt_recnum1.cs25 int cnt, ret;
68 for (cnt = 1; cnt <= 1000; ++cnt) {
69 (void)sprintf(buf, "%04d_", cnt);
H A Dbt_recnum2.cs25 int cnt, ret;
68 for (cnt = 1; cnt <= 1000; ++cnt) {
69 (void)sprintf(buf, "%04d_", cnt);
/macosx-10.10/Libc-1044.1.2/gen/
H A Doldsyslog.c126 register int cnt; local
229 cnt = p - tbuf;
236 iov[0].iov_len = cnt - (stdp - tbuf);
245 if (send(_sl_LogFile, tbuf, cnt, 0) >= 0)
259 iov[0].iov_len = cnt - (p - tbuf);
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-SearchKit-2.5.1/PyObjCTest/
H A Dtest_sksearch.py81 cnt = SKSearchResultsGetCount(res)
82 self.assertIsInstance(cnt, (int, long))
84 if cnt == 0:
91 self.failUnless(cnt > 0)
94 v, o1, o2, o3 = SKSearchResultsGetInfoInRange(res, CFRange(0, cnt), None, None, None)
/macosx-10.10/shell_cmds-179/xargs/
H A Dxargs.c92 static int cnt, Iflag, jfound, Lflag, wasquoted, xflag; variable
232 cnt = strlen(*bxp++ = echo) + pad9314053;
240 cnt += strlen(*avj) + 1 + pad9314053;
243 cnt += strlen(*bxp++ = *argv) + 1 + pad9314053;
262 nline -= cnt;
448 cnt = ebp - argp;
449 memcpy(bbp, argp, (size_t)cnt);
450 p = (argp = bbp) + cnt;
/macosx-10.10/xnu-2782.1.97/libkern/
H A DOSKextLib.cpp439 kmod_panic_dump(vm_offset_t * addr, unsigned int cnt) argument
443 OSKext::printKextsInBacktrace(addr, cnt, &kdb_printf,
449 void kmod_dump_log(vm_offset_t *addr, unsigned int cnt, boolean_t doUnslide);
454 unsigned int cnt,
457 OSKext::printKextsInBacktrace(addr, cnt, &printf, /* lock? */ true, doUnslide);
452 kmod_dump_log( vm_offset_t * addr, unsigned int cnt, boolean_t doUnslide) argument
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dsys_pipe.c373 if (p->pipe_buffer.cnt > 0 && p->pipe_buffer.in <= p->pipe_buffer.out ){
512 pipe_count = cpipe->pipe_peer->pipe_buffer.cnt;
518 pipe_count = cpipe->pipe_buffer.cnt;
619 cpipe->pipe_buffer.cnt = 0;
737 if (rpipe->pipe_buffer.cnt > 0) {
744 if (size > rpipe->pipe_buffer.cnt)
745 size = rpipe->pipe_buffer.cnt;
762 rpipe->pipe_buffer.cnt -= size;
769 if (rpipe->pipe_buffer.cnt == 0) {
834 } else if (rpipe->pipe_buffer.cnt < rpip
[all...]

Completed in 200 milliseconds

1234567891011>>