HomeSort by relevance Sort by last modified time
    Searched refs:indices (Results 151 - 175 of 1097) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 28 static int fillIndices(uint16_t indices[], int xCount, int yCount) {
29 uint16_t* startIndices = indices;
34 *indices++ = n;
35 *indices++ = n + xCount + 2;
36 *indices++ = n + 1;
38 *indices++ = n;
39 *indices++ = n + xCount + 1;
40 *indices++ = n + xCount + 2;
46 return static_cast<int>(indices - startIndices);
190 // allocate 2 times, one for verts, one for texs, plus indices
195 uint16_t* indices = (uint16_t*)(texs + vCount); local
    [all...]
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR_MKL.h 67 m_colsPermutation.indices().setZero(); \
71 LAPACKE_##MKLPREFIX##geqp3( matrix_order, rows, cols, (MKLTYPE*)m_qr.data(), lda, (lapack_int*)m_colsPermutation.indices().data(), (MKLTYPE*)m_hCoeffs.data()); \
76 lapack_int *perm = m_colsPermutation.indices().data(); \
  /external/icu/icu4c/source/test/perf/leperf/
leperf.cpp 38 le_int32 *indices = NULL; local
44 indices = LE_NEW_ARRAY(le_int32, glyphCount + 10);
51 delete indices;
  /external/skia/src/utils/
SkMeshUtils.cpp 20 bool SkMeshIndices::init(SkPoint tex[], uint16_t indices[],
41 fIndices = indices;
49 // compute the indices
100 idx.indices(), idx.indexCount(), p);
SkNinePatch.cpp 28 static int fillIndices(uint16_t indices[], int xCount, int yCount) {
29 uint16_t* startIndices = indices;
34 *indices++ = n;
35 *indices++ = n + xCount + 2;
36 *indices++ = n + 1;
38 *indices++ = n;
39 *indices++ = n + xCount + 1;
40 *indices++ = n + xCount + 2;
46 return static_cast<int>(indices - startIndices);
190 // allocate 2 times, one for verts, one for texs, plus indices
195 uint16_t* indices = (uint16_t*)(texs + vCount); local
    [all...]
  /external/opencv/otherlibs/highgui/
utils.cpp 444 uchar* FillColorRow8( uchar* data, uchar* indices, int len, PaletteEntry* palette )
449 *((PaletteEntry*)(data-3)) = palette[*indices++];
451 PaletteEntry clr = palette[indices[0]];
457 uchar* FillGrayRow8( uchar* data, uchar* indices, int len, uchar* palette )
462 data[i] = palette[indices[i]];
468 uchar* FillColorRow4( uchar* data, uchar* indices, int len, PaletteEntry* palette )
474 int idx = *indices++;
479 int idx = indices[0];
492 uchar* FillGrayRow4( uchar* data, uchar* indices, int len, uchar* palette )
497 int idx = *indices++
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_media_stream_track_host_base.h 42 // Sends a set of buffer indices to the corresponding
44 // The resource adds the buffer indices into its
46 void SendEnqueueBuffersMessageToPlugin(const std::vector<int32_t>& indices);
  /external/chromium_org/ppapi/proxy/
media_stream_track_resource_base.h 57 const std::vector<int32_t>& indices);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.cpp 39 short indices[2]; member in struct:WebCore::SameSizeAsElementRareData
  /external/chromium_org/third_party/WebKit/Source/web/
ExternalPopupMenu.h 73 virtual void didAcceptIndices(const WebVector<int>& indices) OVERRIDE;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexDataManager.h 52 GLenum prepareIndexData(GLenum type, GLsizei count, gl::Buffer *arrayElementBuffer, const GLvoid *indices, TranslatedIndexData *translated);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_vbuf.h 101 * Draw indexed primitives. Note that indices are ushort. The driver
105 const ushort *indices,
  /external/chromium_org/third_party/opus/src/silk/fixed/
find_LPC_FIX.c 60 psEncC->indices.NLSFInterpCoef_Q2 = 4;
89 /* Search over interpolation indices to find the one with lowest residual energy */
139 psEncC->indices.NLSFInterpCoef_Q2 = (opus_int8)k;
144 if( psEncC->indices.NLSFInterpCoef_Q2 == 4 ) {
149 silk_assert( psEncC->indices.NLSFInterpCoef_Q2 == 4 || ( psEncC->useInterpolatedNLSFs && !psEncC->first_frame_after_reset && psEncC->nb_subfr == MAX_NB_SUBFR ) );
  /external/libopus/silk/fixed/
find_LPC_FIX.c 60 psEncC->indices.NLSFInterpCoef_Q2 = 4;
89 /* Search over interpolation indices to find the one with lowest residual energy */
139 psEncC->indices.NLSFInterpCoef_Q2 = (opus_int8)k;
144 if( psEncC->indices.NLSFInterpCoef_Q2 == 4 ) {
149 silk_assert( psEncC->indices.NLSFInterpCoef_Q2 == 4 || ( psEncC->useInterpolatedNLSFs && !psEncC->first_frame_after_reset && psEncC->nb_subfr == MAX_NB_SUBFR ) );
  /external/llvm/lib/CodeGen/
Spiller.cpp 105 SmallVector<unsigned, 2> indices; local
114 indices.push_back(i);
121 for (unsigned i = 0; i < indices.size(); ++i) {
122 unsigned mopIdx = indices[i];
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vbuf.h 101 * Draw indexed primitives. Note that indices are ushort. The driver
105 const ushort *indices,
  /external/chromium_org/content/renderer/
external_popup_menu.cc 75 const std::vector<int>& indices) {
81 popup_menu_client_->didAcceptIndices(indices);
  /external/chromium_org/third_party/angle/samples/angle/simple_texture_2d/
SimpleTexture2D.cpp 93 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
119 glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices);
  /external/chromium_org/third_party/angle/samples/angle/simple_texture_cubemap/
SimpleTextureCubemap.cpp 113 glDrawElements(GL_TRIANGLES, mSphere.indices.size(), GL_UNSIGNED_SHORT, mSphere.indices.data());
  /external/chromium_org/third_party/opus/src/silk/
NLSF_decode.c 37 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 */
  /external/chromium_org/ui/gfx/geometry/
matrix3_f.cc 17 // This is only to make accessing indices self-explanatory.
176 int indices[3] = {0, 1, 2};
179 std::swap(indices[2], indices[1]);
184 std::swap(indices[1], indices[0]);
189 std::swap(indices[2], indices[1]);
196 eigenvectors->set(indices[i], i, 1.0f);
  /external/deqp/framework/referencerenderer/
rrRenderer.hpp 81 const void* const indices; member in struct:rr::DrawIndices
90 PrimitiveList (PrimitiveType primitiveType, int numElements, const DrawIndices& indices); // !< primitive list for drawElements-like call
102 const void* const m_indices; // !< if indices is NULL, indices is interpreted as [first (== baseVertex) + 0, first + 1, first + 2, ...]
  /external/libcxx/src/
hash.cpp 76 // potential primes = 210*k + indices[i], k >= 1
79 const unsigned indices[] = member in namespace:__anon27390
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[in]
    [all...]
  /external/libopus/silk/
NLSF_decode.c 37 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 */
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
hash.cpp 76 // potential primes = 210*k + indices[i], k >= 1
79 const unsigned indices[] = member in namespace:__anon42864
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[in]
    [all...]

Completed in 669 milliseconds

1 2 3 4 5 67 8 91011>>