HomeSort by relevance Sort by last modified time
    Searched defs:idx (Results 176 - 200 of 475) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
residual.cpp 177 int block_x, i, j, k, idx, iCbCr; local
210 idx = zz_scan[coeffNum] << 2;
211 /* idx = ((idx>>2)<<6) + ((idx&3)<<2); */
212 block[idx] = level[i];
245 block[idx] should be assigned with level[k].
248 then addition with block[idx], then this quantization
259 idx = zz_scan[coeffNum];
260 block[idx] = (level[k] * dequant_coefres[Rq][coeffNum]) << Qq
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
block.cpp 85 int r0, r1, r2, r3, j, k, idx; local
154 idx = ZZ_SCAN_BLOCK[k]; /* map back to raster scan order */
155 data = coef[idx];
175 coef[idx] = (lev * quant) << Qq;
180 coef[idx] = (-lev * quant) << Qq;
188 coef[idx] = 0;
368 int blk_x, blk_y, j, k, idx, b8, b4; local
465 idx = ZIGZAG2RASTERDC[k];
466 data = coef[idx];
481 coef[idx] = lev
731 int j, blk_x, blk_y, k, idx, b4; local
1126 int k, ncoeff, idx; local
1214 int k, ncoeff, idx; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp 72 int idx; local
78 for (idx = 0; idx < nLayers; idx++)
80 decCtrl->volbuf[idx] = volbuf[idx];
81 decCtrl->volbuf_size[idx] = volbuf_size[idx];
145 for (idx = 0; idx < nLayers; idx++
529 int idx; local
555 int idx; local
769 int idx; local
876 int idx = -1; local
1036 int idx; local
1245 int idx; local
    [all...]
  /frameworks/base/services/java/com/android/server/
NativeDaemonConnector.java 270 int idx = 0; local
278 rdata[idx++] = line.substring(tok[0].length() + 1);
  /frameworks/base/tests/CoreTests/android/core/
ZipFileTest.java 107 int idx = 0; local
113 assertEquals(entry.getName(), "file-" + idx); local
114 idx++;
  /frameworks/base/tools/aapt/
StringPool.cpp 60 ssize_t idx = mIdents.valueFor(ident); local
61 if (idx >= 0) {
63 String8(mEntries[idx].value).string());
109 status_t StringPool::addStyleSpan(size_t idx, const String16& name,
116 return addStyleSpan(idx, span);
119 status_t StringPool::addStyleSpans(size_t idx, const Vector<entry_style_span>& spans)
123 status_t err = addStyleSpan(idx, spans[i]);
131 status_t StringPool::addStyleSpan(size_t idx, const entry_style_span& span)
136 while (mEntryStyleArray.size() <= idx) {
140 entry_style& style = mEntryStyleArray.editItemAt(idx);
207 ssize_t idx = add(span.name, true); local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/shared/
aiutils.c 156 uint i, j, idx; local
201 idx = sii->numcores;
202 /* sii->eromptr[idx] = base; */
203 sii->common_info->cia[idx] = cia;
204 sii->common_info->cib[idx] = cib;
205 sii->common_info->coreid[idx] = cid;
235 sii->common_info->coresba[idx] = addrl;
236 sii->common_info->coresba_size[idx] = sizel;
243 sii->common_info->coresba2[idx] = addrl;
244 sii->common_info->coresba2_size[idx] = sizel
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
Ctrl.c 804 TI_UINT8 idx; local
835 TI_UINT8 idx; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
AnnotationFactory.java 72 int idx = 0; local
77 desc[idx] = new AnnotationMember(name,
80 desc[idx] = new AnnotationMember(name, t, type, element);
82 idx++;
  /packages/apps/Email/src/com/android/exchange/adapter/
Serializer.java 187 int idx = 0; local
190 buf[idx++] = (byte) (i & 0x7f);
194 while (idx > 1) {
195 out.write(buf[--idx] | 0x80);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 155 NJ_UINT16 i, idx, yib, ret; local
175 idx = (NJ_UINT16)((*index - 1) * yib);
177 char_len = UTL_CHAR(wkc + idx);
183 NJ_CHAR_COPY(wky, wkc + idx + j);
192 *wky++ = (NJ_CHAR)(*(wkc + idx));
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/QOS/
trafficAdmControl.c 274 UINT8 idx; local
322 for (idx=0; idx<MAX_NUM_OF_AC; idx++)
323 pTrafficAdmCtrl->dialogToken[idx] = 0;
704 UINT8 idx; local
724 for (idx=0; idx<MAX_NUM_OF_AC; idx++)
725 pTrafficAdmCtrl->dialogToken[idx] = 0
1128 UINT8 idx; local
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
Ctrl.c 804 TI_UINT8 idx; local
835 TI_UINT8 idx; local
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
trafficAdmControl.c 995 TI_UINT8 idx; local
    [all...]
  /build/tools/zipalign/
ZipFile.cpp 135 ZipEntry* ZipFile::getEntryByIndex(int idx) const
137 if (idx < 0 || idx >= (int) mEntries.size())
140 return mEntries[idx];
158 int idx; local
160 for (idx = mEntries.size()-1; idx >= 0; idx--) {
161 ZipEntry* pEntry = mEntries[idx];
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 592 int idx = bytes.getUnsignedShort(offset); local
595 type = (CstType) pool.get(idx);
624 int idx = bytes.getUnsignedShort(n * 2); local
625 return ((CstType) pool.get(idx)).getClassType();
StdAttributeFactory.java 324 int idx = bytes.getUnsignedShort(offset); local
325 TypedConstant cst = (TypedConstant) pool.get(idx);
359 int idx = bytes.getUnsignedShort(offset); local
360 CstType type = (CstType) pool.get(idx);
362 idx = bytes.getUnsignedShort(offset + 2);
363 CstNat method = (CstNat) pool.get0Ok(idx);
685 int idx = bytes.getUnsignedShort(offset); local
686 CstUtf8 cst = (CstUtf8) pool.get(idx);
707 int idx = bytes.getUnsignedShort(offset); local
708 CstUtf8 cst = (CstUtf8) pool.get(idx);
    [all...]
  /dalvik/tests/074-gc-thrash/src/
Main.java 168 int idx = 0; local
171 strings[idx] = makeString(idx);
173 if (idx % (ARRAY_SIZE / 4) == 0) {
178 idx = (idx + 1) % ARRAY_SIZE;
  /device/samsung/crespo/alsa-lib/src/alisp/
alisp_snd.c 584 int idx; local
586 for (idx = 0; idx < err; idx++)
587 p2 = add_cons2(instance, p2, idx > 0, new_integer(instance, snd_ctl_elem_info_get_dimension(info, idx)));
632 unsigned int idx, count; local
655 for (idx = 0; idx < count; idx++)
696 unsigned int idx, count; local
    [all...]
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_iec958.c 630 int idx; local
634 idx = PREAMBLE_Z;
636 idx = PREAMBLE_X;
638 idx = PREAMBLE_Y;
648 preamble_vals[idx] = val;
  /external/chromium/third_party/icu/source/common/
locmap.c 745 uint32_t idx; local
747 for (idx = 0; idx < this_0->numRegions; idx++ ) {
748 int32_t sameChars = idCmp(posixID, this_0->regionMaps[idx].posixID);
749 if (sameChars > bestIdxDiff && this_0->regionMaps[idx].posixID[sameChars] == 0) {
752 return this_0->regionMaps[idx].hostID;
755 bestIdx = idx;
840 uint32_t idx; local
873 for (idx = 0; idx < gLocaleCount; idx++ )
    [all...]
utrie.c 375 _findSameIndexBlock(const int32_t *idx, int32_t indexLength,
381 if(idx[block+i]!=idx[otherBlock+i]) {
405 int32_t *idx; local
413 idx=trie->index;
416 uprv_memcpy(leadIndexes, idx+(0xd800>>UTRIE_SHIFT), 4*UTRIE_SURROGATE_BLOCK_COUNT);
456 if(idx[c>>UTRIE_SHIFT]!=0) {
466 block=_findSameIndexBlock(idx, indexLength, c>>UTRIE_SHIFT);
484 uprv_memmove(idx+indexLength,
485 idx+(c>>UTRIE_SHIFT)
1060 const uint16_t *idx; local
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
utf8tst.c 385 int32_t idx; local
387 for(idx=0; idx<(int32_t)sizeof(nonChars);) {
388 U8_NEXT(nonChars, idx, sizeof(nonChars), ch);
390 log_err("U8_NEXT(before %d) failed to read a non-character\n", idx);
393 for(idx=(int32_t)sizeof(nonChars); idx>0;) {
394 U8_PREV(nonChars, 0, idx, ch);
396 log_err("U8_PREV(at %d) failed to read a non-character\n", idx);
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
restest.cpp 174 int idx; local
175 for (idx = 0; idx < (int)(sizeof(param)/sizeof(param[0])); idx++) {
176 delete param[idx].locale;
177 param[idx].locale = NULL;
  /external/chromium/third_party/icu/source/tools/genrb/
wrtjava.c 262 uint32_t idx = strrch(current,add,'\\'); local
263 if (idx > add) {
264 idx = add;
266 int32_t num =idx-1;
275 if ((idx-num)%2==0) {
276 idx--;
278 seqLen = (current[idx+1]=='u') ? 6 : 2;
279 if ((add-idx) < seqLen) {
280 add = idx + seqLen;

Completed in 914 milliseconds

1 2 3 4 5 6 78 91011>>