HomeSort by relevance Sort by last modified time
    Searched defs:idx (Results 1 - 25 of 865) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_getarange_addr.c 70 size_t idx = (l + u) / 2; local
71 if (addr < aranges->info[idx].addr)
72 u = idx;
73 else if (addr > aranges->info[idx].addr
74 && addr - aranges->info[idx].addr >= aranges->info[idx].length)
75 l = idx + 1;
77 return &aranges->info[idx];
dwarf_getsrc_die.c 72 size_t idx = (l + u) / 2; local
73 if (addr < lines->info[idx].addr)
74 u = idx;
75 else if (addr > lines->info[idx].addr || lines->info[idx].end_sequence)
76 l = idx + 1;
78 return &lines->info[idx];
dwarf_decl_file.c 64 Dwarf_Sword idx = 0; local
67 &attr_mem), &idx) != 0)
71 if (idx == 0)
100 if (idx >= cu->files->nfiles)
106 return cu->files->info[idx].name;
  /external/v8/test/mjsunit/regress/
regress-732.js 28 // idx is a valid array index but is too big to be cached in hash field.
29 var idx = 10000000; variable
36 obj[idx] = "obj" + idx;
39 var str = "" + idx;
46 assertEquals(obj[str], obj[idx])
splice-missing-wb.js 34 for (var i = 0; i < a.length; i++) a[i] = {idx:i};
42 a[0] = {idx:0};
52 // Try accessing a[0].idx. It will segfault if write-barrier was accidentally
54 assertEquals(0, a[0].idx);
55 assertEquals(1, a[1].idx);
56 assertEquals(202, a[2].idx);
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/string.conversions/
stod.pass.cpp 12 // double stod(const string& str, size_t *idx = 0);
13 // double stod(const wstring& str, size_t *idx = 0);
29 size_t idx = 0; local
30 assert(std::stod("10g", &idx) == 10);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stod(L"10g", &idx) == 10);
34 assert(idx == 2);
37 assert(std::stod("1.e60", &idx) == 1.e60);
38 assert(idx == 5)
    [all...]
stof.pass.cpp 12 // float stof(const string& str, size_t *idx = 0);
13 // float stof(const wstring& str, size_t *idx = 0);
29 size_t idx = 0; local
30 assert(std::stof("10g", &idx) == 10);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stof(L"10g", &idx) == 10);
34 assert(idx == 2);
35 idx = 0;
38 assert(std::stof("1.e60", &idx) == INFINITY)
    [all...]
stoi.pass.cpp 12 // int stoi(const string& str, size_t *idx = 0, int base = 10);
13 // int stoi(const wstring& str, size_t *idx = 0, int base = 10);
28 size_t idx = 0; local
29 assert(std::stoi("10g", &idx, 16) == 16);
30 assert(idx == 2);
31 idx = 0;
32 assert(std::stoi(L"10g", &idx, 16) == 16);
33 assert(idx == 2);
38 std::stoi("0x100000000", &idx, 16);
46 std::stoi(L"0x100000000", &idx, 16)
    [all...]
stol.pass.cpp 12 // long stol(const string& str, size_t *idx = 0, int base = 10);
13 // long stol(const wstring& str, size_t *idx = 0, int base = 10);
28 size_t idx = 0; local
29 assert(std::stol("10g", &idx, 16) == 16);
30 assert(idx == 2);
31 idx = 0;
32 assert(std::stol(L"10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
37 std::stol("", &idx);
    [all...]
stold.pass.cpp 12 // long double stold(const string& str, size_t *idx = 0);
13 // long double stold(const wstring& str, size_t *idx = 0);
31 size_t idx = 0; local
32 assert(std::stold("10g", &idx) == 10);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stold(L"10g", &idx) == 10);
36 assert(idx == 2);
39 assert(std::stold("1.e60", &idx) == 1.e60L);
40 assert(idx == 5)
    [all...]
stoll.pass.cpp 12 // long long stoll(const string& str, size_t *idx = 0, int base = 10);
13 // long long stoll(const wstring& str, size_t *idx = 0, int base = 10);
28 size_t idx = 0; local
29 assert(std::stoll("10g", &idx, 16) == 16);
30 assert(idx == 2);
31 idx = 0;
32 assert(std::stoll(L"10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
37 std::stoll("", &idx);
    [all...]
stoul.pass.cpp 12 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
13 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
26 size_t idx = 0; local
27 assert(std::stoul("10g", &idx, 16) == 16);
28 assert(idx == 2);
29 idx = 0;
30 assert(std::stoul(L"10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
35 std::stoul("", &idx);
    [all...]
stoull.pass.cpp 12 // unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
13 // unsigned long long stoull(const wstring& str, size_t *idx = 0, int base = 10);
26 size_t idx = 0; local
27 assert(std::stoull("10g", &idx, 16) == 16);
28 assert(idx == 2);
29 idx = 0;
30 assert(std::stoull(L"10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
35 std::stoull("", &idx);
    [all...]
  /dalvik/vm/
PointerSet.h 76 int idx; local
77 if (!dvmPointerSetHas(pSet, ptr, &idx))
78 idx = -1;
79 return idx;
BitVector.h 38 u4 idx; member in struct:BitVectorIterator
  /external/elfutils/libdwfl/
dwfl_validate_address.c 60 int idx = INTUSE(dwfl_module_relocate_address) (mod, &relative); local
61 if (idx < 0)
74 if (offset_idx != idx)
dwfl_module_getsrc.c 73 size_t idx = (l + u) / 2; local
74 if (addr < cu->die.cu->lines->info[idx].addr)
75 u = idx;
76 else if (addr > cu->die.cu->lines->info[idx].addr)
77 l = idx + 1;
79 return &cu->lines->idx[idx];
91 return &cu->lines->idx[u - 1];
  /external/elfutils/libebl/
eblsectionname.c 87 int idx = section != SHN_XINDEX ? section : xsection; local
90 res = scnnames[idx];
93 snprintf (buf, len, "%d", idx);
  /external/elfutils/libelf/
elf_getshnum.c 68 int idx; local
79 idx = elf->state.elf.scns_last->cnt;
80 if (idx != 0
87 *dst = 1 + elf->state.elf.scns_last->data[idx - 1].index;
  /external/tcpdump/
print-sip.c 38 u_int idx; local
46 for (idx = 0; idx < len; idx++) {
47 if (EXTRACT_16BITS(pptr+idx) != 0x0d0a) { /* linefeed ? */
48 safeputchar(*(pptr+idx));
51 idx+=1;
  /external/elfutils/backends/
ia64_regs.c 171 const size_t idx = regno - (334 + 8); local
173 if (idx == 1 || idx == 2)
175 if (idx < sizeof named_ar / sizeof named_ar[0]
176 && named_ar[idx][0] != '\0')
177 return stpcpy (name, named_ar[idx]) + 1 - name;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MemberIdsSection.java 37 int idx = 0; local
40 ((MemberIdItem) i).setIndex(idx);
41 idx++;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRIntArray.h 38 NSInteger idx; variable
69 @property (assign) NSInteger idx; variable
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_at.c 85 UINT16 idx; local
90 for (idx = 0; p_cb->p_at_tbl[idx].p_cmd[0] != 0; idx++)
92 if (!utl_strucmp(p_cb->p_at_tbl[idx].p_cmd, p_cb->p_cmd_buf))
99 if (p_cb->p_at_tbl[idx].p_cmd[0] != 0)
102 p_arg = p_cb->p_cmd_buf + strlen(p_cb->p_at_tbl[idx].p_cmd);
139 if ((arg_type & p_cb->p_at_tbl[idx].arg_type) != 0)
143 p_cb->p_at_tbl[idx].fmt == BTA_AG_AT_INT)
146 if (int_arg < (INT16) p_cb->p_at_tbl[idx].min |
    [all...]
  /external/chromium/googleurl/src/
url_file.h 56 int idx = begin_index; local
57 while (idx < spec_len && !IsURLSlash(spec[idx]))
58 idx++;
59 return idx;

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 91011>>