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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/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);
  /external/elfutils/0.153/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];
  /external/libcxx/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 15 // float stof(const string& str, size_t *idx = 0);
16 // float stof(const wstring& str, size_t *idx = 0);
32 size_t idx = 0; local
33 assert(std::stof("10g", &idx) == 10);
34 assert(idx == 2);
35 idx = 0;
36 assert(std::stof(L"10g", &idx) == 10);
37 assert(idx == 2);
38 idx = 0;
41 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 15 // long stol(const string& str, size_t *idx = 0, int base = 10);
16 // long stol(const wstring& str, size_t *idx = 0, int base = 10);
31 size_t idx = 0; local
32 assert(std::stol("10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stol(L"10g", &idx, 16) == 16);
36 assert(idx == 2);
37 idx = 0;
40 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 15 // long long stoll(const string& str, size_t *idx = 0, int base = 10);
16 // long long stoll(const wstring& str, size_t *idx = 0, int base = 10);
31 size_t idx = 0; local
32 assert(std::stoll("10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stoll(L"10g", &idx, 16) == 16);
36 assert(idx == 2);
37 idx = 0;
40 std::stoll("", &idx);
    [all...]
stoul.pass.cpp 15 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
29 size_t idx = 0; local
30 assert(std::stoul("10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stoul(L"10g", &idx, 16) == 16);
34 assert(idx == 2);
35 idx = 0;
38 std::stoul("", &idx);
    [all...]
stoull.pass.cpp 15 // unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long long stoull(const wstring& str, size_t *idx = 0, int base = 10);
29 size_t idx = 0; local
30 assert(std::stoull("10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stoull(L"10g", &idx, 16) == 16);
34 assert(idx == 2);
35 idx = 0;
38 std::stoull("", &idx);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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 15 // float stof(const string& str, size_t *idx = 0);
16 // float stof(const wstring& str, size_t *idx = 0);
32 size_t idx = 0; local
33 assert(std::stof("10g", &idx) == 10);
34 assert(idx == 2);
35 idx = 0;
36 assert(std::stof(L"10g", &idx) == 10);
37 assert(idx == 2);
38 idx = 0;
44 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 15 // long stol(const string& str, size_t *idx = 0, int base = 10);
16 // long stol(const wstring& str, size_t *idx = 0, int base = 10);
31 size_t idx = 0; local
32 assert(std::stol("10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stol(L"10g", &idx, 16) == 16);
36 assert(idx == 2);
37 idx = 0;
40 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 15 // long long stoll(const string& str, size_t *idx = 0, int base = 10);
16 // long long stoll(const wstring& str, size_t *idx = 0, int base = 10);
31 size_t idx = 0; local
32 assert(std::stoll("10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stoll(L"10g", &idx, 16) == 16);
36 assert(idx == 2);
37 idx = 0;
40 std::stoll("", &idx);
    [all...]
stoul.pass.cpp 15 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
29 size_t idx = 0; local
30 assert(std::stoul("10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stoul(L"10g", &idx, 16) == 16);
34 assert(idx == 2);
35 idx = 0;
38 std::stoul("", &idx);
    [all...]
stoull.pass.cpp 15 // unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long long stoull(const wstring& str, size_t *idx = 0, int base = 10);
29 size_t idx = 0; local
30 assert(std::stoull("10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stoull(L"10g", &idx, 16) == 16);
34 assert(idx == 2);
35 idx = 0;
38 std::stoull("", &idx);
    [all...]
  /external/elfutils/0.153/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)
  /external/elfutils/0.153/libebl/
eblsectionname.c 87 int idx = section != SHN_XINDEX ? section : xsection; local
90 res = scnnames[idx];
93 snprintf (buf, len, "%d", idx);
  /external/elfutils/0.153/libelf/
elf_getshdrnum.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 TCHECK2(*(pptr+idx), 2);
48 if (EXTRACT_16BITS(pptr+idx) != 0x0d0a) { /* linefeed ? */
49 safeputchar(*(pptr+idx));
52 idx+=1;
  /art/runtime/mirror/
iftable-inl.h 28 const size_t idx = i * kMax + kInterface; local
29 DCHECK_EQ(Get(idx), static_cast<Object*>(nullptr));
30 Set<false>(idx, interface);

Completed in 702 milliseconds

1 2 3 4 5 6 7 8 91011>>