Searched refs:idx (Results 51 - 75 of 1845) sorted by relevance

1234567891011>>

/external/libopus/silk/
H A Dsort.c42 opus_int *idx, /* O Index vector for the sorted elements */
57 idx[ i ] = i;
65 idx[ j + 1 ] = idx[ j ]; /* Shift index */
68 idx[ j + 1 ] = i; /* Write index */
78 idx[ j + 1 ] = idx[ j ]; /* Shift index */
81 idx[ j + 1 ] = i; /* Write index */
90 opus_int *idx, /* O Index vector for the sorted elements */
105 idx[
40 silk_insertion_sort_increasing( opus_int32 *a, opus_int *idx, const opus_int L, const opus_int K ) argument
88 silk_insertion_sort_decreasing_int16( opus_int16 *a, opus_int *idx, const opus_int L, const opus_int K ) argument
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.h68 sp_clamp_viewport_idx(int idx) argument
70 return (PIPE_MAX_VIEWPORTS > idx && idx >= 0) ? idx : 0;
H A Dsp_state_image.c42 int idx = start + i; local
45 pipe_resource_reference(&softpipe->tgsi.image[shader]->sp_iview[idx].resource, images[i].resource);
46 softpipe->tgsi.image[shader]->sp_iview[idx] = images[i];
49 pipe_resource_reference(&softpipe->tgsi.image[shader]->sp_iview[idx].resource, NULL);
50 memset(&softpipe->tgsi.image[shader]->sp_iview[idx], 0, sizeof(struct pipe_image_view));
68 int idx = start + i; local
71 pipe_resource_reference(&softpipe->tgsi.buffer[shader]->sp_bview[idx].buffer, buffers[i].buffer);
72 softpipe->tgsi.buffer[shader]->sp_bview[idx] = buffers[i];
75 pipe_resource_reference(&softpipe->tgsi.buffer[shader]->sp_bview[idx].buffer, NULL);
76 memset(&softpipe->tgsi.buffer[shader]->sp_bview[idx],
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fNegativeSampleVariablesTests.cpp118 for (int idx = 0; idx < DE_LENGTH_OF_ARRAY(testConfigs); idx++)
126 << testConfigs[idx].varyingCheck
130 ctx.beginSection("OES_sample_variables: trying to write to built-in read-only variable" + testConfigs[idx].builtInType);
160 for (int idx = 0; idx < DE_LENGTH_OF_ARRAY(testConfigs); idx++)
167 << testConfigs[idx].varyingCheck
171 ctx.beginSection("OES_sample_variables: trying to use fragment shader built-in sampler variable " + testConfigs[idx]
[all...]
/external/flac/libFLAC/include/private/
H A Dbitmath.h87 unsigned long idx;
88 _BitScanReverse(&idx, v);
89 return idx ^ 31U;
134 unsigned long idx;
135 _BitScanReverse(&idx, v);
136 return idx;
154 unsigned long idx;
155 _BitScanReverse64(&idx, v);
156 return idx;
/external/google-breakpad/src/common/mac/
H A Dfile_id.cc88 for (int idx = 0; (buffer_idx < buffer_length) && (idx < 16); ++idx) {
89 int hi = (identifier[idx] >> 4) & 0x0F;
90 int lo = (identifier[idx]) & 0x0F;
92 if (idx == 4 || idx == 6 || idx == 8 || idx == 10)
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
H A DSortIndex.java32 final int idx; field in class:SortIndex.Entry
36 Entry(final int idx, final T item) { argument
37 this.idx = idx;
69 int idx = 0;
71 final Entry entry = new Entry(idx++, i);
80 positions[e.idx] = pos++;
88 * @param idx
92 public int getPosition(final int idx) { argument
93 return positions[idx];
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Davg.c71 int idx; local
75 for (idx = 0; idx < 8; ++idx) {
83 for (idx = 0; idx < 8; ++idx) {
84 hadamard_col8(tmp_buf, 8, buffer2 + 8 * idx); // tmp_buf: 12 bit
91 for (idx = 0; idx < 6
97 int idx; local
141 int idx; local
156 int idx; local
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_decl_sm30.c42 unsigned *idx)
46 *idx = semantic.Index;
50 *idx = semantic.Index;
54 *idx = semantic.Index + 2; /* sharing with COLOR */
58 *idx = 0;
63 *idx = semantic.Index;
67 *idx = svga_remap_generic_index(emit->key.generic_remap_table,
72 *idx = semantic.Index;
80 *idx = 0;
85 *idx
39 translate_vs_ps_semantic(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned *usage, unsigned *idx) argument
178 ps30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
325 ps30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
389 vs30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
447 vs30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
518 svga_tgsi_sampler_type(const struct svga_shader_emitter *emit, int idx) argument
573 unsigned idx; local
[all...]
/external/elfutils/libdwfl/
H A Dsegment.c139 size_t idx = (l + u) / 2; local
140 if (address < dwfl->lookup_addr[idx])
141 u = idx;
144 l = idx + 1;
146 return idx;
166 int idx = lookup (dwfl, start, hint); local
167 if (unlikely (idx < 0))
172 idx = 0;
175 else if (dwfl->lookup_addr[idx] > start)
178 if (unlikely (insert (dwfl, idx
254 int idx = lookup (dwfl, address, -1); local
[all...]
/external/brotli/research/
H A Dfind_opt_references.cc76 int idx, int left_ix, int right_ix, int left_lcp,
84 int dist = idx - sarray[max_lcp_ix];
87 fwrite(&idx, sizeof(int), 1, fout); // Position in input.
91 inline void GoLeft(sarray_type* sarray, lcp_type* lcp, int idx, int left_ix, argument
97 if (sarray[left_ix] < idx) {
98 entry->second.push_back(idx - sarray[left_ix]);
103 inline void GoRight(sarray_type* sarray, lcp_type* lcp, int idx, size_t size, argument
109 if (sarray[right_ix] < idx) {
110 entry->second.push_back(idx - sarray[right_ix]);
116 int idx, in
75 PrintReference(sarray_type* sarray, lcp_type* lcp, size_t size, int idx, int left_ix, int right_ix, int left_lcp, int right_lcp, FILE* fout) argument
115 StoreReference(sarray_type* sarray, lcp_type* lcp, size_t size, int idx, int left_ix, int right_ix, int left_lcp, int right_lcp, entry_type* entries) argument
167 size_t idx; local
[all...]
/external/boringssl/src/crypto/test/
H A Dfile_test_gtest.cc42 size_t idx = data_.find('\n', offset_); variable
43 if (idx == std::string::npos) {
44 idx = data_.size();
46 idx++; // Include the newline.
49 if (idx - offset_ > len - 1) {
54 memcpy(out, data_.data() + offset_, idx - offset_);
55 out[idx - offset_] = '\0';
56 offset_ = idx;
/external/libopus/silk/float/
H A Dsort_FLP.c41 opus_int *idx, /* O Index vector for the sorted elements */
56 idx[ i ] = i;
64 idx[ j + 1 ] = idx[ j ]; /* Shift index */
67 idx[ j + 1 ] = i; /* Write index */
77 idx[ j + 1 ] = idx[ j ]; /* Shift index */
80 idx[ j + 1 ] = i; /* Write index */
39 silk_insertion_sort_decreasing_FLP( silk_float *a, opus_int *idx, const opus_int L, const opus_int K ) argument
/external/python/cpython2/Doc/includes/sqlite3/
H A Drow_factory.py5 for idx, col in enumerate(cursor.description):
6 d[col[0]] = row[idx]
/external/eigen/Eigen/src/MetisSupport/
H A DMetisSupport.h46 Index idx = it.index(); // Get the row index (for column major) or column index (for row major) local
47 if (visited(idx) != j )
49 visited(idx) = j;
56 Index idx = it.index(); local
57 if(visited(idx) != j)
59 visited(idx) = j;
79 StorageIndex idx = it.index(); // Get the row index (for column major) or column index (for row major) local
80 if (visited(idx) != j )
82 visited(idx) = j;
83 m_innerIndices(CurNz) = idx;
90 StorageIndex idx = it.index(); local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodingInfo.java218 final int idx = codePoint - m_explFirst;
221 if (m_alreadyKnown[idx])
222 ret = m_isInEncoding[idx];
227 m_alreadyKnown[idx] = true;
228 m_isInEncoding[idx] = ret;
265 final int idx = codePoint - m_explFirst;
268 if (m_alreadyKnown[idx])
269 ret = m_isInEncoding[idx];
274 m_alreadyKnown[idx] = true;
275 m_isInEncoding[idx]
[all...]
/external/curl/packages/NetWare/
H A Dget_exp.awk33 exports[++idx] = sym_name
45 printf("Added %d symbols to export list.\n", idx) > "/dev/stderr"
47 increment = int(idx / 2)
49 for (i = increment+1; i <= idx; i++) {
67 while (x < idx - 1) {
/external/elfutils/libdw/
H A Ddwarf_decl_file.c43 Dwarf_Word idx = 0; local
47 &idx) != 0)
51 if (idx == 0)
80 if (idx >= cu->files->nfiles)
86 return cu->files->info[idx].name;
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/
H A Dtest.c13 int idx; local
16 idx = srcu_read_lock(&ss);
22 srcu_read_unlock(&ss, idx);
23 idx = srcu_read_lock(&ss);
28 srcu_read_unlock(&ss, idx);
/external/python/cpython2/Modules/
H A 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);
410 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx) { argument
411 /* return (rval, idx) tuple, stealing reference to rval */
415 steal a reference to rval, returns (rval, idx)
420 pyidx = PyInt_FromSsize_t(idx);
885 _parse_object_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) { argument
887 idx is the index of the first character after the opening curly brace.
912 while (idx <
1012 _parse_object_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1139 _parse_array_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1206 _parse_array_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1273 _parse_constant(PyScannerObject *s, char *constant, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1311 Py_ssize_t idx = start; local
1413 Py_ssize_t idx = start; local
1492 scan_once_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1585 scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1682 Py_ssize_t idx; local
2114 Py_ssize_t idx; local
[all...]
/external/iproute2/tc/
H A Dq_mqprio.c35 int idx; local
43 idx = 0;
51 while (idx < TC_QOPT_MAX_QUEUE && NEXT_ARG_OK()) {
53 if (get_u8(&opt.prio_tc_map[idx], *argv, 10)) {
57 idx++;
59 for ( ; idx < TC_QOPT_MAX_QUEUE; idx++)
60 opt.prio_tc_map[idx] = 0;
64 while (idx < TC_QOPT_MAX_QUEUE && NEXT_ARG_OK()) {
72 if (get_u16(&opt.count[idx], to
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-systemz-zvector.c57 volatile int idx; variable
76 sc = vec_extract(vsc, idx);
78 uc = vec_extract(vuc, idx);
80 uc = vec_extract(vbc, idx);
82 ss = vec_extract(vss, idx);
84 us = vec_extract(vus, idx);
86 us = vec_extract(vbs, idx);
88 si = vec_extract(vsi, idx);
90 ui = vec_extract(vui, idx);
92 ui = vec_extract(vbi, idx);
[all...]
/external/elfutils/tests/
H A Delfputzdata.c76 size_t idx = elf_ndxscn (scn); local
83 printf ("Cannot compress %zd %s\n", idx, name);
88 printf ("Already compressed %zd %s\n", idx, name);
94 idx, name, shdr->sh_size);
98 printf ("Couldn't get orig data for section %zd\n", idx);
105 printf ("Unexpected data size for orig section %zd\n", idx);
111 printf ("No memory to copy section %zd data\n", idx);
130 idx, elf_errmsg (-1));
146 idx, elf_errmsg (-1));
159 idx);
[all...]
/external/iproute2/lib/
H A Dll_map.c141 const char *ll_idx_n2a(unsigned idx, char *buf) argument
145 if (idx == 0)
148 im = ll_get_by_index(idx);
152 if (if_indextoname(idx, buf) == NULL)
153 snprintf(buf, IFNAMSIZ, "if%d", idx);
158 const char *ll_index_to_name(unsigned idx) argument
162 return ll_idx_n2a(idx, nbuf);
165 int ll_index_to_type(unsigned idx) argument
169 if (idx == 0)
172 im = ll_get_by_index(idx);
176 ll_index_to_flags(unsigned idx) argument
190 unsigned idx; local
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRSymbolStack.h66 -(ANTLRSymbolsScope *)getHashMapEntry:(NSInteger)idx;
72 - (void) insertObject:(ANTLRSymbolsScope *)aScope atIndex:(NSInteger)idx;
73 - (ANTLRSymbolsScope *)objectAtIndex:(NSInteger)idx;

Completed in 1184 milliseconds

1234567891011>>