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

<<11121314151617181920>>

  /external/chromium/third_party/libevent/
poll.c 105 int i, idx; local
109 idx = pop->idxplus1_by_fd[i]-1;
110 if (idx < 0)
112 assert(pop->event_set[idx].fd == i);
113 if (pop->event_set[idx].events & POLLIN) {
114 ev = pop->event_r_back[idx];
119 if (pop->event_set[idx].events & POLLOUT) {
120 ev = pop->event_w_back[idx];
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeListItem.java 101 int idx = typeIds.indexOf(one); local
103 " " + Hex.u2(idx) + " // " + one.toHuman());
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_ansi_x963_import.c 70 /* determine the idx */
80 /* set the idx */
81 key->idx = x;
88 key->idx = -1;
  /external/icu4c/i18n/
cpdtrans.h 109 * @param idx index into chain, from 0 to <code>getCount() - 1</code>
112 virtual const Transliterator& getTransliterator(int32_t idx) const;
156 virtual void handleTransliterate(Replaceable& text, UTransPosition& idx,
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 250 unsigned idx; member in class:__anon8930::MachinePHIiter
254 : PHI(P), idx(1) {}
256 : PHI(P), idx(PHI->getNumOperands()) {}
258 MachinePHIiter &operator++() { idx += 2; return *this; }
259 bool operator==(const MachinePHIiter& x) const { return idx == x.idx; }
261 unsigned getIncomingValue() { return PHI->getOperand(idx).getReg(); }
263 return PHI->getOperand(idx+1).getMBB();
LocalStackSlotAllocation.cpp 48 int64_t LocalOffset; // Local offset of the frame idx referenced
279 for (unsigned idx = 0, e = MI->getNumOperands(); idx != e; ++idx) {
282 if (MI->getOperand(idx).isFI()) {
283 int FrameIdx = MI->getOperand(idx).getIndex();
316 int64_t InstrOffset = TRI->getFrameIndexInstrOffset(MI, idx);
  /external/opencv/cxcore/src/
cxarray.cpp 761 int idx; local
772 for( idx = 0; idx < mat->hashsize; idx++ )
773 if( mat->hashtable[idx] )
775 node = iterator->node = (CvSparseNode*)mat->hashtable[idx];
779 iterator->curidx = idx;
789 icvGetNodePtr( CvSparseMat* mat, const int* idx, int* _type,
807 int t = idx[i];
828 if( idx[i] != nodeidx[i]
873 CV_MEMCPY_INT( CV_NODE_IDX(mat,node), idx, mat->dims ); local
2095 int idx[] = { y, x }; local
2137 int idx[] = { z, y, x }; local
2263 int idx[] = { y, x }; local
2292 int idx[] = { z, y, x }; local
2405 int idx[] = { y, x }; local
2440 int idx[] = { z, y, x }; local
2553 int idx[] = { y, x }; local
2577 int idx[] = { z, y, x }; local
2674 int idx[] = { y, x }; local
2701 int idx[] = { z, y, x }; local
    [all...]
  /external/openssl/crypto/ecdsa/
ecdsa.h 228 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg);
229 void *ECDSA_get_ex_data(EC_KEY *d, int idx);
  /external/openssl/crypto/txt_db/
txt_db.c 196 OPENSSL_STRING *TXT_DB_get_by_index(TXT_DB *db, int idx, OPENSSL_STRING *value)
201 if (idx >= db->num_fields)
206 lh=db->index[idx];
220 LHASH_OF(OPENSSL_STRING) *idx;
230 if ((idx=(LHASH_OF(OPENSSL_STRING) *)lh_new(hash,cmp)) == NULL)
240 if ((r=lh_OPENSSL_STRING_insert(idx,r)) != NULL)
245 lh_OPENSSL_STRING_free(idx);
250 db->index[field]=idx;
  /external/openssl/include/openssl/
ecdsa.h 228 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg);
229 void *ECDSA_get_ex_data(EC_KEY *d, int idx);
  /external/valgrind/tsan/
suppressions.cc 166 size_t idx = line.find(':'); local
167 PARSER_CHECK(idx != string::npos, "expected ':' in tools line");
168 string s1 = line.substr(0, idx);
169 string s2 = line.substr(idx + 1);
188 size_t idx = line.find(':'); local
189 PARSER_CHECK(idx != string::npos, "expected ':' in stack trace line");
190 string s1 = line.substr(0, idx);
191 string s2 = line.substr(idx + 1);
  /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;
  /external/aac/libFDK/include/
fixpoint_math.h 122 UINT idx=(y>>26)-16; local
125 UINT t=nfrac*sqrt_tab[idx]+frac*sqrt_tab[idx+1];
150 UINT idx=(y>>26)-16; local
153 UINT t=nfrac*sqrt_tab[idx]+frac*sqrt_tab[idx+1];
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 98 reference operator[](unsigned idx) {
99 assert(Begin + idx < End);
100 return Begin[idx];
102 const_reference operator[](unsigned idx) const {
103 assert(Begin + idx < End);
104 return Begin[idx];
  /external/dropbear/libtomcrypt/src/modes/lrw/
lrw_test.c 72 int idx, err, x;
76 idx = find_cipher("aes");
77 if (idx == -1) {
78 idx = find_cipher("rijndael");
79 if (idx == -1) {
86 if ((err = lrw_start(idx, tests[x].IV, tests[x].key, 16, tests[x].tweak, 0, &lrw)) != CRYPT_OK) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
SQL_Results.java 259 loop: for (int idx=0; idx < builds[0].length(); idx++) {
260 char ch = builds[0].charAt(idx);
262 if (idx == builds[i].length()) {
265 if (builds[i].charAt(idx) != ch) {
  /external/jdiff/src/jdiff/
APIComparator.java 59 int idx = Collections.binarySearch(newAPI.packages_, oldPkg); local
60 if (idx < 0) {
80 differs += 2.0 * comparePackages(oldPkg, (PackageAPI)(newAPI.packages_.get(idx)));
88 int idx = Collections.binarySearch(oldAPI.packages_, newPkg); local
89 if (idx < 0) {
166 int idx = Collections.binarySearch(newPkg.classes_, oldClass); local
167 if (idx < 0) {
186 differs += 2.0 * compareClasses(oldClass, (ClassAPI)(newPkg.classes_.get(idx)), pkgDiff);
194 int idx = Collections.binarySearch(oldPkg.classes_, newClass); local
195 if (idx < 0)
374 int idx = Collections.binarySearch(newClass.ctors_, oldCtor); local
423 int idx = Collections.binarySearch(oldClass.ctors_, newCtor); local
464 int idx = -1; local
524 int idx = -1; local
694 int idx = Collections.binarySearch(newClass.fields_, oldField); local
790 int idx = Collections.binarySearch(oldClass.fields_, newField); local
    [all...]
  /hardware/ti/omap4xxx/camera/
NV12_resize.c 52 mmUint16 idx,idy, idxC; local
92 idx = i_img_ptr->uWidth;
96 if (idx < 1 || idy < 1 || i_img_ptr->uStride < 1)
98 ALOGE("idx or idy less then 1 idx = %d idy = %d stride = %d", idx, idy, i_img_ptr->uStride);
103 resizeFactorX = ((idx-1)<<9) / codx;
144 //in = *(inImgPtrY + (y)*idx + (x));
152 //in = *(inImgPtrY + (y)*idx + (x+1));
159 //in = *(inImgPtrY + (y+1)*idx + (x))
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 43 AllocationState(const Expr *E, unsigned int Idx, SymbolRef R) :
44 AllocatorIdx(Idx),
290 unsigned idx = InvalidIdx; local
298 idx = getTrackedFunctionIndex(funName, true);
299 if (idx != InvalidIdx) {
300 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
329 idx = getTrackedFunctionIndex(funName, false);
330 if (idx == InvalidIdx)
334 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
354 if (!AS && FunctionsToTrack[idx].Kind != ValidAPI)
452 unsigned idx = getTrackedFunctionIndex(funName, true); local
    [all...]
  /external/icu4c/common/
ucasemap.c 277 int32_t prev, titleStart, titleLimit, idx, destIndex, length; local
305 idx=ubrk_first(csm->iter);
307 idx=ubrk_next(csm->iter);
309 if(idx==UBRK_DONE || idx>srcLength) {
310 idx=srcLength;
326 if(prev<idx) {
329 U8_NEXT(src, titleLimit, idx, c);
334 if(titleLimit==idx) {
341 U8_NEXT(src, titleLimit, idx, c)
    [all...]
  /external/openssl/crypto/rc4/asm/
rc4-x86_64.pl 428 $idx="%r8";
445 mov OPENSSL_ia32cap_P(%rip),$idx#d
446 bt \$20,$idx#d # RC4_CHAR?
457 xor $idx,$idx
461 add ($inp,$len,1),$idx#b
462 add %r10b,$idx#b
464 mov ($dat,$idx,4),%r11d
466 mov %r10d,($dat,$idx,4)
479 xor $idx,$id
    [all...]
  /external/webrtc/src/system_wrappers/source/
trace_impl.cc 465 WebRtc_UWord16 idx = _nextFreeIdx[_activeQueue]; local
468 _level[_activeQueue][idx] = level;
469 _length[_activeQueue][idx] = length;
470 memcpy(_messageQueue[_activeQueue][idx], traceMessage, length);
479 warning_msg, _length[_activeQueue][idx]);
532 for(WebRtc_UWord16 idx = 0; idx <localNextFreeIdx; idx++)
534 TraceLevel localLevel = _level[localQueueActive][idx];
537 _callback->Print(localLevel, _messageQueue[localQueueActive][idx],
    [all...]
  /dalvik/vm/reflect/
Annotation.cpp 327 u4 idx; local
407 idx = readUnsignedInt(ptr, valueArg, false);
409 pValue->value.i = idx;
411 elemObj = (Object*) dvmResolveString(clazz, idx);
419 idx = readUnsignedInt(ptr, valueArg, false);
421 pValue->value.i = idx;
423 elemObj = (Object*) dvmResolveClass(clazz, idx, true);
428 const char* desc = dexStringByTypeIdx(pDexFile, idx);
438 idx = readUnsignedInt(ptr, valueArg, false);
440 pValue->value.i = idx;
1663 u4 idx; local
1969 u4 idx; local
2073 u4 idx; local
2145 u4 idx; local
    [all...]
  /external/guava/guava/lib/
jdiff.jar 
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 312 int idx = row * width + col; local
313 argb2yuv(argb[idx], yuvColor);
314 yuv[idx] = yuvColor[0];
327 int idx = row * width + col; local
328 argb2yuv(argb[idx], yuvColor0);
329 argb2yuv(argb[idx + 1], yuvColor1);
330 int offset = idx / 2 * 4;
363 int idx = row * width + col; local
364 mse += distance(expColors[idx], actualColors[idx]);
    [all...]

Completed in 1177 milliseconds

<<11121314151617181920>>