Searched defs:cnt (Results 1 - 25 of 289) sorted by path

1234567891011>>

/external/aac/libAACenc/src/
H A Dbitenc.cpp679 INT cnt = dataElementLength; local
696 for (i=0; i<cnt; i++) {
700 extBitsUsed += DATA_EL_VERSION_BITS + (loopCounter*8) + (cnt*8);
756 int cnt = 0; local
766 cnt = fixMin(MAX_DSE_DATA_BYTES, dataPayloadBytes);
767 if ( cnt >= 255 ) {
768 esc_count = cnt - 255;
772 dataPayloadBytes -= cnt;
773 dseBitsUsed += cnt * 8;
791 FDKwriteBits(hBitStream, cnt, DATA_LEN_COUNT_BIT
930 INT cnt, esc_count=-1, alignBits=7; local
[all...]
H A Dchannel_map.cpp224 static INT FDKaacEnc_initElement (ELEMENT_INFO* elInfo, MP4_ELEMENT_ID elType, INT* cnt, CHANNEL_MODE mode, CHANNEL_ORDER co, INT* it_cnt, const FIXP_DBL relBits) { argument
227 INT counter =*cnt;
255 *cnt = counter;
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/aac/libMpegTPDec/src/
H A Dtpdec_asc.cpp1102 int eldExtLen, len, cnt; local
1149 for(cnt=0; cnt<len; cnt++) {
/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...]
H A Dpsbitdec.cpp577 int cnt = FDKreadBits(hBitBuf, PS_EXTENSION_SIZE_BITS); local
578 if (cnt == (1<<PS_EXTENSION_SIZE_BITS)-1) {
579 cnt += FDKreadBits(hBitBuf, PS_EXTENSION_ESC_COUNT_BITS);
581 while (cnt--)
/external/bison/lib/
H A Dspawni.c240 int cnt; local
242 for (cnt = 0; cnt < file_actions->_used; ++cnt)
244 struct __spawn_action *action = &file_actions->_actions[cnt];
/external/bluetooth/bluedroid/bta/hl/
H A Dbta_hl_sdp.c179 UINT8 i,j, cnt,mdep_id, mdep_role; local
281 cnt=0;
292 sup_feature_list.list_elem[cnt].mdep_id = mdep_id;
293 sup_feature_list.list_elem[cnt].mdep_role = mdep_role;
294 sup_feature_list.list_elem[cnt].data_type = p_cb->sup_feature.mdep[i].mdep_cfg.data_cfg[j].data_type;
297 sup_feature_list.list_elem[cnt].p_mdep_desp = p_cb->sup_feature.mdep[i].mdep_cfg.data_cfg[j].desp;
301 sup_feature_list.list_elem[cnt].p_mdep_desp = NULL;
304 cnt++;
305 if (cnt==BTA_HL_NUM_SUP_FEATURE_ELEMS)
313 sup_feature_list.num_elems = cnt;
382 UINT8 i,j, cnt,mdep_id, mdep_role; local
[all...]
H A Dbta_hl_utils.c1609 UINT8 i, time_min, cnt=0; local
1618 s_arr[cnt]= i;
1619 cnt++;
1626 APPL_TRACE_DEBUG("bta_hl_compact_mdl_cfg_time cnt=%d ",cnt );
1630 if (cnt)
1632 bta_hl_sort_cfg_time_idx(app_idx, s_arr, cnt);
1634 for (i=0;i<cnt; i++)
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_hl.c234 UINT8 cnt=0; local
257 cnt++;
265 BTIF_TRACE_DEBUG("%s dch in use count=%d", __FUNCTION__, cnt);
266 return cnt;
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_utils.c2495 UINT8 cnt = 0; local
2502 cnt++;
2505 return cnt;
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_fcr.c120 register int cnt = icnt; local
122 while (cnt--)
700 L2CAP_TRACE_EVENT (" eRTM Rx Nxt_tx_seq %u, Lst_rx_ack %u, Nxt_seq_exp %u, Lst_ack_snt %u, wt_q.cnt %u, tries %u",
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Devent_listener.cc122 size_t cnt,
128 for (size_t index = 0; index < cnt; index++) {
136 for (size_t index = 0; index < cnt; index++) {
170 for (size_t index = 0; index < cnt; index++) {
121 WaitOnAny(EventRequest* requests, size_t cnt, int ms_timeout) argument
H A Dkernel_handle.cc98 Error KernelHandle::Read(void* buf, size_t nbytes, int* cnt) { argument
102 Error error = node_->Read(handle_attr_, buf, nbytes, cnt);
104 handle_attr_.offs += *cnt;
108 Error KernelHandle::Write(const void* buf, size_t nbytes, int* cnt) { argument
112 Error error = node_->Write(handle_attr_, buf, nbytes, cnt);
114 handle_attr_.offs += *cnt;
118 Error KernelHandle::GetDents(struct dirent* pdir, size_t nbytes, int* cnt) { argument
120 Error error = node_->GetDents(handle_attr_.offs, pdir, nbytes, cnt);
122 handle_attr_.offs += *cnt;
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/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/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/skia/ext/
H A Dconvolver_mips_dspr2.cc244 int cnt; local
258 "srl %[cnt], %[filter_len], 2 \n"
259 "beqz %[cnt], 2f \n"
300 "addiu %[cnt], %[cnt], -1 \n"
301 "bgtz %[cnt], 11b \n"
305 "andi %[cnt], %[filter_len], 0x3 \n" // residual
306 "beqz %[cnt], 3f \n"
324 "addiu %[cnt], %[cnt],
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dgcm.c152 int cnt = 15; local
179 if (--cnt < 0) {
183 nlo = ((const uint8_t *)Xi)[cnt];
230 int cnt; local
238 cnt = 15;
260 if (--cnt < 0) {
264 nlo = ((const uint8_t *)Xi)[cnt];
265 nlo ^= inp[cnt];
/external/chromium_org/third_party/boringssl/src/crypto/rsa/
H A Dpadding.c326 uint8_t cnt[4]; local
336 cnt[0] = (uint8_t)((i >> 24) & 255);
337 cnt[1] = (uint8_t)((i >> 16) & 255);
338 cnt[2] = (uint8_t)((i >> 8)) & 255;
339 cnt[3] = (uint8_t)(i & 255);
341 !EVP_DigestUpdate(&c, seed, seedlen) || !EVP_DigestUpdate(&c, cnt, 4)) {
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Da_strex.c381 int i, prev = -1, orflags, cnt; local
441 cnt = X509_NAME_entry_count(n);
442 for(i = 0; i < cnt; i++) {
444 ent = X509_NAME_get_entry(n, cnt - i - 1);
H A Dx509_lu.c502 int i, idx, cnt; local
508 idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
523 idx = x509_object_idx_cnt(ctx->ctx->objs,X509_LU_X509,nm, &cnt);
531 for (i = 0; i < cnt; i++, idx++)
550 int i, idx, cnt; local
557 idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_CRL, nm, &cnt);
569 idx = x509_object_idx_cnt(ctx->ctx->objs,X509_LU_CRL, nm, &cnt);
577 for (i = 0; i < cnt; i++, idx++)
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 906 milliseconds

1234567891011>>