HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 501 - 525 of 1021) sorted by null

<<21222324252627282930>>

  /external/webkit/JavaScriptCore/runtime/
ArgList.h 213 JSValue at(size_t idx) const
215 if (idx < m_argCount)
216 return m_args[idx];
  /frameworks/base/media/libstagefright/codecs/aacdec/
huffspec_fxp.cpp 320 Int idx; local
489 idx = (*pDec_huff_tab)(pInputStream);
492 idx,
495 &max); /* unpack idx -> coefs */
  /frameworks/base/tests/CoreTests/android/core/
ZipFileTest.java 107 int idx = 0; local
113 assertEquals(entry.getName(), "file-" + idx); local
114 idx++;
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/hl_data/
whalDefrag.c 48 static int findAndInsertEndpointIndex (TI_HANDLE hWhalDefrag, UINT8* mac, UINT8* idx)
59 *idx = i;
71 *idx = i;
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c 1993 int idx = 0; local
2039 int idx = 0; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 217 * @param idx which constant
220 private Constant parse0(int idx) {
221 Constant cst = pool.getOrNull(idx);
226 int at = offsets[idx];
301 ex.addContext("...while parsing cst " + Hex.u2(idx) +
306 pe.addContext("...while parsing cst " + Hex.u2(idx) +
311 pool.set(idx, cst);
  /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...]
  /external/chromium/third_party/icu/source/tools/tzcode/
icuzdump.cpp 220 idx = 0;
228 idx = 0;
248 if (idx < numids) {
250 tz = TimeZone::createTimeZone((const UnicodeString&)zids[idx]);
255 idx++;
264 int32_t idx; member in class:ZoneIterator
  /external/dbus/dbus/
dbus-hash.c 806 unsigned int idx,
814 b = &(table->buckets[idx]);
833 unsigned int idx,
855 add_allocated_entry (table, entry, idx, key, bucket);
903 unsigned int idx,
915 entry = table->buckets[idx];
922 *bucket = &(table->buckets[idx]);
934 entry = add_entry (table, idx, key, bucket, preallocated);
948 unsigned int idx; local
950 idx = string_hash (key) & table->mask
985 unsigned int idx; local
1002 unsigned int idx; local
1100 unsigned int idx; local
    [all...]
  /external/icu4c/tools/tzcode/
icuzdump.cpp 220 idx = 0;
228 idx = 0;
248 if (idx < numids) {
250 tz = TimeZone::createTimeZone((const UnicodeString&)zids[idx]);
255 idx++;
264 int32_t idx; member in class:ZoneIterator
  /external/libffi/src/
closures.c 539 #define GET(idx, len) do { p[idx] = dlmalloc (len); printf ("allocated %zi for p[%i]\n", (len), (idx)); } while (0)
540 #define PUT(idx) do { printf ("freeing p[%i]\n", (idx)); dlfree (p[idx]); } while (0)
  /dalvik/libdex/
DexSwapVerify.c 1419 u4 idx = annotationItemTypeIdx(annotation); local
2018 u4 idx; local
2050 u4 idx; local
2078 u4 idx = readAndVerifyUnsignedLeb128(&data, fileEnd, &okay); local
2194 u4 idx = readUnsignedLittleEndian(state, &data, valueArg + 1); local
2203 u4 idx = readUnsignedLittleEndian(state, &data, valueArg + 1); local
2213 u4 idx = readUnsignedLittleEndian(state, &data, valueArg + 1); local
2222 u4 idx = readUnsignedLittleEndian(state, &data, valueArg + 1); local
2273 u4 idx = readAndVerifyUnsignedLeb128(&data, fileEnd, &okay); local
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 101 FT_UInt n, idx; local
107 idx = *p++;
108 if ( idx >= TT_VALID_GLYPH_COUNT( valid ) )
296 FT_UInt idx = TT_NEXT_USHORT( p ); local
300 if ( valid->level >= FT_VALIDATE_PARANOID && ( idx & 7 ) != 0 )
303 idx >>= 3;
305 if ( idx > max_subs )
306 max_subs = idx;
351 FT_UInt idx; local
356 idx = TT_NEXT_USHORT( p )
438 FT_UInt idx = (FT_UInt)(char_code & 0xFF); local
485 FT_UInt pos, idx; local
958 FT_UInt i, idx; local
1472 FT_UInt idx = (FT_UInt)( char_code - start ); local
1496 FT_UInt idx; local
1883 FT_UInt32 idx = (FT_ULong)( char_code - start ); local
1905 FT_UInt32 idx; local
    [all...]
  /build/tools/apriori/
rangesort.c 29 int idx; local
30 for (idx = 0; idx < ranges->num_ranges; idx++) {
31 if (ranges->array[idx].user_dtor) {
32 ASSERT(ranges->array[idx].user);
33 ranges->array[idx].user_dtor(ranges->array[idx].user);
  /cts/tools/dasm/src/dasm/
Scanner.java 62 char charAt(int idx) {
63 return buffer[idx];
  /dalvik/vm/
IndirectRefTable.h 361 int idx = dvmIndirectRefToIndex(iref);
362 return pRef->table[idx];
  /dalvik/vm/native/
dalvik_system_VMDebug.c 119 int idx = 0; local
122 features[idx++] = "method-trace-profiling";
123 features[idx++] = "method-trace-profiling-streaming";
126 features[idx++] = "hprof-heap-dump";
127 features[idx++] = "hprof-heap-dump-streaming";
130 assert(idx <= MAX_FEATURE_COUNT);
132 LOGV("+++ sending up %d features\n", idx);
133 ArrayObject* arrayObj = convertStringArray(features, idx);
java_lang_VMClassLoader.c 138 int idx = args[1]; local
145 result = dvmGetBootPathResource(name, idx);
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_make_key.c 46 key->idx = x;
67 key->idx = -1;
  /external/elfcopy/
rangesort.c 29 int idx; local
30 for (idx = 0; idx < ranges->num_ranges; idx++) {
31 if (ranges->array[idx].user_dtor) {
32 ASSERT(ranges->array[idx].user);
33 ranges->array[idx].user_dtor(ranges->array[idx].user);
  /external/openssl/crypto/ocsp/
ocsp_ext.c 106 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx)
108 return X509V3_get_d2i(x->tbsRequest->requestExtensions, nid, crit, idx);
154 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx)
156 return X509V3_get_d2i(x->singleRequestExtensions, nid, crit, idx);
202 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx)
204 return X509V3_get_d2i(x->tbsResponseData->responseExtensions, nid, crit, idx);
250 void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit, int *idx)
252 return X509V3_get_d2i(x->singleExtensions, nid, crit, idx);
  /dalvik/dexdump/
DexDump.c 503 void dumpClassDef(DexFile* pDexFile, int idx)
509 pClassDef = dexGetClassDef(pDexFile, idx);
518 printf("Class #%d header:\n", idx);
1586 int idx, addr, byte; local
1626 int idx; local
    [all...]
  /device/samsung/crespo/alsa-lib/src/
conf.c 685 size_t idx; member in struct:local_string
704 if (s->idx >= s->alloc) {
719 s->buf[s->idx++] = c;
725 char *dst = malloc(s->idx + 1);
727 memcpy(dst, s->buf, s->idx);
728 dst[s->idx] = '\0';
994 static int parse_array_def(snd_config_t *father, input_t *input, int idx, int skip, int override)
1003 snprintf(static_id, sizeof(static_id), "%i", idx);
1066 int idx = 0; local
1074 err = parse_array_def(father, input, idx++, skip, override)
2729 int err, hit, idx = 0; local
2775 int err, idx = 0, fi_count = 0, errors = 1, hit; local
3681 size_t idx = 0; local
    [all...]
  /external/chromium/third_party/icu/source/test/perf/convperf/
convperf.h 123 int32_t idx; local
127 for (idx = 0; idx < availableConverters; idx++) {
128 convNames[idx] = ucnv_getAvailableName(idx);
132 int32_t idx; local
136 for (idx = 0; idx < availableConverters; idx++)
    [all...]
  /external/icu4c/test/perf/convperf/
convperf.h 123 int32_t idx; local
127 for (idx = 0; idx < availableConverters; idx++) {
128 convNames[idx] = ucnv_getAvailableName(idx);
132 int32_t idx; local
136 for (idx = 0; idx < availableConverters; idx++)
    [all...]

Completed in 5982 milliseconds

<<21222324252627282930>>