HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 351 - 375 of 1388) sorted by null

<<11121314151617181920>>

  /external/ppp/pppd/
srp-entry.c 102 int flags, idx; local
113 idx = -1;
117 idx = atoi(*argv++);
121 if (idx != 0 && (tc = t_openconf(NULL)) != NULL) {
122 if (idx == -1)
125 tcent = t_getconfbyindex(tc, idx);
127 if (idx <= 0 && tcent == NULL) {
137 idx);
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
WebPlugin.h 40 void itemClicked(int idx);
78 void itemClicked(int idx);
  /frameworks/base/core/java/com/android/internal/net/
NetworkStatsFactory.java 184 int idx = 1; local
194 idx = reader.nextInt();
195 if (idx != lastIdx + 1) {
197 "inconsistent idx=" + idx + " after lastIdx=" + lastIdx);
199 lastIdx = idx;
217 throw new IllegalStateException("problem parsing idx " + idx, e);
219 throw new IllegalStateException("problem parsing idx " + idx, e)
    [all...]
  /frameworks/rs/driver/
rsdCore.cpp 151 uint32_t idx = (uint32_t)android_atomic_inc(&dc->mWorkers.mLaunchCount); local
153 //ALOGV("RS helperThread starting %p idx=%i", rsc, idx);
155 dc->mWorkers.mLaunchSignals[idx].init();
156 dc->mWorkers.mNativeThreadId[idx] = gettid();
167 cpuset.bits[idx / 64] |= 1ULL << (idx % 64);
168 int ret = syscall(241, rsc->mWorkers.mNativeThreadId[idx],
174 dc->mWorkers.mLaunchSignals[idx].wait();
176 dc->mWorkers.mLaunchCallback(dc->mWorkers.mLaunchData, idx);
    [all...]
  /external/valgrind/main/callgrind/
sim.c 681 int i, j, idx; \
699 idx = (set1 * L.assoc) + (set[0] & ~L.tag_mask); \
700 L.use[idx].count ++; \
701 L.use[idx].mask |= use_mask; \
702 CLG_DEBUG(6," Hit0 [idx %d] (line %#lx from %#lx): %x => %08x, count %d\n",\
703 idx, L.loaded[idx].memline, L.loaded[idx].iaddr, \
704 use_mask, L.use[idx].mask, L.use[idx].count);
877 int i, j, idx; local
    [all...]
  /external/v8/test/mjsunit/
regexp-indexof.js 36 for (var idx = 0; idx < matches.length; idx++) {
37 var from = matches[idx][0];
38 var length = matches[idx][1];
41 assertEquals(expected, result[idx], name);
42 if (re.global || idx == 0) {
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 85 String idx = (i == limit) ? "top0" : Hex.u2(limit - i); local
87 ex.addContext("stack[" + idx + "]: " +
284 int idx = stackPtr - n - 1; local
285 TypeBearer orig = stack[idx];
294 stack[idx] = type;
  /external/opencv/cv/src/
cvsegmentation.cpp 115 #define ws_push(idx,mofs,iofs) \
124 if( q[idx].last ) \
125 q[idx].last->next=node; \
127 q[idx].first = node; \
128 q[idx].last = node; \
131 #define ws_pop(idx,mofs,iofs) \
133 node = q[idx].first; \
134 q[idx].first = node->next; \
136 q[idx].last = 0; \
200 int idx = 256, t local
    [all...]
  /external/openssl/crypto/evp/
pmeth_gn.c 192 int EVP_PKEY_CTX_get_keygen_info(EVP_PKEY_CTX *ctx, int idx)
194 if (idx == -1)
196 if (idx < 0 || idx > ctx->keygen_info_count)
198 return ctx->keygen_info[idx];
  /external/quake/quake/src/WinQuake/
snd_sun.cpp 186 int idx; local
205 idx = (wbufp*bsize) & (BUFFER_SIZE - 1);
208 *p++ = dma_buffer[idx];
209 idx = (idx + 1) & (BUFFER_SIZE - 1);
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorSymbian.cpp 181 const size_t idx = (static_cast<char*>(address) - m_chunk->m_base) / m_pageSize; local
183 __ASSERT_ALWAYS(m_map.get(idx), User::Panic(KErrorStringInternalConsistency, idx));
184 __ASSERT_ALWAYS(m_map.get(idx+nPages-1), User::Panic(KErrorStringInternalConsistency, idx+nPages-1));
  /frameworks/av/media/libmedia/
MediaScanner.cpp 112 int idx = 0; local
116 while (mSkipIndex[idx] != -1) {
118 if ((len == mSkipIndex[idx])
124 startPos += mSkipIndex[idx] + 1; // extra char for the delimiter
125 idx++;
  /frameworks/base/core/jni/
android_util_StringBlock.cpp 74 jint token, jint idx)
83 const char* str8 = osb->string8At(idx, &len);
88 const char16_t* str = osb->stringAt(idx, &len);
98 jint token, jint idx)
106 const ResStringPool_span* spans = osb->styleAt(idx);
  /bionic/libc/unistd/
getopt_long.c 172 const struct option *long_options, int *idx, int short_too)
278 if (idx)
279 *idx = match;
293 const struct option *long_options, int *idx, int flags)
416 idx, short_too);
453 idx, 0);
519 const struct option *long_options, int *idx)
522 return (getopt_internal(nargc, nargv, options, long_options, idx,
532 const struct option *long_options, int *idx)
535 return (getopt_internal(nargc, nargv, options, long_options, idx,
    [all...]
  /external/openssl/crypto/asn1/
ameth_lib.c 137 const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx)
140 if (idx < 0)
142 if (idx < num)
143 return standard_methods[idx];
144 idx -= num;
145 return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
155 int idx; local
156 idx = sk_EVP_PKEY_ASN1_METHOD_find(app_methods, &tmp);
157 if (idx >= 0)
158 return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
    [all...]
  /frameworks/av/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...]
  /external/freetype/src/pshinter/
pshrec.c 158 FT_Int idx )
160 if ( (FT_UInt)idx >= mask->num_bits )
163 return mask->bytes[idx >> 3] & ( 0x80 >> ( idx & 7 ) );
170 FT_Int idx )
175 if ( (FT_UInt)idx >= mask->num_bits )
178 p = mask->bytes + ( idx >> 3 );
179 p[0] = (FT_Byte)( p[0] & ~( 0x80 >> ( idx & 7 ) ) );
186 FT_Int idx,
193 if ( idx < 0
671 FT_UInt idx; local
905 FT_Int idx[3]; local
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java 418 int idx = nonPrimitiveArgs.get(i).intValue(); local
419 int cIndex = jfunc.getArgCIndex(idx);
420 if (jfunc.getArgType(idx).isArray()) {
424 } else if (jfunc.getArgType(idx).isBuffer()) {
769 int idx = nonPrimitiveArgs.get(i).intValue(); local
770 JType argType = jfunc.getArgType(idx);
877 int idx = nonPrimitiveArgs.get(i).intValue(); local
907 int idx = stringArgs.get(i).intValue(); local
920 int idx = stringArgs.get(i).intValue(); local
944 int idx = nonPrimitiveArgs.get(i).intValue(); local
1114 int idx = nonPrimitiveArgs.get(i).intValue(); local
1159 int idx = stringArgs.get(i).intValue(); local
    [all...]
  /external/openssl/crypto/x509v3/
v3_purp.c 111 int idx; local
119 idx = X509_PURPOSE_get_by_id(id);
120 if(idx == -1) return -1;
121 pt = X509_PURPOSE_get0(idx);
141 X509_PURPOSE * X509_PURPOSE_get0(int idx)
143 if(idx < 0) return NULL;
144 if(idx < (int)X509_PURPOSE_COUNT) return xstandard + idx;
145 return sk_X509_PURPOSE_value(xptable, idx - X509_PURPOSE_COUNT);
162 int idx; local
176 int idx; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
control.h 343 void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t *obj, unsigned int idx, snd_ctl_elem_id_t *ptr);
344 unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t *obj, unsigned int idx);
345 snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t *obj, unsigned int idx);
346 unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t *obj, unsigned int idx);
347 unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t *obj, unsigned int idx);
348 const char *snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned int idx);
349 unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx);
384 int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t *obj, unsigned int idx);
430 int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t *obj, unsigned int idx);
431 long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t *obj, unsigned int idx);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
control.h 343 void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t *obj, unsigned int idx, snd_ctl_elem_id_t *ptr);
344 unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t *obj, unsigned int idx);
345 snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t *obj, unsigned int idx);
346 unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t *obj, unsigned int idx);
347 unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t *obj, unsigned int idx);
348 const char *snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned int idx);
349 unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx);
384 int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t *obj, unsigned int idx);
430 int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t *obj, unsigned int idx);
431 long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t *obj, unsigned int idx);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
control.h 343 void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t *obj, unsigned int idx, snd_ctl_elem_id_t *ptr);
344 unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t *obj, unsigned int idx);
345 snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t *obj, unsigned int idx);
346 unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t *obj, unsigned int idx);
347 unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t *obj, unsigned int idx);
348 const char *snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned int idx);
349 unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx);
384 int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t *obj, unsigned int idx);
430 int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t *obj, unsigned int idx);
431 long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t *obj, unsigned int idx);
    [all...]
  /external/freetype/src/psaux/
t1decode.c 761 FT_Int idx; local
777 idx = decoder->num_flex_vectors++;
778 if ( idx > 0 && idx < 7 )
782 (FT_Byte)( idx == 3 || idx == 6 ) );
863 /* <idx> 1 19 callothersubr */
864 /* => replace elements starting from index cvi( <idx> ) */
867 FT_Int idx; local
874 idx = Fix2Int( top[0] )
935 FT_Int idx; local
956 FT_Int idx; local
1335 FT_Int idx; local
    [all...]
  /external/kernel-headers/original/linux/
bio.h 169 #define bio_iovec_idx(bio, idx) (&((bio)->bi_io_vec[(idx)]))
194 #define __bio_kmap_atomic(bio, idx, kmtype) \
195 (kmap_atomic(bio_iovec_idx((bio), (idx))->bv_page, kmtype) + \
196 bio_iovec_idx((bio), (idx))->bv_offset)
349 static inline char *__bio_kmap_irq(struct bio *bio, unsigned short idx,
352 return bvec_kmap_irq(bio_iovec_idx(bio, idx), flags);
  /frameworks/base/services/java/com/android/server/pm/
PackageSignatures.java 107 int idx = Integer.parseInt(index); local
110 if (idx >= 0 && idx < pastSignatures.size()) {
111 Signature sig = pastSignatures.get(idx);
113 mSignatures[pos] = pastSignatures.get(idx);
128 while (pastSignatures.size() <= idx) {
132 pastSignatures.set(idx, sig);

Completed in 1510 milliseconds

<<11121314151617181920>>