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

1234567891011>>

/external/chromium_org/third_party/libvpx/source/libvpx/vpx/internal/
H A Dvpx_codec_internal.h394 unsigned int cnt; member in struct:vpx_codec_pkt_list
405 (m)->alloc.head.cnt = 0,\
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-regexp.jar ... .RE reg java.util.Vector v int cnt protected int getCompilerOptions (int) int options int cOptions } org/apache ...
/external/elfutils/0.153/libelf/
H A Delf_update.c188 shnum = (elf->state.elf.scns_last->cnt == 0
190 : 1 + elf->state.elf.scns_last->data[elf->state.elf.scns_last->cnt - 1].index);
H A Delf32_newphdr.c120 if (elf->state.ELFW(elf,LIBELFBITS).scns.cnt > 0)
153 if (elf->state.ELFW(elf,LIBELFBITS).scns.cnt == 0)
156 elf->state.ELFW(elf,LIBELFBITS).scns.cnt = 1;
/external/elfutils/0.153/src/
H A Dxelf.h137 # define xelf_fsize(elf, type, cnt) \
166 fsize * (cnt); }) \
167 : gelf_fsize (elf, type, cnt, EV_CURRENT))
269 # define xelf_fsize(elf, type, cnt) \
298 fsize * (cnt); }) \
299 : gelf_fsize (elf, type, cnt, EV_CURRENT))
397 # define xelf_fsize(elf, type, cnt) \
398 gelf_fsize (elf, type, cnt, EV_CURRENT)
/external/libpcap/
H A Dpcap-septel.c65 static int septel_read(pcap_t *p, int cnt, pcap_handler callback, u_char *user) { argument
180 while (processed < cnt) ;
H A Dpcap-nit.c107 pcap_read_nit(pcap_t *p, int cnt, pcap_handler callback, u_char *user) argument
192 if (++n >= cnt && !PACKET_COUNT_IS_UNLIMITED(cnt)) {
H A Dsavefile.c370 * If cnt > 0, return after 'cnt' packets, otherwise continue until eof.
373 pcap_offline_read(pcap_t *p, int cnt, pcap_handler callback, u_char *user) argument
410 if (++n >= cnt && cnt > 0)
/external/openssl/crypto/x509/
H A Dx509_lu.c490 int i, idx, cnt; local
496 idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
511 idx = x509_object_idx_cnt(ctx->ctx->objs,X509_LU_X509,nm, &cnt);
519 for (i = 0; i < cnt; i++, idx++)
539 int i, idx, cnt; local
546 idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_CRL, nm, &cnt);
558 idx = x509_object_idx_cnt(ctx->ctx->objs,X509_LU_CRL, nm, &cnt);
566 for (i = 0; i < cnt; i++, idx++)
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Devent_test.cc240 void SetFDs(int* fds, int cnt) { argument
245 for (int index = 0; index < cnt; index++) {
257 void CloseFDs(int* fds, int cnt) { argument
258 for (int index = 0; index < cnt; index++)
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_clang_other.h20 INLINE void proc_yield(int cnt) { argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dcrypto-sha1.js138 function rol(num, cnt)
140 return (num << cnt) | (num >>> (32 - cnt));
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dcrypto-sha1.js138 function rol(num, cnt)
140 return (num << cnt) | (num >>> (32 - cnt));
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dcrypto-sha1.js138 function rol(num, cnt)
140 return (num << cnt) | (num >>> (32 - cnt));
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutex.cc54 int cnt[N] = {}; local
68 cnt[i]++;
72 CHECK(!leaf[i] || cnt[i] == 0);
/external/jemalloc/src/
H A Dprof.c450 prof_ctx_merge(prof_ctx_t *ctx, prof_thr_cnt_t *cnt) argument
456 /* Merge cnt stats and detach from ctx. */
458 ctx->cnt_merged.curobjs += cnt->cnts.curobjs;
459 ctx->cnt_merged.curbytes += cnt->cnts.curbytes;
460 ctx->cnt_merged.accumobjs += cnt->cnts.accumobjs;
461 ctx->cnt_merged.accumbytes += cnt->cnts.accumbytes;
462 ql_remove(&ctx->cnts_ql, cnt, cnts_link);
573 * Flush the least recently used cnt in order to keep
586 /* Allocate and partially initialize a new cnt. */
1274 prof_thr_cnt_t *cnt; local
[all...]
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_socket.c616 int cnt; local
626 cnt = iov->iov_len;
627 if (cnt == 0) {
632 if (cnt > n)
633 cnt = n;
639 error = copyout(cp, iov->iov_base, cnt);
641 error = copyin(iov->iov_base, cp, cnt);
648 bcopy(cp, iov->iov_base, cnt);
650 bcopy(iov->iov_base, cp, cnt);
653 iov->iov_base = (char *)iov->iov_base + cnt;
2520 int i, ret, cnt, *aa; local
2609 int cnt; local
2685 int cnt; local
[all...]
/external/aac/libSBRdec/src/
H A Denv_extr.cpp393 int cnt; local
396 cnt = FDKreadBits(hBs, 4);
397 if (cnt == (1<<4)-1)
398 cnt += FDKreadBits(hBs, 8);
401 nBitsLeft = 8 * cnt;
403 /* sanity check for cnt */
425 cnt = nBitsLeft >> 3; /* number of remaining bytes */
426 for (i=0; i<cnt; i++)
428 nBitsLeft -= cnt * 8;
448 cnt
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp399 unsigned cnt = 0; local
405 ++cnt;
410 if (cnt > max_token) max_token = cnt;
411 cnt = 0;
414 if (cnt > max_token)
415 max_token = cnt;
/external/iproute2/lib/
H A Dutils.c657 int cnt = 0; local
680 if (cnt < blen) {
681 buf[cnt] = acc;
682 cnt++;
688 if (cnt < blen)
689 memset(buf+cnt, 0, blen-cnt);
/external/mksh/src/
H A Dcheck.pl931 local(%cnt, $sfield);
934 %cnt = ();
953 local($cnt) = $cnt{$field}++;
954 $test{$field} = $cnt{$field};
955 $cnt = 0 if $cnt eq '';
956 $sfield .= ":$cnt";
/external/openssl/crypto/bio/
H A Db_print.c444 int cnt = 0; local
456 while ((padlen > 0) && (cnt < max)) {
459 ++cnt;
461 while (*value && (cnt < max)) {
463 ++cnt;
465 while ((padlen < 0) && (cnt < max)) {
468 ++cnt;
/external/svox/pico/lib/
H A Dpicosig2.c832 picoos_int16 cnt; local
863 cnt = PICODSP_FFTSIZE;
867 if (cnt > 0)FAST_DEVICE(cnt,*(t1++)+=*(t2++)*ff;);
876 cnt = PICODSP_FFTSIZE;
880 if (cnt > 0)FAST_DEVICE(cnt,*(t1++)+=*(t2++)*ff; );
883 cnt = PICODSP_FFTSIZE;
887 if (cnt > 0)FAST_DEVICE(cnt,*(t
[all...]
/external/chromium_org/third_party/skia/tests/
H A DDeferredCanvasTest.cpp685 int cnt; local
688 cnt = GrContextFactory::kGLContextTypeCnt;
690 cnt = 1;
694 cnt = 1;
696 for (int i = 0; i < cnt; ++i) {
768 int cnt; local
771 cnt = GrContextFactory::kGLContextTypeCnt;
773 cnt = 1;
777 cnt = 1;
780 for (int i = 0; i < cnt;
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_malloc.c42 static int cnt = 0; local
43 cnt++;
1037 int sz, cnt; local
1044 if( Tcl_GetIntFromObj(interp, objv[2], &cnt) ) return TCL_ERROR;
1052 rc = sqlite3_config(SQLITE_CONFIG_LOOKASIDE, sz, cnt);
1072 int sz, cnt; local
1084 if( Tcl_GetIntFromObj(interp, objv[4], &cnt) ) return TCL_ERROR;
1086 rc = sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE, 0, sz, cnt);
1087 }else if( bufid>=1 && bufid<=2 && sz*cnt<=sizeof(azBuf[0]) ){
1088 rc = sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE, azBuf[bufid], sz,cnt);
[all...]

Completed in 2533 milliseconds

1234567891011>>