/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_decompose_tmp.h | 51 unsigned idx[6], i; in FUNC() local 66 idx[0] = GET_ELT(i); in FUNC() 67 POINT(idx[0]); in FUNC() 74 idx[0] = GET_ELT(i); in FUNC() 75 idx[1] = GET_ELT(i + 1); in FUNC() 76 LINE(flags, idx[0], idx[1]); in FUNC() 84 idx[1] = GET_ELT(0); in FUNC() 85 idx[2] = idx[1]; in FUNC() 88 idx[0] = idx[1]; in FUNC() 89 idx[1] = GET_ELT(i); in FUNC() [all …]
|
/external/clang/test/CodeGen/ |
D | builtins-systemz-zvector-error.c | 57 volatile int idx; variable 61 len = __lcbb(cptr, idx); // expected-error {{no matching function}} in test_core() 70 vsl = vec_permi(vsl, vsl, idx); // expected-error {{no matching function}} in test_core() 79 vul = vec_permi(vul, vul, idx); // expected-error {{no matching function}} in test_core() 88 vbl = vec_permi(vbl, vbl, idx); // expected-error {{no matching function}} in test_core() 97 vd = vec_permi(vd, vd, idx); // expected-error {{no matching function}} in test_core() 107 vsi = vec_gather_element(vsi, vui, cptrsi, idx); // expected-error {{no matching function}} in test_core() 116 vui = vec_gather_element(vui, vui, cptrui, idx); // expected-error {{no matching function}} in test_core() 125 vbi = vec_gather_element(vbi, vui, cptrui, idx); // expected-error {{no matching function}} in test_core() 134 vsl = vec_gather_element(vsl, vul, cptrsl, idx); // expected-error {{no matching function}} in test_core() [all …]
|
D | builtins-systemz-zvector.c | 57 volatile int idx; variable 76 sc = vec_extract(vsc, idx); in test_core() 78 uc = vec_extract(vuc, idx); in test_core() 80 uc = vec_extract(vbc, idx); in test_core() 82 ss = vec_extract(vss, idx); in test_core() 84 us = vec_extract(vus, idx); in test_core() 86 us = vec_extract(vbs, idx); in test_core() 88 si = vec_extract(vsi, idx); in test_core() 90 ui = vec_extract(vui, idx); in test_core() 92 ui = vec_extract(vbi, idx); in test_core() [all …]
|
/external/libcxx/test/std/strings/string.conversions/ |
D | stof.pass.cpp | 32 size_t idx = 0; in main() local 33 assert(std::stof("10g", &idx) == 10); in main() 34 assert(idx == 2); in main() 35 idx = 0; in main() 36 assert(std::stof(L"10g", &idx) == 10); in main() 37 assert(idx == 2); in main() 38 idx = 0; in main() 41 assert(std::stof("1.e60", &idx) == INFINITY); in main() 46 assert(idx == 0); in main() 50 assert(std::stof(L"1.e60", &idx) == INFINITY); in main() [all …]
|
D | stod.pass.cpp | 29 size_t idx = 0; in main() local 30 assert(std::stod("10g", &idx) == 10); in main() 31 assert(idx == 2); in main() 32 idx = 0; in main() 33 assert(std::stod(L"10g", &idx) == 10); in main() 34 assert(idx == 2); in main() 37 assert(std::stod("1.e60", &idx) == 1.e60); in main() 38 assert(idx == 5); in main() 46 assert(std::stod(L"1.e60", &idx) == 1.e60); in main() 47 assert(idx == 5); in main() [all …]
|
D | stold.pass.cpp | 31 size_t idx = 0; in main() local 32 assert(std::stold("10g", &idx) == 10); in main() 33 assert(idx == 2); in main() 34 idx = 0; in main() 35 assert(std::stold(L"10g", &idx) == 10); in main() 36 assert(idx == 2); in main() 39 assert(std::stold("1.e60", &idx) == 1.e60L); in main() 40 assert(idx == 5); in main() 48 assert(std::stold(L"1.e60", &idx) == 1.e60L); in main() 49 assert(idx == 5); in main() [all …]
|
D | stoull.pass.cpp | 29 size_t idx = 0; in main() local 30 assert(std::stoull("10g", &idx, 16) == 16); in main() 31 assert(idx == 2); in main() 32 idx = 0; in main() 33 assert(std::stoull(L"10g", &idx, 16) == 16); in main() 34 assert(idx == 2); in main() 35 idx = 0; in main() 38 std::stoull("", &idx); in main() 43 assert(idx == 0); in main() 45 idx = 0; in main() [all …]
|
D | stoul.pass.cpp | 29 size_t idx = 0; in main() local 30 assert(std::stoul("10g", &idx, 16) == 16); in main() 31 assert(idx == 2); in main() 32 idx = 0; in main() 33 assert(std::stoul(L"10g", &idx, 16) == 16); in main() 34 assert(idx == 2); in main() 35 idx = 0; in main() 38 std::stoul("", &idx); in main() 43 assert(idx == 0); in main() 47 std::stoul(L"", &idx); in main() [all …]
|
D | stol.pass.cpp | 31 size_t idx = 0; in main() local 32 assert(std::stol("10g", &idx, 16) == 16); in main() 33 assert(idx == 2); in main() 34 idx = 0; in main() 35 assert(std::stol(L"10g", &idx, 16) == 16); in main() 36 assert(idx == 2); in main() 37 idx = 0; in main() 40 std::stol("", &idx); in main() 45 assert(idx == 0); in main() 49 std::stol(L"", &idx); in main() [all …]
|
D | stoll.pass.cpp | 31 size_t idx = 0; in main() local 32 assert(std::stoll("10g", &idx, 16) == 16); in main() 33 assert(idx == 2); in main() 34 idx = 0; in main() 35 assert(std::stoll(L"10g", &idx, 16) == 16); in main() 36 assert(idx == 2); in main() 37 idx = 0; in main() 40 std::stoll("", &idx); in main() 45 assert(idx == 0); in main() 49 std::stoll(L"", &idx); in main() [all …]
|
D | stoi.pass.cpp | 28 size_t idx = 0; in main() local 29 assert(std::stoi("10g", &idx, 16) == 16); in main() 30 assert(idx == 2); in main() 31 idx = 0; in main() 32 assert(std::stoi(L"10g", &idx, 16) == 16); in main() 33 assert(idx == 2); in main() 38 std::stoi("0x100000000", &idx, 16); in main() 46 std::stoi(L"0x100000000", &idx, 16); in main() 53 idx = 0; in main() 56 std::stoi("", &idx); in main() [all …]
|
/external/elfutils/src/ |
D | xelf.h | 55 # define xelf_getphdr(elf, idx, name) name = elf32_getphdr (elf) + idx argument 56 # define xelf_getphdr_ptr(elf, idx, name) name = elf32_getphdr (elf) + idx argument 57 # define xelf_update_phdr(elf, idx, phdr) \ argument 58 /* nothing */ ((void) (elf), (void) (idx), (void) (phdr), 1) 68 # define xelf_getsym(data, idx, name) \ argument 69 name = &((Elf32_Sym *) (data)->d_buf)[idx] 70 # define xelf_getsym_ptr(data, idx, name) \ argument 71 name = &((Elf32_Sym *) (data)->d_buf)[idx] 72 # define xelf_getsymshndx(data, ndxdata, idx, name1, name2) \ argument 73 (name1 = &((Elf32_Sym *) ((data)->d_buf))[idx]); \ [all …]
|
D | elflint.c | 97 GElf_Shdr *shdr, int idx); 314 section_name (Ebl *ebl, int idx) in section_name() argument 320 if ((unsigned int) idx > shnum) in section_name() 323 shdr = gelf_getshdr (elf_getscn (ebl->elf, idx), &shdr_mem); in section_name() 536 check_scn_group (Ebl *ebl, int idx) in check_scn_group() argument 538 if (scnref[idx] == 0) in check_scn_group() 544 for (cnt = idx + 1; cnt < shnum; ++cnt) in check_scn_group() 567 if (grpdata[inner] == (Elf32_Word) idx) in check_scn_group() 575 idx, section_name (ebl, idx)); in check_scn_group() 579 idx, section_name (ebl, idx), in check_scn_group() [all …]
|
/external/mesa3d/src/mapi/glapi/ |
D | glapi_entrypoint.c | 202 int idx; in init_glapi_relocs() local 229 idx = 7; in init_glapi_relocs() 235 idx = 3; in init_glapi_relocs() 237 code[idx + 0] = template[idx + 0]; in init_glapi_relocs() 238 __glapi_sparc_icache_flush(&code[idx - 1]); in init_glapi_relocs() 239 code[idx + 1] = template[idx + 1]; in init_glapi_relocs() 240 code[idx + 2] = template[idx + 2]; in init_glapi_relocs() 241 __glapi_sparc_icache_flush(&code[idx + 1]); in init_glapi_relocs() 242 code[idx + 3] = template[idx + 3]; in init_glapi_relocs() 243 code[idx + 4] = template[idx + 4]; in init_glapi_relocs() [all …]
|
/external/libcxx/src/ |
D | string.cpp | 67 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) in as_integer_helper() argument 79 if (idx) in as_integer_helper() 80 *idx = static_cast<size_t>(ptr - p); in as_integer_helper() 87 as_integer(const string& func, const S& s, size_t* idx, int base); 93 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument 96 long r = as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer() 105 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument 107 return as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer() 113 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer() argument 115 return as_integer_helper<unsigned long>( func, s, idx, base, strtoul ); in as_integer() [all …]
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | scan.hpp | 66 __device__ __forceinline__ T operator()( volatile T *ptr , const unsigned int idx) in operator ()() 68 const unsigned int lane = idx & 31; in operator ()() 71 if ( lane >= 1) ptr [idx ] = op(ptr [idx - 1], ptr [idx]); in operator ()() 72 if ( lane >= 2) ptr [idx ] = op(ptr [idx - 2], ptr [idx]); in operator ()() 73 if ( lane >= 4) ptr [idx ] = op(ptr [idx - 4], ptr [idx]); in operator ()() 74 if ( lane >= 8) ptr [idx ] = op(ptr [idx - 8], ptr [idx]); in operator ()() 75 if ( lane >= 16) ptr [idx ] = op(ptr [idx - 16], ptr [idx]); in operator ()() 78 return ptr [idx]; in operator ()() 80 return (lane > 0) ? ptr [idx - 1] : 0; in operator ()() 100 __device__ __forceinline__ T operator()( volatile T *ptr , const unsigned int idx) in operator ()() [all …]
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | backedge-on-min-max.ll | 14 %idx = phi i32 [ 0, %entry ], [ %idx.inc, %latch ] 15 %idx.inc = add i32 %idx, 1 16 %in.bounds = icmp slt i32 %idx, %a_len 21 %addr = getelementptr i32, i32* %a, i32 %idx 22 store i32 %idx, i32* %addr 26 %be.cond = icmp slt i32 %idx.inc, %smin 42 %idx = phi i32 [ 0, %entry ], [ %idx.inc, %latch ] 43 %idx.inc = add i32 %idx, 1 44 %in.bounds = icmp sgt i32 %a_len, %idx 49 %addr = getelementptr i32, i32* %a, i32 %idx [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/ |
D | namedtype.py | 16 def __getitem__(self, idx): argument 17 if idx == 0: return self.__name 18 if idx == 1: return self.__type 41 def __getitem__(self, idx): return self.__namedTypes[idx] argument 49 def getTypeByPosition(self, idx): argument 50 if idx < 0 or idx >= self.__namedTypesLen: 53 return self.__namedTypes[idx].getType() 57 idx = self.__namedTypesLen 58 while idx > 0: 59 idx = idx - 1 [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/ |
D | AsciiUtil.java | 53 int idx = 0; in toLowerString() local 54 for (; idx < s.length(); idx++) { in toLowerString() 55 char c = s.charAt(idx); in toLowerString() 60 if (idx == s.length()) { in toLowerString() 63 StringBuilder buf = new StringBuilder(s.substring(0, idx)); in toLowerString() 64 for (; idx < s.length(); idx++) { in toLowerString() 65 buf.append(toLower(s.charAt(idx))); in toLowerString() 71 int idx = 0; in toUpperString() local 72 for (; idx < s.length(); idx++) { in toUpperString() 73 char c = s.charAt(idx); in toUpperString() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | AsciiUtil.java | 53 int idx = 0; in toLowerString() local 54 for (; idx < s.length(); idx++) { in toLowerString() 55 char c = s.charAt(idx); in toLowerString() 60 if (idx == s.length()) { in toLowerString() 63 StringBuilder buf = new StringBuilder(s.substring(0, idx)); in toLowerString() 64 for (; idx < s.length(); idx++) { in toLowerString() 65 buf.append(toLower(s.charAt(idx))); in toLowerString() 71 int idx = 0; in toUpperString() local 72 for (; idx < s.length(); idx++) { in toUpperString() 73 char c = s.charAt(idx); in toUpperString() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
D | AsciiUtil.java | 57 int idx = 0; in toLowerString() local 58 for (; idx < s.length(); idx++) { in toLowerString() 59 char c = s.charAt(idx); in toLowerString() 64 if (idx == s.length()) { in toLowerString() 67 StringBuilder buf = new StringBuilder(s.substring(0, idx)); in toLowerString() 68 for (; idx < s.length(); idx++) { in toLowerString() 69 buf.append(toLower(s.charAt(idx))); in toLowerString() 75 int idx = 0; in toUpperString() local 76 for (; idx < s.length(); idx++) { in toUpperString() 77 char c = s.charAt(idx); in toUpperString() [all …]
|
/external/elfutils/lib/ |
D | dynamicsizehash.c | 51 size_t idx = 1 + (hval < htab->size ? hval : hval % htab->size); in lookup() local 53 if (htab->table[idx].hashval != 0) in lookup() 57 if (htab->table[idx].hashval == hval in lookup() 58 && COMPARE (htab->table[idx].data, val) == 0) in lookup() 59 return idx; in lookup() 66 if (idx <= hash) in lookup() 67 idx = htab->size + idx - hash; in lookup() 69 idx -= hash; in lookup() 72 if (htab->table[idx].hashval == hval in lookup() 73 && COMPARE (htab->table[idx].data, val) == 0) in lookup() [all …]
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | infer-prestart-no-wrap.ll | 10 %idx = phi i32 [ %start, %entry ], [ %idx.inc, %loop ] 11 %idx.inc = add nsw i32 %idx, 1 12 %idx.inc.sext = sext i32 %idx.inc to i64 13 ; CHECK: %idx.inc.sext = sext i32 %idx.inc to i64 30 %idx = phi i32 [ %start, %entry ], [ %idx.inc, %loop ] 31 %idx.inc = add nuw i32 %idx, 1 32 %idx.inc.sext = zext i32 %idx.inc to i64 33 ; CHECK: %idx.inc.sext = zext i32 %idx.inc to i64 51 %idx = phi i32 [ %start.real, %entry ], [ %idx.inc, %loop ] 52 %idx.sext = sext i32 %idx to i64 [all …]
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_decl_sm30.c | 42 unsigned *idx) in translate_vs_ps_semantic() argument 46 *idx = semantic.Index; in translate_vs_ps_semantic() 50 *idx = semantic.Index; in translate_vs_ps_semantic() 54 *idx = semantic.Index + 2; /* sharing with COLOR */ in translate_vs_ps_semantic() 58 *idx = 0; in translate_vs_ps_semantic() 63 *idx = semantic.Index; in translate_vs_ps_semantic() 67 *idx = svga_remap_generic_index(emit->key.generic_remap_table, in translate_vs_ps_semantic() 72 *idx = semantic.Index; in translate_vs_ps_semantic() 80 *idx = 0; in translate_vs_ps_semantic() 85 *idx = 0; in translate_vs_ps_semantic() [all …]
|
/external/elfutils/libdwfl/ |
D | segment.c | 139 size_t idx = (l + u) / 2; in lookup() local 140 if (address < dwfl->lookup_addr[idx]) in lookup() 141 u = idx; in lookup() 144 l = idx + 1; in lookup() 146 return idx; in lookup() 166 int idx = lookup (dwfl, start, hint); in reify_segments() local 167 if (unlikely (idx < 0)) in reify_segments() 172 idx = 0; in reify_segments() 175 else if (dwfl->lookup_addr[idx] > start) in reify_segments() 178 if (unlikely (insert (dwfl, idx + 1, start, end, in reify_segments() [all …]
|