Searched refs:cnt (Results 251 - 275 of 458) sorted by relevance

<<111213141516171819

/external/icu/icu4c/source/i18n/
H A Drbtz.cpp605 int32_t cnt = 0; local
607 if (fHistoricRules != NULL && cnt < trscount) {
610 while (cnt < trscount && idx < historicCount) {
611 trsrules[cnt++] = (const TimeZoneRule*)fHistoricRules->elementAt(idx++);
614 if (fFinalRules != NULL && cnt < trscount) {
617 while (cnt < trscount && idx < finalCount) {
618 trsrules[cnt++] = (const TimeZoneRule*)fFinalRules->elementAt(idx++);
622 trscount = cnt;
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DElement.java141 int cnt = getNamespaceCount();
142 for (int i = 0; i < cnt; i++) {
/external/libnfc-nci/src/adaptation/
H A DCrcChecksum.cpp78 register int cnt = bufferLen; local
80 while (cnt--)
/external/libpcap/
H A Dpcap-int.h100 typedef int (*read_op_t)(pcap_t *, int cnt, pcap_handler, u_char *);
318 int pcap_read(pcap_t *, int cnt, pcap_handler, u_char *);
H A Dpcap.c824 pcap_dispatch(pcap_t *p, int cnt, pcap_handler callback, u_char *user) argument
826 return (p->read_op(p, cnt, callback, user));
833 pcap_read(pcap_t *p, int cnt, pcap_handler callback, u_char *user) argument
836 return (p->read_op(p, cnt, callback, user));
840 pcap_loop(pcap_t *p, int cnt, pcap_handler callback, u_char *user) argument
849 n = pcap_offline_read(p, cnt, callback, user);
856 n = p->read_op(p, cnt, callback, user);
861 if (!PACKET_COUNT_IS_UNLIMITED(cnt)) {
862 cnt -= n;
863 if (cnt <
[all...]
/external/libvpx/libvpx/vpx/internal/
H A Dvpx_codec_internal.h456 unsigned int cnt; member in struct:vpx_codec_pkt_list
467 (m)->alloc.head.cnt = 0,\
/external/qemu/distrib/sdl-1.2.15/src/audio/arts/
H A DSDL_artsaudio.c220 { static int cnt = 0; local
224 if (parent && (((++cnt)%10) == 0)) { /* Check every 10 loops */
/external/qemu/distrib/sdl-1.2.15/src/audio/esd/
H A DSDL_esdaudio.c190 { static int cnt = 0; local
194 if (parent && (((++cnt)%10) == 0)) { /* Check every 10 loops */
/external/chromium_org/third_party/sqlite/src/src/
H A Dos_win.c672 int rc, cnt = 0; local
680 /* SimulateIOError( rc=0; cnt=MX_CLOSE_ATTEMPT; ); */
681 }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (Sleep(100), 1) );
686 int cnt = 0; local
690 && cnt++ < WINCE_DELETION_ATTEMPTS
1011 int cnt = 3; local
1012 while( cnt-->0 && (res = LockFile(pFile->h, PENDING_BYTE, 0, 1, 0))==0 ){
1016 OSTRACE(("could not get a PENDING lock. cnt=%d\n", cnt));
2272 int cnt local
2613 DWORD cnt = GetTickCount(); local
[all...]
H A Dwal.c778 WALTRACE(("WAL%p: acquire EXCLUSIVE-%s cnt=%d %s\n", pWal,
787 WALTRACE(("WAL%p: release EXCLUSIVE-%s cnt=%d\n", pWal,
1962 ** The caller must set the cnt parameter to the number of prior calls to
1994 static int walTryBeginRead(Wal *pWal, int *pChanged, int useWal, int cnt){ argument
2020 if( cnt>5 ){
2022 if( cnt>100 ){
2026 if( cnt>=10 ) nDelay = (cnt-9)*238; /* Max delay 21ms. Total delay 996ms */
2183 int cnt = 0; /* Number of TryBeginRead attempts */ local
2186 rc = walTryBeginRead(pWal, pChanged, 0, ++cnt);
2503 int cnt; local
2576 { int cnt; for(cnt=0, p=pList; p; p=p->pDirty, cnt++){} local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp126 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t, argument
128 : Cnt(cnt), ACnt(acnt), T(t), RawKind(static_cast<unsigned>(k)),
259 unsigned cnt = getCount(); local
260 if (cnt) Out << " (+ " << cnt << ")"; local
266 unsigned cnt = getCount(); local
267 if (cnt) Out << " (+ " << cnt << ")"; local
273 unsigned cnt = getCount(); local
274 if (cnt) Ou local
280 unsigned cnt = getCount(); local
281 if (cnt) Out << " (+ " << cnt << ")"; local
3319 unsigned cnt = X.getCount(); local
3327 unsigned cnt = X.getCount(); local
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dx11windowpicker.cc651 int cnt; local
654 &cnt);
655 if (status >= Success && cnt && *list) {
656 if (cnt > 1) {
657 LOG(LS_INFO) << "Window has " << cnt
/external/iproute2/misc/
H A Dss.c316 int cnt = 0; local
335 cnt++;
344 return cnt;
373 int cnt; local
381 cnt = sizeof(*s)/sizeof(int);
389 cnt--;
393 if (cnt <= 0)
935 int cnt = 0; local
949 return cnt;
959 cnt
967 int cnt = 0; local
2180 int cnt; local
[all...]
/external/qemu/slirp/
H A Dip_input.c507 /* int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0; */
508 int opt, optlen, cnt, off, code, type, forward = 0; local
515 cnt = (ip->ip_hl << 2) - sizeof (struct ip);
516 for (; cnt > 0; cnt -= optlen, cp += optlen) {
524 if (optlen <= 0 || optlen > cnt) {
/external/qemu/slirp-android/
H A Dip_input.c507 /* int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0; */
508 int opt, optlen, cnt, off, code, type, forward = 0; local
515 cnt = (ip->ip_hl << 2) - sizeof (struct ip);
516 for (; cnt > 0; cnt -= optlen, cp += optlen) {
524 if (optlen <= 0 || optlen > cnt) {
/external/elfutils/0.153/libcpu/
H A Di386_parse.c2494 int cnt = 0; local
2512 if (cnt++ > 0)
2958 size_t cnt = 0; local
2959 for (instr = instructions; instr != NULL; instr = instr->next, ++cnt)
3065 for (size_t cnt = 0; cnt < nstr; ++cnt)
3067 const unsigned char *cp = (const unsigned char *) str[cnt];
3075 for (size_t cnt = 0; cnt < 25
[all...]
/external/openssl/crypto/aes/asm/
H A Daes-mips.pl106 my ($key0,$cnt)=($gp,$fp);
120 lw $cnt,240($key)
128 sub $cnt,1
229 sub $cnt,1
236 bnez $cnt,.Loop_enc
451 lw $cnt,240($key)
459 sub $cnt,1
563 sub $cnt,1
570 bnez $cnt,.Loop_dec
786 my ($rcon,$cnt)
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DSoapSerializationEnvelope.java588 int cnt = soapObject.getAttributeCount();
589 for (int counter = 0; counter < cnt; counter++) {
603 int cnt = obj.getPropertyCount();
608 for (int i = 0; i < cnt; i++) {
725 int cnt = vector.size();
732 + arrType[1] + "[" + cnt + "]");
736 for (int i = 0; i < cnt; i++) {
/external/aac/libAACenc/src/
H A Dsf_estim.cpp384 INT cnt; local
386 cnt = 0;
388 while ((sfbDistLdData > (threshLdData-distFactorLdData)) && (cnt++ < 3)) {
403 cnt = 0;
406 while ((sfbDistLdData > (threshLdData-distFactorLdData)) && (cnt++ < 1) && (scf > minScf)) {
426 int cnt; local
427 for (cnt=0; cnt<3; cnt++) {
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_proxy.cc517 int cnt = 0; local
518 error = handle->Read(buf, nbytes, &cnt);
524 return cnt;
535 int cnt = 0; local
536 error = handle->Write(buf, nbytes, &cnt);
542 return cnt;
570 int cnt = 0; local
571 error = handle->GetDents(static_cast<dirent*>(buf), count, &cnt);
575 return cnt;
/external/chromium_org/ppapi/tests/
H A Dtest_file_io.cc1041 ssize_t cnt = write(fd, msg.data(), msg.size()); local
1042 if (cnt < 0)
1044 if (cnt != static_cast<ssize_t>(msg.size()))
1045 return ReportError("write for native FD count mismatch", cnt);
1062 cnt = read(fd, &buf[0], msg.size());
1063 if (cnt < 0)
1065 if (cnt != static_cast<ssize_t>(msg.size()))
1066 return ReportError("read for native FD count mismatch", cnt);
1143 ssize_t cnt = write(fd, msg.data(), msg.size()); local
1144 if (cnt <
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dcrypto-md5.js192 function bit_rol(num, cnt)
194 return (num << cnt) | (num >>> (32 - cnt));
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dcrypto-md5.js192 function bit_rol(num, cnt)
194 return (num << cnt) | (num >>> (32 - cnt));
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dcrypto-md5.js192 function bit_rol(num, cnt)
194 return (num << cnt) | (num >>> (32 - cnt));
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
H A Dvpx_encoder.c376 if (list->cnt < list->max) {
377 list->pkts[list->cnt++] = *pkt;
395 if ((size_t)(pkt - list->pkts) < list->cnt)

Completed in 4822 milliseconds

<<111213141516171819