Home
last modified time | relevance | path

Searched refs:idx (Results 1 – 25 of 3131) sorted by relevance

12345678910>>...126

/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_decompose_tmp.h50 unsigned idx[6], i; in FUNC() local
65 idx[0] = GET_ELT(i); in FUNC()
66 POINT(idx[0]); in FUNC()
73 idx[0] = GET_ELT(i); in FUNC()
74 idx[1] = GET_ELT(i + 1); in FUNC()
75 LINE(flags, idx[0], idx[1]); in FUNC()
83 idx[1] = GET_ELT(0); in FUNC()
84 idx[2] = idx[1]; in FUNC()
87 idx[0] = idx[1]; in FUNC()
88 idx[1] = GET_ELT(i); in FUNC()
[all …]
/external/clang/test/CodeGen/
Dbuiltins-systemz-zvector-error.c57 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 …]
Dbuiltins-systemz-zvector.c57 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/deqp/external/openglcts/modules/glesext/draw_buffers_indexed/
DesextcDrawBuffersIndexedBase.cpp97 bool DrawBuffersIndexedBase::BlendMaskStateMachine::CheckEnumForBuffer(int idx, glw::GLenum e, glw:… in CheckEnumForBuffer() argument
103 gl.getIntegeri_v(e, idx, &i); in CheckEnumForBuffer()
104 gl.getInteger64i_v(e, idx, &li); in CheckEnumForBuffer()
105 gl.getBooleani_v(e, idx, &b); in CheckEnumForBuffer()
108 …testLog << tcu::TestLog::Message << "State for " << e << " in buffer #" << idx << " should be set … in CheckEnumForBuffer()
118 bool DrawBuffersIndexedBase::BlendMaskStateMachine::CheckBuffer(int idx) in CheckBuffer() argument
120 if (gl.isEnabledi(GL_BLEND, idx) != state[idx].enable) in CheckBuffer()
122 …testLog << tcu::TestLog::Message << "Blending for buffer #" << idx << " set to: " << !state[idx].e… in CheckBuffer()
123 << " but should be " << state[idx].enable << "!" << tcu::TestLog::EndMessage; in CheckBuffer()
129 result &= CheckEnumForBuffer(idx, GL_BLEND_EQUATION_RGB, state[idx].mode_rgb); in CheckBuffer()
[all …]
/external/libcxx/test/std/strings/string.conversions/
Dstof.pass.cpp36 size_t idx = 0; in main() local
37 assert(std::stof("10g", &idx) == 10); in main()
38 assert(idx == 2); in main()
39 idx = 0; in main()
40 assert(std::stof(L"10g", &idx) == 10); in main()
41 assert(idx == 2); in main()
43 idx = 0; in main()
46 assert(std::stof("1.e60", &idx) == INFINITY); in main()
51 assert(idx == 0); in main()
55 assert(std::stof(L"1.e60", &idx) == INFINITY); in main()
[all …]
Dstold.pass.cpp33 size_t idx = 0; in main() local
34 assert(std::stold("10g", &idx) == 10); in main()
35 assert(idx == 2); in main()
36 idx = 0; in main()
37 assert(std::stold(L"10g", &idx) == 10); in main()
38 assert(idx == 2); in main()
43 assert(std::stold("1.e60", &idx) == 1.e60L); in main()
44 assert(idx == 5); in main()
54 assert(std::stold(L"1.e60", &idx) == 1.e60L); in main()
55 assert(idx == 5); in main()
[all …]
Dstod.pass.cpp32 size_t idx = 0; in main() local
33 assert(std::stod("10g", &idx) == 10); in main()
34 assert(idx == 2); in main()
35 idx = 0; in main()
36 assert(std::stod(L"10g", &idx) == 10); in main()
37 assert(idx == 2); in main()
42 assert(std::stod("1.e60", &idx) == 1.e60); in main()
43 assert(idx == 5); in main()
53 assert(std::stod(L"1.e60", &idx) == 1.e60); in main()
54 assert(idx == 5); in main()
[all …]
Dstoull.pass.cpp33 size_t idx = 0; in main() local
34 assert(std::stoull("10g", &idx, 16) == 16); in main()
35 assert(idx == 2); in main()
36 idx = 0; in main()
37 assert(std::stoull(L"10g", &idx, 16) == 16); in main()
38 assert(idx == 2); in main()
40 idx = 0; in main()
43 std::stoull("", &idx); in main()
48 assert(idx == 0); in main()
50 idx = 0; in main()
[all …]
Dstoul.pass.cpp33 size_t idx = 0; in main() local
34 assert(std::stoul("10g", &idx, 16) == 16); in main()
35 assert(idx == 2); in main()
36 idx = 0; in main()
37 assert(std::stoul(L"10g", &idx, 16) == 16); in main()
38 assert(idx == 2); in main()
40 idx = 0; in main()
43 std::stoul("", &idx); in main()
48 assert(idx == 0); in main()
52 std::stoul(L"", &idx); in main()
[all …]
/external/python/cpython2/Modules/
D_json.c91 scan_once_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
93 scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
95 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx);
406 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx) { in _build_rval_index_tuple() argument
416 pyidx = PyInt_FromSsize_t(idx); in _build_rval_index_tuple()
882 _parse_object_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) { in _parse_object_str() argument
909 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++; in _parse_object_str()
912 if (idx <= end_idx && str[idx] != '}') { in _parse_object_str()
913 while (idx <= end_idx) { in _parse_object_str()
915 if (str[idx] != '"') { in _parse_object_str()
[all …]
/external/linux-kselftest/tools/testing/selftests/kvm/lib/
Dsparsebit.c173 sparsebit_idx_t idx; /* index of least-significant bit in mask */ member
288 root->idx = subtree->idx; in node_copy_subtree()
311 static struct node *node_find(struct sparsebit *s, sparsebit_idx_t idx) in node_find() argument
317 nodep = nodep->idx > idx ? nodep->left : nodep->right) { in node_find()
318 if (idx >= nodep->idx && in node_find()
319 idx <= nodep->idx + MASK_BITS + nodep->num_after - 1) in node_find()
334 static struct node *node_add(struct sparsebit *s, sparsebit_idx_t idx) in node_add() argument
345 nodep->idx = idx & -MASK_BITS; in node_add()
359 if (idx < parentp->idx) { in node_add()
367 assert(idx > parentp->idx + MASK_BITS + parentp->num_after - 1); in node_add()
[all …]
/external/libxaac/decoder/armv7/
Dixheaacd_aac_ld_dec_rearrange.s12 LDRB r4, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
13 LDRB r5, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
14 LDRB r6, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
15 LDRB r7, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
16 LDRB r8, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
17 LDRB r9, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
18 LDRB r10, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
19 LDRB r11, [r3], #1 @ idx = mdct_tables_ptr->re_arr_tab[n]
28 LDMIA r4, {r12, r14} @ r12 = inp[idx] and r14 = inp[idx+1]
29 STMIA r1!, {r12, r14} @ *buf1++ = inp[idx] and *buf1++ = inp[idx+1]
[all …]
/external/mesa3d/src/mapi/glapi/
Dglapi_entrypoint.c203 int idx; in init_glapi_relocs() local
230 idx = 7; in init_glapi_relocs()
236 idx = 3; in init_glapi_relocs()
238 code[idx + 0] = template[idx + 0]; in init_glapi_relocs()
239 __glapi_sparc_icache_flush(&code[idx - 1]); in init_glapi_relocs()
240 code[idx + 1] = template[idx + 1]; in init_glapi_relocs()
241 code[idx + 2] = template[idx + 2]; in init_glapi_relocs()
242 __glapi_sparc_icache_flush(&code[idx + 1]); in init_glapi_relocs()
243 code[idx + 3] = template[idx + 3]; in init_glapi_relocs()
244 code[idx + 4] = template[idx + 4]; in init_glapi_relocs()
[all …]
/external/libcxx/src/
Dstring.cpp61 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) in as_integer_helper() argument
73 if (idx) in as_integer_helper()
74 *idx = static_cast<size_t>(ptr - p); in as_integer_helper()
81 as_integer(const string& func, const S& s, size_t* idx, int base);
87 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
90 long r = as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer()
99 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
101 return as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer()
107 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
109 return as_integer_helper<unsigned long>( func, s, idx, base, strtoul ); in as_integer()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/
Dinsertion-point.ll14 …ddrspace(1)* nocapture %b, float addrspace(1)* nocapture readonly %c, i64 %idx, i32 %x, i32 %y) #0…
16 %a.idx.x = getelementptr inbounds float, float addrspace(1)* %a, i64 %idx
17 %c.idx.x = getelementptr inbounds float, float addrspace(1)* %c, i64 %idx
18 %a.idx.x.1 = getelementptr inbounds float, float addrspace(1)* %a.idx.x, i64 1
19 %c.idx.x.1 = getelementptr inbounds float, float addrspace(1)* %c.idx.x, i64 1
22 %ld.c = load float, float addrspace(1)* %c.idx.x, align 4
24 %ld.c.idx.1 = load float, float addrspace(1)* %c.idx.x.1, align 4
27 store float 0.0, float addrspace(1)* %a.idx.x, align 4
28 store float 0.0, float addrspace(1)* %a.idx.x.1, align 4
30 %add = fadd float %ld.c, %ld.c.idx.1
[all …]
/external/libvpx/libvpx/vpx_dsp/
Davg.c106 int idx; in vpx_highbd_hadamard_8x8_c() local
110 for (idx = 0; idx < 8; ++idx) { in vpx_highbd_hadamard_8x8_c()
119 for (idx = 0; idx < 8; ++idx) { in vpx_highbd_hadamard_8x8_c()
122 hadamard_highbd_col8_second_pass(tmp_buf, 8, buffer2 + 8 * idx); in vpx_highbd_hadamard_8x8_c()
126 for (idx = 0; idx < 64; ++idx) coeff[idx] = (tran_low_t)buffer2[idx]; in vpx_highbd_hadamard_8x8_c()
132 int idx; in vpx_highbd_hadamard_16x16_c() local
133 for (idx = 0; idx < 4; ++idx) { in vpx_highbd_hadamard_16x16_c()
136 src_diff + (idx >> 1) * 8 * src_stride + (idx & 0x01) * 8; in vpx_highbd_hadamard_16x16_c()
137 vpx_highbd_hadamard_8x8_c(src_ptr, src_stride, coeff + idx * 64); in vpx_highbd_hadamard_16x16_c()
141 for (idx = 0; idx < 64; ++idx) { in vpx_highbd_hadamard_16x16_c()
[all …]
/external/python/cpython3/Lib/json/
Dscanner.py28 def _scan_once(string, idx): argument
30 nextchar = string[idx]
32 raise StopIteration(idx) from None
35 return parse_string(string, idx + 1, strict)
37 return parse_object((string, idx + 1), strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
42 return None, idx + 4
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
44 return True, idx + 4
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/IRCE/
Dunsigned_comparisons_ult.ll23 ; CHECK-NEXT: %idx = phi i32 [ %idx.next, %in.bounds ], [ 0, %loop.preheader ]
24 ; CHECK-NEXT: %idx.next = add nuw nsw i32 %idx, 1
25 ; CHECK-NEXT: %abc = icmp ult i32 %idx, %exit.mainloop.at
29 ; CHECK-NEXT: %idx.postloop = phi i32 [ %idx.copy, %postloop ], [ %idx.next.postloop, %in.bound…
30 ; CHECK-NEXT: %idx.next.postloop = add nuw nsw i32 %idx.postloop, 1
31 ; CHECK-NEXT: %abc.postloop = icmp ult i32 %idx.postloop, %exit.mainloop.at
39 %idx = phi i32 [ 0, %entry ], [ %idx.next, %in.bounds ]
40 %idx.next = add nsw nuw i32 %idx, 1
41 %abc = icmp ult i32 %idx, %len
45 %addr = getelementptr i32, i32* %arr, i32 %idx
[all …]
Dunsigned_comparisons_ugt.ll20 ; CHECK-NEXT: %idx = phi i32 [ %idx.next, %in.bounds ], [ 0, %loop.preheader ]
21 ; CHECK-NEXT: %idx.next = add nuw nsw i32 %idx, 1
22 ; CHECK-NEXT: %abc = icmp ult i32 %idx, %exit.mainloop.at
26 ; CHECK-NEXT: %idx.postloop = phi i32 [ %idx.copy, %postloop ], [ %idx.next.postloop, %in.bound…
27 ; CHECK-NEXT: %idx.next.postloop = add nuw nsw i32 %idx.postloop, 1
28 ; CHECK-NEXT: %abc.postloop = icmp ult i32 %idx.postloop, %exit.mainloop.at
36 %idx = phi i32 [ 0, %entry ], [ %idx.next, %in.bounds ]
37 %idx.next = add nsw nuw i32 %idx, 1
38 %abc = icmp ult i32 %idx, %len
42 %addr = getelementptr i32, i32* %arr, i32 %idx
[all …]
Dstride_more_than_1.ll24 ; CHECK-NEXT: %idx = phi i32 [ %idx.next, %in.bounds ], [ 0, %loop.preheader ]
25 ; CHECK-NEXT: %idx.next = add i32 %idx, 7
26 ; CHECK-NEXT: %abc = icmp slt i32 %idx, %exit.mainloop.at
29 ; CHECK-NEXT: %addr = getelementptr i32, i32* %arr, i32 %idx
31 ; CHECK-NEXT: %next = icmp slt i32 %idx.next, 100
32 ; CHECK-NEXT: [[COND2:%[^ ]+]] = icmp slt i32 %idx.next, %exit.mainloop.at
35 ; CHECK-NEXT: %idx.next.lcssa = phi i32 [ %idx.next, %in.bounds ]
36 ; CHECK-NEXT: [[COND3:%[^ ]+]] = icmp slt i32 %idx.next.lcssa, 100
39 ; CHECK-NEXT: %idx.copy = phi i32 [ 0, %entry ], [ %idx.next.lcssa, %main.exit.selector ]
40 ; CHECK-NEXT: %indvar.end = phi i32 [ 0, %entry ], [ %idx.next.lcssa, %main.exit.selector ]
[all …]
/external/libaom/libaom/aom_dsp/
Davg.c87 int idx; in aom_hadamard_8x8_c() local
91 for (idx = 0; idx < 8; ++idx) { in aom_hadamard_8x8_c()
99 for (idx = 0; idx < 8; ++idx) { in aom_hadamard_8x8_c()
100 hadamard_col8(tmp_buf, 8, buffer2 + 8 * idx); // tmp_buf: 12 bit in aom_hadamard_8x8_c()
107 for (idx = 0; idx < 64; ++idx) coeff[idx] = (tran_low_t)buffer2[idx]; in aom_hadamard_8x8_c()
113 int idx; in aom_hadamard_16x16_c() local
114 for (idx = 0; idx < 4; ++idx) { in aom_hadamard_16x16_c()
117 src_diff + (idx >> 1) * 8 * src_stride + (idx & 0x01) * 8; in aom_hadamard_16x16_c()
118 aom_hadamard_8x8_c(src_ptr, src_stride, coeff + idx * 64); in aom_hadamard_16x16_c()
122 for (idx = 0; idx < 64; ++idx) { in aom_hadamard_16x16_c()
[all …]
/external/llvm/test/Transforms/IndVarSimplify/
Dbackedge-on-min-max.ll15 %idx = phi i32 [ 0, %entry ], [ %idx.inc, %latch ]
16 %idx.inc = add i32 %idx, 1
17 %in.bounds = icmp slt i32 %idx, %a_len
22 %addr = getelementptr i32, i32* %a, i32 %idx
23 store i32 %idx, i32* %addr
27 %be.cond = icmp slt i32 %idx.inc, %smin
43 %idx = phi i32 [ 0, %entry ], [ %idx.inc, %latch ]
44 %idx.inc = add i32 %idx, 1
45 %in.bounds = icmp sgt i32 %a_len, %idx
50 %addr = getelementptr i32, i32* %a, i32 %idx
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/IndVarSimplify/
Dbackedge-on-min-max.ll15 %idx = phi i32 [ 0, %entry ], [ %idx.inc, %latch ]
16 %idx.inc = add i32 %idx, 1
17 %in.bounds = icmp slt i32 %idx, %a_len
22 %addr = getelementptr i32, i32* %a, i32 %idx
23 store i32 %idx, i32* %addr
27 %be.cond = icmp slt i32 %idx.inc, %smin
43 %idx = phi i32 [ 0, %entry ], [ %idx.inc, %latch ]
44 %idx.inc = add i32 %idx, 1
45 %in.bounds = icmp sgt i32 %a_len, %idx
50 %addr = getelementptr i32, i32* %a, i32 %idx
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DSimpleElementValueGen.java39 private int idx; field in SimpleElementValueGen
47 protected SimpleElementValueGen(final int type, final int idx, final ConstantPoolGen cpGen) in SimpleElementValueGen() argument
50 this.idx = idx; in SimpleElementValueGen()
56 idx = getConstantPool().addInteger(value); in SimpleElementValueGen()
62 idx = getConstantPool().addLong(value); in SimpleElementValueGen()
68 idx = getConstantPool().addDouble(value); in SimpleElementValueGen()
74 idx = getConstantPool().addFloat(value); in SimpleElementValueGen()
80 idx = getConstantPool().addInteger(value); in SimpleElementValueGen()
86 idx = getConstantPool().addInteger(value); in SimpleElementValueGen()
92 idx = getConstantPool().addInteger(value); in SimpleElementValueGen()
[all …]
/external/u-boot/include/
Dfm_eth.h60 #define FM_ETH_INFO_INITIALIZER(idx, pregs) \ argument
61 .fm = idx, \
66 #define FM_DTSEC_INFO_INITIALIZER(idx, n) \ argument
68 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_DTSEC_MDIO_ADDR) \
69 .index = idx, \
72 .port = FM##idx##_DTSEC##n, \
75 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
80 #define FM_TGEC_INFO_INITIALIZER(idx, n) \ argument
82 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_TGEC_MDIO_ADDR) \
83 .index = idx, \
[all …]

12345678910>>...126