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

<<31323334353637383940>>

  /external/icu4c/samples/cal/
cal.c 307 int32_t idx = (i + firstIndex) % arrayLength; local
308 int32_t size = 1 + udat_getSymbols(fmt, type, idx + lowestIndex, NULL, 0, status);
310 array[idx] = (UChar *) malloc(sizeof(UChar) * size);
313 udat_getSymbols(fmt, type, idx + lowestIndex, array[idx], size, status);
  /external/linux-tools-perf/
builtin-test.c 579 nr_events[evsel->idx]++;
583 if (nr_events[evsel->idx] != expected_nr_events[evsel->idx]) {
585 expected_nr_events[evsel->idx],
586 event_name(evsel), nr_events[evsel->idx]);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 525 unsigned idx = 0;
527 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) {
533 Asm->OutStreamer.AddComment(">> Call Site " + Twine(idx) + " <<");
534 Asm->OutStreamer.AddComment(" On exception at call site "+Twine(idx));
536 Asm->EmitULEB128(idx);
  /external/openssh/openbsd-compat/
bsd-snprintf.c 685 int idx; local
743 idx = (int) ((temp -intpart +0.05)* 10.0);
744 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
745 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
747 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
758 idx = (int) ((temp -fracpart +0.05)* 10.0);
759 /* idx = (int) ((((temp/10) -fracpart) +0.05) *10); */
760 /* printf ("%lf, %lf, %ld\n", temp, fracpart, idx ); */
762 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
  /external/openssl/crypto/ocsp/
ocsp.h 441 OCSP_SINGLERESP *OCSP_resp_get0(OCSP_BASICRESP *bs, int idx);
495 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx);
506 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx);
517 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx);
528 void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit, int *idx);
  /external/openssl/include/openssl/
ocsp.h 441 OCSP_SINGLERESP *OCSP_resp_get0(OCSP_BASICRESP *bs, int idx);
495 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx);
506 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx);
517 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx);
528 void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit, int *idx);
  /external/wpa_supplicant_8/wpa_supplicant/
ibss_rsn.c 265 const u8 *addr, int idx, u8 *key, size_t key_len)
275 __func__, alg, MAC2STR(addr), idx);
278 __func__, alg, idx);
282 if (idx == 0) {
294 return wpa_drv_set_key(ibss_rsn->wpa_s, alg, addr, idx,
  /frameworks/compile/linkloader/include/impl/
ELFObject.hxx 108 size_t idx = getSectionHeaderTable()->getByName(str)->getIndex(); local
109 return stab[idx];
635 size_t idx = (size_t)sym->getSectionIndex(); local
636 switch (idx) {
638 if ((*shtab)[idx]->getType() == SHT_NOBITS) {
  /frameworks/native/libs/utils/
ZipFileRO.cpp 452 ZipEntryRO ZipFileRO::findEntryByIndex(int idx) const
454 if (idx < 0 || idx >= mNumEntries) {
455 ALOGW("Invalid index %d\n", idx);
461 if (idx-- == 0)
  /hardware/ti/wlan/mac80211/ti-utils/
nvs.c 412 unsigned short idx; local
422 for (idx = 0; idx < len; idx++) {
423 write(fd, &(buf[idx]), 1);
  /bionic/libc/bionic/
dlmalloc.c 2808 bindex_t idx; local
3882 bindex_t idx; local
4308 bindex_t idx; local
4749 bindex_t idx; local
    [all...]
  /external/libffi/src/
dlmalloc.c 2641 bindex_t idx; local
3663 bindex_t idx; local
4089 bindex_t idx; local
4496 bindex_t idx; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 2651 bindex_t idx; local
3673 bindex_t idx; local
4099 bindex_t idx; local
4506 bindex_t idx; local
    [all...]
  /external/openssl/crypto/bn/asm/
x86_64-mont5.pl 40 # int idx); # 0 to 2^5-1, "index" in $bp holding
42 # in such manner that b[0] is $bp[idx],
43 # b[1] is [2^5+idx], etc.
832 my ($inp,$num,$tbl,$idx)=$win64?("%rcx","%rdx","%r8", "%r9") : # Win64 order
845 lea ($tbl,$idx,8),$tbl
870 mov $idx,%r11
871 shr \$`log($N/8)/log(2)`,$idx
873 not $idx
875 and \$`2**5/($N/8)-1`,$idx # 5 is "window size"
877 movq 0(%rax,$idx,8),%xmm4 # set of masks denoting whic
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp 113 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
114 Value *Removed = getIncomingValue(Idx);
121 std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx);
122 std::copy(block_begin() + Idx + 1, block_end(), block_begin() + Idx);
549 BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
550 return getSuccessor(idx);
555 void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
556 return setSuccessor(idx, B)
3187 unsigned idx = i.getCaseIndex(); local
    [all...]
  /external/opencv/cv/src/
cvhaar.cpp 669 int idx = 0; local
672 CvHidHaarTreeNode* node = classifier->node + idx;
681 idx = sum < t ? node->left : node->right;
683 while( idx > 0 );
684 return classifier->alpha[-idx];
1278 int idx = *(int*)cvGetSeqElem( idx_seq, i ); local
1314 int idx = *(int*)cvGetSeqElem( idx_seq, i ); local
1436 int idx = *(int*)cvGetSeqElem( idx_seq, i ); local
    [all...]
  /external/iptables/libiptc/
libiptc.c 337 unsigned int *idx, struct xtc_handle *handle,
390 *idx = pos;
439 iptcc_bsearch_chain_index(const char *name, unsigned int *idx,
442 return __iptcc_bsearch_chain_index(name, 0, idx, handle, BSEARCH_NAME);
448 iptcc_bsearch_chain_offset(unsigned int offset, unsigned int *idx,
459 pos = __iptcc_bsearch_chain_index(NULL, offset, idx, handle,
613 unsigned int idx, idx2; local
615 index_ptr = iptcc_bsearch_chain_index(c->name, &idx, h);
632 if (idx != idx2) {
638 idx, c2->name)
    [all...]
  /external/iproute2/ip/
iproute.c 936 int idx; local
941 if ((idx = ll_name_to_index(d)) == 0) {
945 addattr32(&req.n, sizeof(req), RTA_OIF, idx);
1178 int idx; local
1359 int idx; local
    [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 769 int idx = sidx ? sidx[i] : i; local
770 ivecs.data.ptr[i] = _inputs->data.ptr + idx*_inputs->step;
771 ovecs.data.ptr[i] = _outputs->data.ptr + idx*_outputs->step;
774 int si = sw_count == count ? i : idx;
933 int idx = iter % count; local
935 double sweight = sw ? count*sw[idx] : 1.;
939 if( idx == 0 )
956 idx = _idx->data.i[idx];
960 const float* x0data = x0.data.fl[idx];
    [all...]
  /external/openssl/crypto/x509/
x509_vfy.c 1932 int idx; local
    [all...]
  /external/valgrind/main/coregrind/
m_signals.c 1895 Int idx; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-main.c 1113 Int idx = VG_DARWIN_SYSNO_INDEX(syscallno); local
    [all...]
  /dalvik/vm/oo/
Class.cpp 506 int idx = 0; local
517 ALOGI(" %2d: type=%s %s %p", idx, kindStr, cpe->fileName, cpe->ptr);
525 idx++;
660 int idx, count; local
696 idx = 0;
718 cpe[idx].kind = kCpeLastEntry;
719 cpe[idx].fileName = NULL;
720 cpe[idx].ptr = NULL;
727 cpe[idx] = tmp;
728 idx++
3054 int idx = superIfCount; local
    [all...]
  /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/
PerformanceResults.java 271 int idx = this.allBuildNames.length-1; local
272 this.name = this.allBuildNames[idx];
274 loop: while (idx-- >= 0) {
286 this.name = this.allBuildNames[idx];
671 int idx = n-1; local
672 String lastBuild = this.allBuildNames[idx--];
674 lastBuild = this.allBuildNames[idx--];
790 // int idx = this.allBuildNames.length-1;
791 // String lastBuild = this.allBuildNames[idx--];
793 // lastBuild = this.allBuildNames[idx--]
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 132 for (unsigned idx = 0, e = UniqueOperandCommands.size(); idx != e; ++idx)
133 if (UniqueOperandCommands[idx] == Command) {
134 InstIdxs[i] = idx;
135 InstrsForCase[idx] += ", ";
136 InstrsForCase[idx] += Inst->CGI->TheDef->getName();
306 unsigned Idx;
309 Idx = ~0U;
314 Idx = StringTable.get("")
    [all...]

Completed in 2171 milliseconds

<<31323334353637383940>>