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

<<31323334353637383940>>

  /external/opencv/cv/src/
cvtemplmatch.cpp 342 int idx = 0, idx2 = 0; local
481 idx = i * sum_step;
484 for( j = 0; j < result->cols; j++, idx += cn, idx2 += cn )
493 t = p0[idx+k] - p1[idx+k] - p2[idx+k] + p3[idx+k];
cvcalibinit.cpp 1453 int idx, i, k, j; local
1614 int i, idx, min_size; local
1792 int i, idx, min_size; local
    [all...]
  /external/tcpdump/
print-juniper.c 797 u_int idx, offset; local
892 for (idx = 0; idx < l2info->cookie_len; idx++) {
893 l2info->cookie[idx] = p[idx]; /* copy cookie data */
894 if (eflag) printf("%02x",p[idx]);
  /libcore/luni/src/main/java/java/net/
URLClassLoader.java 498 int idx = 0; local
502 while (idx < name.length() &&
503 ((name.charAt(idx) == '/') || (name.charAt(idx) == '\\'))) {
504 idx++;
507 if (idx > 0) {
508 name = name.substring(idx);
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatPanel.java 374 int idx = mLogCatFilters.size() - 1; local
375 mFiltersTableViewer.getTable().setSelection(idx);
955 int idx = getSelectedSavedFilterIndex(); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 312 int idx = row * width + col; local
313 mse += distance(expectedColors[idx], actualColors[idx]);
  /dalvik/vm/mterp/out/
InterpC-x86-atom.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-x86.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/astl/src/
string.cpp 588 value_type *idx = std::strstr(mData + pos, str); local
590 if (NULL == idx)
595 const std::ptrdiff_t delta = idx - mData;
  /external/chromium/third_party/libjingle/source/talk/base/
logging.cc 459 int idx = 0; local
470 len, str.c_str() + idx);
471 idx += len;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
Util.java 369 int idx = name.substring(start).indexOf(token); local
370 if (idx < 0) return false;
371 start += idx;
  /external/jdiff/src/jdiff/
HTMLReportGenerator.java 1116 int idx = title.indexOf(' '); local
1133 int idx = name.indexOf(".", 20); local
1893 int idx = type.indexOf(", "); local
2028 int idx = comment.indexOf("@first"); local
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 71 int ix, iy, ygx, idx; local
76 idx = (ix < 0) * 2 + (iy < 0) * 4;
82 idx -= ygx;
84 idx &= ((ix == 0) - 1) | ((iy == 0) - 1);
91 _y.i = iy ^ icvAtanSign[idx];
97 return (float)((_CV_ATAN_CF0*fabs(z) + _CV_ATAN_CF1)*z + icvAtanTab[idx]);
113 int j, idx[4]; local
141 idx[j] = k;
156 z0 = (float)((_CV_ATAN_CF0*fabs(z0) + _CV_ATAN_CF1)*z0 + icvAtanTab[idx[0]]);
157 z1 = (float)((_CV_ATAN_CF0*fabs(z1) + _CV_ATAN_CF1)*z1 + icvAtanTab[idx[1]])
    [all...]
  /external/openssh/
sshconnect1.c 206 try_rsa_authentication(int idx)
213 public = options.identity_keys[idx];
214 authfile = options.identity_files[idx];
  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_udp.c 351 int idx; local
369 idx = 0;
389 idx++;
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 345 int idx; local
363 idx = 0;
383 idx++;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java 451 int idx = 0; local
456 ss[idx] = new StrSegmentClause(clause, pos, pos + len - 1);
458 idx += 1;
  /external/icu4c/common/
uloc_tag.c 138 ultag_getExtlang(const ULanguageTag* langtag, int32_t idx);
150 ultag_getVariant(const ULanguageTag* langtag, int32_t idx);
158 ultag_getAttribute(const ULanguageTag* langtag, int32_t idx);
165 ultag_getExtensionKey(const ULanguageTag* langtag, int32_t idx);
168 ultag_getExtensionValue(const ULanguageTag* langtag, int32_t idx);
    [all...]
  /build/tools/zipalign/
ZipFile.h 165 ZipEntry* getEntryByIndex(int idx) const;
  /dalvik/vm/jdwp/
Jdwp.h 83 MethodId methodId; /* method in which "idx" resides */
84 u8 idx; /* relative index into code block */ member in struct:JdwpLocation
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 87 - (ACBTree *)splitnode:(NSInteger)idx;
ANTLRUnbufferedCommonTreeNodeStream.h 89 - (id) nodeAtIndex:(NSUInteger) idx;
  /external/bluetooth/bluez/audio/
telephony.h 192 int telephony_list_current_call_ind(int idx, int dir, int status, int mode,
  /external/chromium/net/tools/flip_server/
balsa_headers.h 178 size_t buffer_size(size_t idx) const { return blocks_[idx].buffer_size; }
179 size_t bytes_used(size_t idx) const { return blocks_[idx].bytes_used(); }
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_prng.h 184 int prng_is_valid(int idx);

Completed in 1575 milliseconds

<<31323334353637383940>>