Searched refs:count (Results 226 - 250 of 5577) sorted by relevance

1234567891011>>

/macosx-10.10/ntp-92/lib/isc/include/isc/
H A Dmutexblock.h32 isc_mutexblock_init(isc_mutex_t *block, unsigned int count);
41 *\li count > 0
50 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count);
58 *\li count > 0
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dipc_doors.c213 unsigned short count = 0; /* input/output data byte count */ local
231 memcpy(&count, data, sizeof(unsigned short));
233 count = ntohs(count);
236 if (count > MAX_REQ_LEN || data + count > dataend) {
243 memcpy(login, data, count);
244 login[count] = '\0';
245 data += count;
[all...]
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_run.c79 int count; local
89 for (count = 0; count < var_fork_tries; count++) {
115 int count; local
123 for (count = 0; count < var_fork_tries; count++) {
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dcutbuffer.rb16 def self.rotate(count = 1)
17 Tk.tk_call('::blt::cutbuffer', 'rotate', count)
/macosx-10.10/xnu-2782.1.97/osfmk/kperf/
H A Dtimetrigger.h40 extern int kperf_timer_set_count(unsigned count);
52 extern int kperf_timer_set_petid(unsigned count);
/macosx-10.10/libunwind-35.3/testsuite/
H A Dpersonality.cxx17 int count = 0; variable
103 if ( shouldBe[count].fooCaught != fooCaught ) {
104 fprintf(stderr, "count=%d, fooCaught=%d\n", count, fooCaught);
107 if ( shouldBe[count].mainInnerCaught != mainInnerCaught ) {
108 fprintf(stderr, "count=%d, mainInnerCaught=%d\n", count, mainInnerCaught);
111 if ( shouldBe[count].mainOuterCaught != mainOuterCaught ) {
112 fprintf(stderr, "count=%d, mainOuterCaught=%d\n", count, mainOuterCaugh
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/
H A Dqueue_oo.tcl51 # count number of items to get; defaults to 1
54 # item first count items from the queue; if there are not enough
57 method get {{count 1}} {
58 if { $count < 1 } {
59 return -code error "invalid item count $count"
60 } elseif { $count > [my size] } {
66 if { $count == 1 } {
78 if {$count > ([llength $qret] - $qat)} {
80 set max [expr {$qat + $count
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/
H A Dsha.c60 unsigned short count; member in struct:_sha_trf_info
172 s->buf [s->count] = character;
173 s->count ++;
175 if (s->count == CHUNK_SIZE) {
176 sha_update (&s->s, s->buf, s->count);
177 s->count = 0;
209 if ((s->count + bufLen) < CHUNK_SIZE) {
215 memcpy ((VOID*) (s->buf + s->count), (VOID*) buffer, bufLen);
216 s->count += bufLen;
224 int k = CHUNK_SIZE - s->count;
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dkpc_common.c207 int enabled, count, offset = 0; local
218 count = kpc_get_counter_count(KPC_CLASS_FIXED_MASK);
220 memcpy( &buf[offset], &FIXED_SHADOW(0), count*sizeof(uint64_t) );
222 offset += count;
227 count = kpc_get_counter_count(KPC_CLASS_CONFIGURABLE_MASK);
229 memcpy( &buf[offset], &CONFIGURABLE_SHADOW(0), count*sizeof(uint64_t) );
231 offset += count;
242 int count = 0; local
245 count += kpc_fixed_count();
248 count
256 int count = 0; local
273 int count = 0; local
399 uint32_t i, count, offset = 0; local
428 uint32_t count, offset = 0; local
455 uint32_t count, offset = 0; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dhsearch.tcl26 set count 0
30 while { [gets $did str] != -1 && $count < $nentries } {
36 incr count
43 while { [gets $did str] != -1 && $count < $nentries } {
46 incr count
/macosx-10.10/Heimdal-398.1.2/appl/telnet/telnet/
H A Dring.h67 ring_init (Ring *ring, unsigned char *buffer, int count);
71 ring_supply_data (Ring *ring, unsigned char *buffer, int count);
74 ring_consume_data (Ring *ring, unsigned char *buffer, int count);
79 ring_supplied (Ring *ring, int count),
80 ring_consumed (Ring *ring, int count);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duvectr32.h61 int32_t count; member in class:UVector32
222 return (index >= 0 && count > 0 && count - index > 0) ? elements[index] : 0;
227 if (ensureCapacity(count + 1, status)) {
228 elements[count] = elem;
229 count++;
234 if (ensureCapacity(count+size, status) == FALSE) {
237 int32_t *rp = elements+count;
238 count += size;
243 U_ASSERT(count >
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DtoString.js38 var count = 0; variable
43 testcases[count++] = new TestCase ( SECTION, "var re = new RegExp(); re.toString()",
48 testcases[count++] = new TestCase ( SECTION, "re = /.+/; re.toString()",
53 testcases[count++] = new TestCase ( SECTION, "re = /test/gi; re.toString()",
58 testcases[count++] = new TestCase ( SECTION, "re = /test2/ig; re.toString()",
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dfwrite.c54 * Write `count' objects (each size `size') from memory to the given file.
58 fwrite(buf, size, count, fp)
60 size_t size, count;
69 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
71 n = count * size;
93 count = (n - resid + s - uio.uio_resid) / size;
98 return (count);
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebKitStatistics.h49 /* [retval][out] */ int *count);
52 /* [retval][out] */ int *count);
55 /* [retval][out] */ int *count);
58 /* [retval][out] */ int *count);
61 /* [retval][out] */ int *count);
H A DWebKitStatistics.cpp100 /* [retval][out] */ int *count)
102 *count = WebViewCount;
107 /* [retval][out] */ int *count)
109 *count = WebFrameCount;
114 /* [retval][out] */ int *count)
116 *count = WebDataSourceCount;
121 /* [retval][out] */ int *count)
123 *count = WebFrameViewCount;
128 /* [retval][out] */ int *count)
130 *count
99 webViewCount( int *count) argument
106 frameCount( int *count) argument
113 dataSourceCount( int *count) argument
120 viewCount( int *count) argument
127 HTMLRepresentationCount( int *count) argument
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dkeyok.c51 int count = 0; local
58 while ((s = _nc_expand_try(SP->_key_ok, ch, &count, 0)) != 0
62 count = 0;
67 while ((s = _nc_expand_try(SP->_keytry, ch, &count, 0)) != 0
71 count = 0;
/macosx-10.10/remote_cmds-47/telnet.tproj/
H A Dring.h76 ring_init(Ring *ring, unsigned char *buffer, int count);
80 ring_supply_data(Ring *ring, unsigned char *buffer, int count);
83 ring_consume_data(Ring *ring, unsigned char *buffer, int count);
88 ring_supplied(Ring *ring, int count),
89 ring_consumed(Ring *ring, int count);
H A Dtn3270.c135 DataToNetwork(buffer, count, done)
137 register int count; /* how much to send */
143 origCount = count;
145 while (count) {
160 if (c > count) {
161 c = count;
173 count -= c;
177 count--;
186 return(origCount - count);
220 DataToTerminal(buffer, count)
305 int count; local
[all...]
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_nsieve_bits.rb21 count = 0
25 count += 1
33 count
40 count = sieve(m)
41 printf "Primes up to %8d %8d\n", m, count
/macosx-10.10/tcl-105/tcl_ext/tls/tls/tests/oldTests/
H A DtlsAuto.tcl26 proc doit {chan count {delay 1000}} {
27 if {$count == 0} {
32 puts $chan line$count
35 incr count -1
36 after $delay doit $chan $count $delay
H A DtlsUpload.tcl26 proc doit {chan count {delay 1000}} {
27 if {$count == 0} {
32 puts $chan line$count
35 incr count -1
36 after $delay doit $chan $count $delay
/macosx-10.10/xnu-2782.1.97/SETUP/config/
H A Dmkioconf.c82 int count; local
94 count = dp->d_slave;
95 if (count <= 0)
96 count = 1;
97 fprintf(fp, "\t{%d,\t%s},\n", count, dp->d_init);
/macosx-10.10/xnu-2782.1.97/osfmk/profiling/
H A Dprofile-kgmon.c84 * Kgmon interface. This returns the count of bytes moved if everything was ok,
90 size_t count,
114 (long)count,
121 (long)count,
126 return count;
136 printf("_profile_kgmon: start: kgmon control = %2d, cpu = %d, count = %ld\n",
137 kgmon, cpu, (long)count);
171 if (count != sizeof(pv->active)) {
173 printf("KGMON_GET_STATUS: count = %ld, should be %ld\n",
174 (long)count,
89 _profile_kgmon(int write, size_t count, long indx, int max_cpus, void **p_ptr, void (*control_func)(kgmon_control_t)) argument
[all...]
/macosx-10.10/pam_modules-140/tests/
H A Dtest_login_concurrent37 for ((count=0; count<users_total; ++count))
39 ${serial_cmd} ${users_name[${count}]} ${users_pass[${count}]} \

Completed in 335 milliseconds

1234567891011>>