Searched refs:indices (Results 151 - 175 of 647) sorted by relevance

1234567891011>>

/external/libcxx/src/
H A Dhash.cpp76 // potential primes = 210*k + indices[i], k >= 1
79 const unsigned indices[] = member in namespace:__anon23581
189 // Start searching list of potential primes: L * k0 + indices[in]
190 const size_t M = sizeof(indices) / sizeof(indices[0]);
194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L)
195 - indices);
196 n = L * k0 + indices[in];
566 n = L * k0 + indices[i
[all...]
/external/libopus/silk/
H A DNLSF_decode.c37 const opus_int8 indices[], /* I Quantization indices [ order ] */
48 out_Q10 = silk_LSHIFT( indices[ i ], 10 );
83 /* Unpack entropy table indices and predictor for current CB1 index */
35 silk_NLSF_residual_dequant( opus_int16 x_Q10[], const opus_int8 indices[], const opus_uint8 pred_coef_Q8[], const opus_int quant_step_size_Q16, const opus_int16 order ) argument
H A DNLSF_del_dec_quant.c36 opus_int8 indices[], /* O Quantization indices [ order ] */
153 /* afterwards ind_sort[] will contain the indices of the NLSF_QUANT_DEL_DEC_STATES winning RD values */
189 /* last sample: find winner, copy indices and return RD value */
199 indices[ j ] = ind[ ind_tmp & ( NLSF_QUANT_DEL_DEC_STATES - 1 ) ][ j ];
200 silk_assert( indices[ j ] >= -NLSF_QUANT_MAX_AMPLITUDE_EXT );
201 silk_assert( indices[ j ] <= NLSF_QUANT_MAX_AMPLITUDE_EXT );
203 indices[ 0 ] += silk_RSHIFT( ind_tmp, NLSF_QUANT_DEL_DEC_STATES_LOG2 );
204 silk_assert( indices[ 0 ] <= NLSF_QUANT_MAX_AMPLITUDE_EXT );
35 silk_NLSF_del_dec_quant( opus_int8 indices[], const opus_int16 x_Q10[], const opus_int16 w_Q5[], const opus_uint8 pred_coef_Q8[], const opus_int16 ec_ix[], const opus_uint8 ec_rates_Q5[], const opus_int quant_step_size_Q16, const opus_int16 inv_quant_step_size_Q6, const opus_int32 mu_Q20, const opus_int16 order ) argument
/external/chromium_org/third_party/opus/src/silk/
H A DNLSF_del_dec_quant.c36 opus_int8 indices[], /* O Quantization indices [ order ] */
153 /* afterwards ind_sort[] will contain the indices of the NLSF_QUANT_DEL_DEC_STATES winning RD values */
189 /* last sample: find winner, copy indices and return RD value */
199 indices[ j ] = ind[ ind_tmp & ( NLSF_QUANT_DEL_DEC_STATES - 1 ) ][ j ];
200 silk_assert( indices[ j ] >= -NLSF_QUANT_MAX_AMPLITUDE_EXT );
201 silk_assert( indices[ j ] <= NLSF_QUANT_MAX_AMPLITUDE_EXT );
203 indices[ 0 ] += silk_RSHIFT( ind_tmp, NLSF_QUANT_DEL_DEC_STATES_LOG2 );
204 silk_assert( indices[ 0 ] <= NLSF_QUANT_MAX_AMPLITUDE_EXT );
35 silk_NLSF_del_dec_quant( opus_int8 indices[], const opus_int16 x_Q10[], const opus_int16 w_Q5[], const opus_uint8 pred_coef_Q8[], const opus_int16 ec_ix[], const opus_uint8 ec_rates_Q5[], const opus_int quant_step_size_Q16, const opus_int16 inv_quant_step_size_Q6, const opus_int32 mu_Q20, const opus_int16 order ) argument
/external/deqp/modules/gles3/stress/
H A Des3sSpecialFloatTests.cpp618 std::vector<deUint16> indices ((DE_LENGTH_OF_ARRAY(s_specialFloats) - 1) * (DE_LENGTH_OF_ARRAY(s_specialFloats) - 1) * 6);
639 indices[baseNdx + 0] = (x+0) * DE_LENGTH_OF_ARRAY(s_specialFloats) + (y+0);
640 indices[baseNdx + 1] = (x+1) * DE_LENGTH_OF_ARRAY(s_specialFloats) + (y+1);
641 indices[baseNdx + 2] = (x+1) * DE_LENGTH_OF_ARRAY(s_specialFloats) + (y+0);
643 indices[baseNdx + 3] = (x+0) * DE_LENGTH_OF_ARRAY(s_specialFloats) + (y+0);
644 indices[baseNdx + 4] = (x+1) * DE_LENGTH_OF_ARRAY(s_specialFloats) + (y+1);
645 indices[baseNdx + 5] = (x+0) * DE_LENGTH_OF_ARRAY(s_specialFloats) + (y+1);
667 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, (glw::GLsizeiptr)(indices.size() * sizeof(deUint16)), &indices[0], GL_STATIC_DRAW);
686 gl.drawElements(GL_TRIANGLES, (glw::GLsizei)(indices
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkTextureCompressor_R11EAC.cpp20 // |base_cw|mod|mul| ----------------- indices -------------------
59 uint64_t indices) {
62 SkASSERT(indices < (static_cast<uint64_t>(1) << 48));
67 return SkEndian_SwapBE64(b | m | p | indices);
110 // Finally, choose the proper palette and indices
118 // and update the indices with the choice. Also store the error
121 uint64_t indices = 0;
144 indices <<= 3;
145 indices |= bestIndex;
148 SkASSERT(indices < (static_cas
58 pack_r11eac_block(uint16_t base_cw, uint16_t palette, uint16_t multiplier, uint64_t indices) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp104 triangle_list_indices<> indices; local
130 indices.flip = face > 0;
154 indices.poly(teeth * segs + k, j, teeth * segs + nextk);
157 indices.poly(teeth * segs + nextj * divs, j, nextj);
161 indices.base += teeth * segs * (1 + divs);
165 indices.flip = true;
197 indices.poly(0, 1, 3, 2);
198 indices.base += 4;
204 indices.flip = true;
215 indices
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp104 triangle_list_indices<> indices; local
130 indices.flip = face > 0;
154 indices.poly(teeth * segs + k, j, teeth * segs + nextk);
157 indices.poly(teeth * segs + nextj * divs, j, nextj);
161 indices.base += teeth * segs * (1 + divs);
165 indices.flip = true;
197 indices.poly(0, 1, 3, 2);
198 indices.base += 4;
204 indices.flip = true;
215 indices
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_configuration.py208 indices = range(r)
209 yield tuple(pool[i] for i in indices)
212 if indices[i] != i + n - r:
216 indices[i] += 1 # pylint: disable=W0631
218 indices[j] = indices[j - 1] + 1
219 yield tuple(pool[i] for i in indices)
/external/deqp/modules/gles2/functional/
H A Des2fBufferTestUtil.cpp339 static void computeIndices (vector<deUint16>& indices, int gridSizeX, int gridSizeY) argument
341 indices.resize(3 * 2 * gridSizeX * gridSizeY);
352 indices[quadNdx*6 + 0] = (deUint16)v10;
353 indices[quadNdx*6 + 1] = (deUint16)v00;
354 indices[quadNdx*6 + 2] = (deUint16)v01;
356 indices[quadNdx*6 + 3] = (deUint16)v10;
357 indices[quadNdx*6 + 4] = (deUint16)v01;
358 indices[quadNdx*6 + 5] = (deUint16)v11;
421 vector<deUint16> indices;
429 computeIndices(indices, maxQuads
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DExternalPopupMenu.cpp153 void ExternalPopupMenu::didAcceptIndices(const WebVector<int>& indices) argument
167 if (!indices.size())
170 for (size_t i = 0; i < indices.size(); ++i)
171 m_popupMenuClient->listBoxSelectItem(toPopupMenuItemIndex(indices[i], *m_popupMenuClient), (i > 0), false, (i == indices.size() - 1));
/external/chromium_org/third_party/freetype/src/psaux/
H A Dt1cmap.c183 cmap->indices = encoding->char_index;
185 FT_ASSERT( cmap->indices != NULL );
195 cmap->indices = NULL;
210 result = cmap->indices[char_code];
231 result = cmap->indices[char_code];
/external/chromium_org/third_party/icu/source/test/letest/
H A Dxmlreader.cpp150 UnicodeString result_indices = UNICODE_STRING_SIMPLE("result-indices");
180 UnicodeString text, glyphs, indices, positions; local
214 indices = element->getText(TRUE);
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
242 DELETE_ARRAY(expected.indices);
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A Dxmlreader.cpp150 UnicodeString result_indices = UNICODE_STRING_SIMPLE("result-indices");
180 UnicodeString text, glyphs, indices, positions; local
214 indices = element->getText(TRUE);
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
242 DELETE_ARRAY(expected.indices);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
H A Dsm4.h257 } indices[3]; member in struct:sm4_op
261 return !indices[i].reg.get() && indices[i].disp >= 0 && (int64_t)(int32_t)indices[i].disp == indices[i].disp;
/external/freetype/src/psaux/
H A Dt1cmap.c183 cmap->indices = encoding->char_index;
185 FT_ASSERT( cmap->indices != NULL );
195 cmap->indices = NULL;
210 result = cmap->indices[char_code];
231 result = cmap->indices[char_code];
/external/icu/icu4c/source/test/letest/
H A Dxmlreader.cpp150 UnicodeString result_indices = UNICODE_STRING_SIMPLE("result-indices");
180 UnicodeString text, glyphs, indices, positions; local
214 indices = element->getText(TRUE);
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
242 DELETE_ARRAY(expected.indices);
/external/icu/icu4c/source/test/perf/leperf/
H A Dxmlreader.cpp150 UnicodeString result_indices = UNICODE_STRING_SIMPLE("result-indices");
180 UnicodeString text, glyphs, indices, positions; local
214 indices = element->getText(TRUE);
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
242 DELETE_ARRAY(expected.indices);
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
H A Dsm4.h257 } indices[3]; member in struct:sm4_op
261 return !indices[i].reg.get() && indices[i].disp >= 0 && (int64_t)(int32_t)indices[i].disp == indices[i].disp;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dt1cmap.c183 cmap->indices = encoding->char_index;
185 FT_ASSERT( cmap->indices != NULL );
195 cmap->indices = NULL;
210 result = cmap->indices[char_code];
231 result = cmap->indices[char_code];
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DSelectPopupDialog.java116 int[] indices = new int[selectedCount];
119 indices[j++] = sparseArray.keyAt(i);
122 return indices;
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DIndexedPointsTest.cpp72 std::array<IndexType, mPointCount> indices = { 0, 1, 2, 3 }; local
75 glBufferData(GL_ELEMENT_ARRAY_BUFFER, indices.size() * sizeof(IndexType), indices.data(), GL_STATIC_DRAW);
/external/chromium_org/third_party/angle/tests/perf_tests/
H A DTexSubImage.cpp117 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
120 glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW);
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dfind_pred_coefs_FIX.c79 if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
95 silk_quant_LTP_gains( psEncCtrl->LTPCoef_Q14, psEnc->sCmn.indices.LTPIndex, &psEnc->sCmn.indices.PERIndex,
/external/chromium_org/third_party/opus/src/silk/float/
H A Dfind_pred_coefs_FLP.c58 if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
69 silk_quant_LTP_gains_FLP( psEncCtrl->LTPCoef, psEnc->sCmn.indices.LTPIndex, &psEnc->sCmn.indices.PERIndex,

Completed in 4204 milliseconds

1234567891011>>