Searched refs:idx (Results 1 - 25 of 1910) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_decompose_tmp.h51 unsigned idx[6], i; local
66 idx[0] = GET_ELT(i);
67 POINT(idx[0]);
74 idx[0] = GET_ELT(i);
75 idx[1] = GET_ELT(i + 1);
76 LINE(flags, idx[0], idx[1]);
84 idx[1] = GET_ELT(0);
85 idx[2] = idx[
[all...]
/external/v8/test/mjsunit/compiler/
H A Dregress-469089.js9 function f(val, idx) {
10 if (idx === 1) {
/external/iptables/include/linux/netfilter/
H A Dxt_TCPOPTSTRIP.h6 #define tcpoptstrip_set_bit(bmap, idx) \
7 (bmap[(idx) >> 5] |= 1U << (idx & 31))
8 #define tcpoptstrip_test_bit(bmap, idx) \
9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_TCPOPTSTRIP.h6 #define tcpoptstrip_set_bit(bmap, idx) \
7 (bmap[(idx) >> 5] |= 1U << (idx & 31))
8 #define tcpoptstrip_test_bit(bmap, idx) \
9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
/external/libcxx/test/std/strings/string.conversions/
H A Dstoull.pass.cpp15 // 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...]
H A Dstol.pass.cpp15 // 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...]
H A Dstoll.pass.cpp15 // 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...]
H A Dstoul.pass.cpp15 // 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...]
H A Dstof.pass.cpp15 // 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)
[all...]
H A Dstod.pass.cpp12 // 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
[all...]
H A Dstold.pass.cpp12 // 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
[all...]
H A Dstoi.pass.cpp12 // 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, 1
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-732.js28 // 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])
H A Dsplice-missing-wb.js34 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/libdw/
H A Ddwarf_macro_param.c36 dwarf_macro_param (Dwarf_Macro *macro, size_t idx, Dwarf_Attribute *ret) argument
41 if (idx >= libdw_macro_nforms (macro))
44 *ret = macro->attributes[idx];
H A Ddwarf_getarange_addr.c47 size_t idx = (l + u) / 2; local
48 if (addr < aranges->info[idx].addr)
49 u = idx;
50 else if (addr > aranges->info[idx].addr
51 && addr - aranges->info[idx].addr >= aranges->info[idx].length)
52 l = idx + 1;
54 return &aranges->info[idx];
H A Ddwarf_filesrc.c38 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, argument
41 if (file == NULL || idx >= file->nfiles)
45 *mtime = file->info[idx].mtime;
48 *length = file->info[idx].length;
50 return file->info[idx].name;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DHydraulicErodeFilter.java93 int idx = y * workSize + x;
94 float wtemp = this.Kr; // * wa[idx];
95 float stemp = this.Ks; // * sa[idx];
97 wt[idx] += wtemp;
99 ga[idx] -= stemp * wt[idx];
100 st[idx] += stemp * wt[idx];
105 float a = ga[idx] + wt[idx];
[all...]
/external/iproute2/include/
H A Dll_map.h9 const char *ll_index_to_name(unsigned idx);
10 const char *ll_idx_n2a(unsigned idx, char *buf);
11 int ll_index_to_type(unsigned idx);
12 int ll_index_to_flags(unsigned idx);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js4 var idx=document.URL.indexOf("php?");
5 if (idx==-1) {
8 window.open(document.URL.substring(0,idx)+"php?fp_type="+type, "_self");
13 var idx=document.URL.indexOf("?");
15 if (idx != -1) {
16 var typeStr=document.URL.substring(idx+1, document.URL.length);
17 idx=typeStr.indexOf("=");
18 if (idx != -1) {
19 var ch=typeStr.substring(idx+1, idx
[all...]
/external/compiler-rt/test/tsan/
H A Dbench_ten_mutexes.cc14 int idx = (i % kMutex); local
16 idx = kMutex - idx - 1;
17 pthread_mutex_lock(&mtx[idx]);
18 pthread_mutex_unlock(&mtx[idx]);
/external/pdfium/core/src/fxcrt/
H A Dfx_unicode.cpp10 size_t idx = static_cast<size_t>(wch); local
11 if (idx < kTextLayoutCodePropertiesSize)
27 size_t idx = dwTemp >> 23; local
28 if (idx < kFXTextLayoutBidiMirrorSize) {
29 wch = kFXTextLayoutBidiMirror[idx];
36 size_t idx = dwTemp >> 17; local
37 if (idx < kFXTextLayoutVerticalMirrorSize)
38 wch = kFXTextLayoutVerticalMirror[idx];
51 size_t idx = dwTemp >> 23; local
52 if (idx < kFXTextLayoutBidiMirrorSiz
60 size_t idx = dwTemp >> 17; local
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-systemz-zvector-error.c57 volatile int idx; variable
61 len = __lcbb(cptr, idx); // expected-error {{no matching function}}
70 vsl = vec_permi(vsl, vsl, idx); // expected-error {{no matching function}}
79 vul = vec_permi(vul, vul, idx); // expected-error {{no matching function}}
88 vbl = vec_permi(vbl, vbl, idx); // expected-error {{no matching function}}
97 vd = vec_permi(vd, vd, idx); // expected-error {{no matching function}}
107 vsi = vec_gather_element(vsi, vui, cptrsi, idx); // expected-error {{no matching function}}
116 vui = vec_gather_element(vui, vui, cptrui, idx); // expected-error {{no matching function}}
125 vbi = vec_gather_element(vbi, vui, cptrui, idx); // expected-error {{no matching function}}
134 vsl = vec_gather_element(vsl, vul, cptrsl, idx); // expecte
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/
H A Dnamedtype.py16 def __getitem__(self, idx):
17 if idx == 0: return self.__name
18 if idx == 1: return self.__type
41 def __getitem__(self, idx): return self.__namedTypes[idx]
49 def getTypeByPosition(self, idx):
50 if idx < 0 or idx >= self.__namedTypesLen:
53 return self.__namedTypes[idx].getType()
57 idx
[all...]
/external/lldb/include/lldb/Core/
H A DFileSpecList.h111 /// \a file starting \a idx entries into the file spec list.
113 /// @param[in] idx
127 FindFileIndex (size_t idx, const FileSpec &file, bool full) const;
132 /// Gets a file from the file list. If \a idx is not a valid index,
137 /// @param[in] idx
141 /// A copy of the FileSpec object at index \a idx. If \a idx
146 GetFileSpecAtIndex (size_t idx) const;
154 /// @param[in] idx
158 /// A pointer to a contained FileSpec object at index \a idx
195 Insert(size_t idx, const FileSpec &file) argument
211 Replace(size_t idx, const FileSpec &file) argument
222 Remove(size_t idx) argument
[all...]

Completed in 412 milliseconds

1234567891011>>