/external/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_decompose_tmp.h | 51 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 D | regress-469089.js | 9 function f(val, idx) { 10 if (idx === 1) {
|
/external/iptables/include/linux/netfilter/ |
H A D | xt_TCPOPTSTRIP.h | 6 #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 D | xt_TCPOPTSTRIP.h | 6 #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 D | 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...] |
H A D | 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...] |
H A D | 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...] |
H A D | 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...] |
H A D | 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) [all...] |
H A D | 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 [all...] |
H A D | 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 [all...] |
H A D | 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, 1 [all...] |
/external/v8/test/mjsunit/regress/ |
H A D | 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])
|
H A D | 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/libdw/ |
H A D | dwarf_macro_param.c | 36 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 D | dwarf_getarange_addr.c | 47 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 D | dwarf_filesrc.c | 38 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 D | HydraulicErodeFilter.java | 93 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 D | ll_map.h | 9 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 D | Fingerprints.js | 4 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 D | bench_ten_mutexes.cc | 14 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 D | fx_unicode.cpp | 10 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 D | builtins-systemz-zvector-error.c | 57 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 D | namedtype.py | 16 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 D | FileSpecList.h | 111 /// \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...] |