| /external/llvm/include/llvm/ |
| InstrTypes.h | 51 virtual BasicBlock *getSuccessorV(unsigned idx) const = 0; 53 virtual void setSuccessorV(unsigned idx, BasicBlock *B) = 0; 65 BasicBlock *getSuccessor(unsigned idx) const { 66 return getSuccessorV(idx); 71 void setSuccessor(unsigned idx, BasicBlock *B) { 72 setSuccessorV(idx, B); [all...] |
| /external/opencv/cxcore/src/ |
| cxswitcher.cpp | 407 int j = 0, idx = 0; local 425 idx = (func_tab[i].search_modules / (1<<j*4)) % CV_PLUGIN_MAX; 427 if( plugins[idx].handle != 0 && name_start ) 437 addr = (uchar*)GetProcAddress( plugins[idx].handle, name ); 451 func_tab[i].loaded_from = idx; // store index of the module 454 ICV_PRINTF(("%s: \t%s\n", name, plugins[idx].name ));
|
| /external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
| driver_nl80211.c | 278 struct wpa_driver_nl80211_data *drv, int idx, u32 value) 285 iwr.u.param.flags = idx & IW_AUTH_INDEX; 292 idx, value, strerror(errno)); 2462 int idx, mode_is_set; local [all...] |
| /frameworks/base/core/java/android/widget/ |
| AppSecurityPermissions.java | 470 int idx = Collections.binarySearch(grpPermsList, pInfo, permComparator); local 471 if(localLOGV) Log.i(TAG, "idx="+idx+", list.size="+grpPermsList.size()); 472 if (idx < 0) { 473 idx = -idx-1; 474 grpPermsList.add(idx, pInfo);
|
| /frameworks/base/graphics/java/android/renderscript/ |
| Mesh.java | 353 int[] idx = new int[mIndexTypes.size()]; local 384 idx[ct] = allocID; 388 int id = mRS.nMeshCreate(vtx, idx, prim); 509 int[] idx = new int[mIndexTypes.size()]; local 528 idx[ct] = allocID; 532 int id = mRS.nMeshCreate(vtx, idx, prim);
|
| /frameworks/base/services/java/com/android/server/ |
| IntentResolver.java | 486 for (int idx=0; idx<N; idx++) { 487 if (list.get(idx) == object) { 488 list.remove(idx); 489 idx--;
|
| /libcore/luni/src/main/java/java/util/concurrent/ |
| ConcurrentSkipListMap.java | 872 Index<K,V> idx = null; local 888 Index<K,V> idx = null; local 1441 Index<K,V> idx = null; local 1529 Index<K,V> idx = null; local [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
| MoveGesture.java | 364 int idx = indices.get(i); 365 if (idx >= index) { 366 indices.set(i, idx + 1); 379 int idx = indices.get(i); 380 if (idx >= previousIndex) { 381 indices.set(i, idx - 1); [all...] |
| /dalvik/dx/src/com/android/dx/cf/code/ |
| ByteOps.java | 562 int idx = (Character.digit(s.charAt(i), 16) << 4) | typedefs 610 OPCODE_INFO[idx] = info; 611 OPCODE_NAMES[idx] = s.substring(i, endAt);
|
| /dalvik/dx/src/com/android/dx/cf/direct/ |
| CodeObserver.java | 79 int idx, Type type, int value) { 80 String idxStr = (length <= 3) ? Hex.u1(idx) : Hex.u2(idx);
|
| /dalvik/vm/mterp/out/ |
| InterpC-armv5te-vfp.cpp | 147 static inline s8 getLongFromArray(const u4* ptr, int idx) 152 ptr += idx; 158 memcpy(&val, &ptr[idx], 8); 164 static inline void putLongToArray(u4* ptr, int idx, s8 val) 169 ptr += idx; 174 memcpy(&ptr[idx], &val, 8); 179 static inline double getDoubleFromArray(const u4* ptr, int idx) 184 ptr += idx; 190 memcpy(&dval, &ptr[idx], 8); 196 static inline void putDoubleToArray(u4* ptr, int idx, double dval [all...] |
| InterpC-armv5te.cpp | 147 static inline s8 getLongFromArray(const u4* ptr, int idx) 152 ptr += idx; 158 memcpy(&val, &ptr[idx], 8); 164 static inline void putLongToArray(u4* ptr, int idx, s8 val) 169 ptr += idx; 174 memcpy(&ptr[idx], &val, 8); 179 static inline double getDoubleFromArray(const u4* ptr, int idx) 184 ptr += idx; 190 memcpy(&dval, &ptr[idx], 8); 196 static inline void putDoubleToArray(u4* ptr, int idx, double dval [all...] |
| InterpC-armv7-a-neon.cpp | 147 static inline s8 getLongFromArray(const u4* ptr, int idx) 152 ptr += idx; 158 memcpy(&val, &ptr[idx], 8); 164 static inline void putLongToArray(u4* ptr, int idx, s8 val) 169 ptr += idx; 174 memcpy(&ptr[idx], &val, 8); 179 static inline double getDoubleFromArray(const u4* ptr, int idx) 184 ptr += idx; 190 memcpy(&dval, &ptr[idx], 8); 196 static inline void putDoubleToArray(u4* ptr, int idx, double dval [all...] |
| InterpC-armv7-a.cpp | 147 static inline s8 getLongFromArray(const u4* ptr, int idx) 152 ptr += idx; 158 memcpy(&val, &ptr[idx], 8); 164 static inline void putLongToArray(u4* ptr, int idx, s8 val) 169 ptr += idx; 174 memcpy(&ptr[idx], &val, 8); 179 static inline double getDoubleFromArray(const u4* ptr, int idx) 184 ptr += idx; 190 memcpy(&dval, &ptr[idx], 8); 196 static inline void putDoubleToArray(u4* ptr, int idx, double dval [all...] |
| /external/compiler-rt/lib/asan/tests/ |
| asan_noinst_test.cc | 62 size_t idx = my_rand(&seed) % vec.size(); local 63 void *ptr = vec[idx]; 64 vec[idx] = vec.back();
|
| /external/elfutils/libcpu/ |
| i386_parse.c | 245 int idx; member in struct:suffix 252 int idx; member in struct:argstring 2807 int idx = 0; local [all...] |
| /external/iproute2/tc/ |
| tc_qdisc.c | 178 int idx; local 182 if ((idx = ll_name_to_index(d)) == 0) { 186 req.t.tcm_ifindex = idx;
|
| /external/jdiff/src/jdiff/ |
| HTMLIndexes.java | 469 Index idx = new Index(cls.name_, 1, pkgName, cls.isInterface_); local 470 idx.doc_ = cls.doc_; // Used for checking @since 471 classNames.add(idx); 569 Index idx = new Index(className, 1, pkgName, ctor.type_); local 570 idx.doc_ = ctor.doc_; // Used for checking @since 571 ctorNames.add(idx); 668 Index idx = new Index(meth.name_, 1, pkgName, className, meth.getSignature()); local 669 idx.doc_ = meth.doc_; // Used for checking @since 670 methNames.add(idx); 784 Index idx = new Index(fld.name_, 1, pkgName, className, fld.type_, true); local [all...] |
| /external/linux-tools-perf/util/ui/browsers/ |
| annotate.c | 28 u32 idx; member in struct:objdump_line_rb_node 128 self->b.top_idx = self->b.index = rbpos->idx; 291 rbpos->idx = browser.b.nr_entries++;
|
| /external/llvm/include/llvm/Analysis/ |
| BlockFrequencyImpl.h | 126 unsigned idx = RPO[BB]; local 127 assert(idx); 128 std::advance(I, idx - 1);
|
| /external/openssl/ssl/ |
| t1_enc.c | 256 int len,i,idx,count; local 264 for (idx=0;ssl_get_handshake_digest(idx,&m,&md);idx++) { 272 for (idx=0;ssl_get_handshake_digest(idx,&m,&md);idx++) { 941 int idx; local 954 for (idx=0;ssl_get_handshake_digest(idx,&mask,&md);idx++ [all...] |
| /external/srtp/crypto/test/ |
| cipher_driver.c | 264 uint8_t idx[16] = { local 280 status = cipher_set_iv(c, idx); 290 status = cipher_set_iv(c, idx);
|
| /libcore/luni/src/main/java/java/lang/ |
| String.java | 267 int idx = offset; local 271 while (idx < last) { 272 byte b0 = d[idx++]; 293 if (idx + utfCount > last) { 301 byte b = d[idx++]; 304 idx--; // Put the input char back 1319 int idx = _offset; local [all...] |
| /libcore/luni/src/main/java/libcore/net/url/ |
| FtpURLConnection.java | 142 int idx = url.getFile().lastIndexOf('/'); local 144 if (idx > 0) { 145 String dir = url.getFile().substring(0, idx);
|
| /ndk/sources/host-tools/sed-4.2.1/sed/ |
| execute.c | 1671 int idx, prev_idx; \/* index in the input line. *\/ local [all...] |