Searched refs:counter (Results 201 - 225 of 431) sorted by relevance

1234567891011>>

/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOWorkLoop.h149 struct IOWorkLoopCounter *counter; member in struct:IOWorkLoop::ExpansionData
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Ddomimpl.tcl198 array set $name [list counter 1 \
278 for {set i 0} {$i <= $docArray(counter)} {incr i} {
822 set id node[incr docArray(counter)]
830 node:childNodes ${docArrayName}var$docArray(counter) \
837 element:attributeList ${docArrayName}arr$docArray(counter) \
846 set ${docArrayName}var$docArray(counter) {}
847 array set ${docArrayName}arr$docArray(counter) $aList
851 array set ${docArrayName}arr$docArray(counter) [list $ns^$attrName $attrValue]
925 set id node[incr docArray(counter)]
979 set id node[incr docArray(counter)]
[all...]
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Util/
H A DSemaphore.pm90 Processes waiting for counter increase ... $ncnt
91 Processes waiting for counter to hit 0 ... $zcnt
/macosx-10.10.1/shell_cmds-179/locate/locate/
H A Dlocate.c117 u_int counter; /* counter for matches [-c] */ variable
229 print_matches(counter);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/include/serial/
H A Dpexpression.inc223 The only counter-argument I have is that the t/.. equivalence
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dtex.vim25 let &l:define .= '\|\\\(re\)\=new\(boolean\|command\|counter\|environment\|font'
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Drsa-ltm.c534 int counter, ret, bitsp; local
550 counter = 0;
552 BN_GENCB_call(cb, 2, counter++);
562 counter = 0;
564 BN_GENCB_call(cb, 2, counter++);
H A Drsa-tfm.c452 int counter, ret, bitsp; local
466 counter = 0;
468 BN_GENCB_call(cb, 2, counter++);
478 counter = 0;
480 BN_GENCB_call(cb, 2, counter++);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtufmtts.cpp317 int counter = 0; local
372 u_strToUTF8(tmp1, 128, &len, expected[counter].unescape().getTerminatedBuffer(), expected[counter].unescape().length(), &status);
375 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) {
382 ++counter;
/macosx-10.10.1/OpenSSH-189/osslshim/ossl/
H A Dossl-dsa.c363 int counter = 0; local
474 counter = 0;
480 if ((counter != 0) && !BN_GENCB_call(cb, 0, counter)) {
549 counter++;
553 if (counter >= 4096) {
620 *counter_ret = counter;
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dstatschannel.c82 * below so that they'll be less susceptible to counter name changes.
104 * preference, regardless of the order of counter indices. For example,
113 set_desc(int counter, int maxcounter, const char *fdesc, const char **fdescs, argument
116 REQUIRE(counter < maxcounter);
117 REQUIRE(fdescs[counter] == NULL);
119 REQUIRE(xdescs[counter] == NULL);
122 fdescs[counter] = fdesc;
124 xdescs[counter] = xdesc;
437 generalstat_dump(isc_statscounter_t counter, isc_uint64_t val, void *arg) { argument
440 REQUIRE(counter < dumpar
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/collperf2/
H A Dcollperf2.cpp745 CollatorAndCounter(const Collator& coll) : coll(coll), ucoll(NULL), counter(0) {}
747 : coll(coll), ucoll(ucoll), counter(0) {}
750 int32_t counter; member in struct:__anon1224::CollatorAndCounter
759 ++cc.counter;
837 ops = cc.counter;
848 ++cc.counter;
858 ++cc.counter;
922 ops = cc.counter;
946 ops = cc.counter;
972 ops = cc.counter;
[all...]
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibAsyncStreamListener.cpp269 UInt32 counter = 0; local
278 counter = outputVal & 0xFFFFFFFF;
279 return counter;
/macosx-10.10.1/libresolv-57/
H A Dns_verify.c311 /* Reset the counter, since we still need to check for badtime. */
336 state->counter = -1;
363 state->counter++;
364 if (state->counter == 0)
/macosx-10.10.1/libxslt-13/libxslt/libxslt/
H A Dnamespaces.c585 int counter = 1; local
592 snprintf((char *) pref, 30, "%s_%d", nsPrefix, counter++);
594 if (counter > 1000) {
/macosx-10.10.1/postfix-255/postfix/src/smtpstone/
H A Dqmqp-source.c29 /* Display a running counter that is incremented each time
155 static int counter = 0; variable
429 * Update the optional running counter.
432 counter++;
433 vstream_printf("%d\r", counter);
/macosx-10.10.1/ppp-786.1.1/Family/
H A Dslcompress.c80 #define INCR(counter) ++comp->counter;
82 #define INCR(counter)
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DAssemblyHelpers.h490 static void emitCount(MacroAssembler& jit, AbstractSamplingCounter& counter, int32_t increment = 1) argument
492 jit.add64(TrustedImm32(increment), AbsoluteAddress(counter.addressOfCounter()));
494 void emitCount(AbstractSamplingCounter& counter, int32_t increment = 1) argument
496 add64(TrustedImm32(increment), AbsoluteAddress(counter.addressOfCounter()));
/macosx-10.10.1/OpenSSL098-52/src/crypto/dh/
H A Ddh.h136 BIGNUM *counter; member in struct:dh_st
/macosx-10.10.1/OpenSSL098-52/src/include/openssl/
H A Ddh.h136 BIGNUM *counter; member in struct:dh_st
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Ddh.h131 BIGNUM *counter; member in struct:dh_st
/macosx-10.10.1/cups-408/cups/cups/
H A Dtestsnmp.c174 printf("Counter %d\n", packet->object_value.counter);
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dnames.c665 int counter;
687 for (cursor = list, counter = first_length - 1;
688 counter;
689 cursor = SUCCESSOR (cursor), counter--)
661 int counter; local
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_peg_to_tclparam.tcl1058 variable counter
1059 variable lastid ${type}_[incr counter]
1207 variable counter 0
1219 variable counter 0
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dsnprintf.c249 int counter; member in struct:DATA
328 if (((p)->flags & PF_ALLOCBUF) && ((p)->counter >= (p)->length - 1)) \
332 (p)->holder = (p)->base + (p)->counter; /* in case reallocated */ \
334 if ((p)->counter < (p)->length) \
336 (p)->counter++; \
1186 p->counter = 0;
1274 return data->counter;
1540 *(GETARG (long long *)) = data->counter;
1544 *(GETARG (long *)) = data->counter;
1546 *(GETARG (short *)) = data->counter;
[all...]

Completed in 1219 milliseconds

1234567891011>>