Searched refs:indices (Results 251 - 275 of 647) sorted by relevance

<<11121314151617181920>>

/external/libopus/silk/fixed/
H A Dnoise_shape_analysis_FIX.c190 if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
204 if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
206 psEnc->sCmn.indices.quantOffsetType = 0;
231 psEnc->sCmn.indices.quantOffsetType = 0;
233 psEnc->sCmn.indices.quantOffsetType = 1;
379 if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
416 if( USE_HARM_SHAPING && psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_sm4.cpp848 idx = dcl.op->indices[0].disp;
1141 sm4_op *op = insn->ops[s + nDstOpnds]->indices[dim].reg.get();
1161 sm4_op *op = insn->ops[d]->indices[dim].reg.get();
1182 int idx = op->indices[0].disp;
1212 int idx = op.indices[0].disp;
1254 idx = op.indices[0].disp;
1273 idx += op.indices[1].disp;
1279 idx += op.indices[0].disp;
1290 dim = op.indices[0].disp;
1291 off = (op.indices[
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_sm4.cpp848 idx = dcl.op->indices[0].disp;
1141 sm4_op *op = insn->ops[s + nDstOpnds]->indices[dim].reg.get();
1161 sm4_op *op = insn->ops[d]->indices[dim].reg.get();
1182 int idx = op->indices[0].disp;
1212 int idx = op.indices[0].disp;
1254 idx = op.indices[0].disp;
1273 idx += op.indices[1].disp;
1279 idx += op.indices[0].disp;
1290 dim = op.indices[0].disp;
1291 off = (op.indices[
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawTarget.cpp174 void** indices) {
178 SkASSERT(indices);
182 acquired = this->onReserveIndexSpace(indexCount, indices);
187 } else if (indices) {
188 *indices = NULL;
197 void** indices) {
209 if (!this->reserveIndexSpace(indexCount, indices)) {
562 const uint32_t indices[], int count,
567 SkASSERT(indices);
579 this->onDrawPaths(pathRange, indices, coun
173 reserveIndexSpace(int indexCount, void** indices) argument
194 reserveVertexAndIndexSpace(int vertexCount, int indexCount, void** vertices, void** indices) argument
561 drawPaths(const GrPathRange* pathRange, const uint32_t indices[], int count, const float transforms[], PathTransformType transformsType, SkPath::FillType fill) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLPathRendering.cpp223 void GrGLPathRendering::drawPaths(const GrPathRange* pathRange, const uint32_t indices[], int count, argument
250 count, GR_GL_UNSIGNED_INT, indices, baseID, fillMode,
255 count, GR_GL_UNSIGNED_INT, indices, baseID, 0xffff, writeMask,
260 count, GR_GL_UNSIGNED_INT, indices, baseID, fillMode, writeMask,
267 count, GR_GL_UNSIGNED_INT, indices, baseID, fillMode,
273 count, GR_GL_UNSIGNED_INT, indices, baseID, 0xffff,
H A DGrGLPathRendering.h44 virtual void drawPaths(const GrPathRange*, const uint32_t indices[], int count,
/external/eigen/Eigen/src/LU/
H A DFullPivLU.h421 // the permutations are stored as int indices, so just to be sure:
620 for(Index i = 0; i < rank(); ++i) dst.row(dec().permutationQ().indices().coeff(i)) = -m.row(i).tail(dimker);
621 for(Index i = rank(); i < cols; ++i) dst.row(dec().permutationQ().indices().coeff(i)).setZero();
622 for(Index k = 0; k < dimker; ++k) dst.coeffRef(dec().permutationQ().indices().coeff(rank()+k), k) = Scalar(1);
660 dst.col(i) = originalMatrix().col(dec().permutationQ().indices().coeff(pivots.coeff(i)));
718 dst.row(dec().permutationQ().indices().coeff(i)) = c.row(i);
720 dst.row(dec().permutationQ().indices().coeff(i)).setZero();
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h294 m_perm_c.indices().setLinSpaced(n, 0,n-1);
299 internal::coletree(mat, m_etree, m_firstRowElt, m_outputPerm_c.indices().data());
339 Index p = m_perm_c.size() ? m_perm_c.indices()(i) : i;
513 std::swap(m_pivotperm.indices()(j), m_pivotperm.indices()[j+1]);
516 internal::coletree(m_pmat, m_etree, m_firstRowElt, m_pivotperm.indices().data());
/external/deqp/modules/glshared/
H A DglsFragmentOpUtil.cpp186 const deUint8 indices[] = { 0, 2, 1, 1, 2, 3 }; local
203 glu::pr::Triangles(DE_LENGTH_OF_ARRAY(indices), &indices[0]));
H A DglsShaderPerformanceMeasurer.cpp81 DE_ASSERT((gridSizeX + 1)*(gridSizeY + 1) <= (1<<16)); // Must fit into 16-bit indices.
181 // Generate indices.
183 std::vector<deUint16> indices;
184 generateIndices(indices, m_gridSizeX, m_gridSizeY);
188 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, (GLsizeiptr)(indices.size()*sizeof(deUint16)), &indices[0], GL_STATIC_DRAW);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderer11.h85 virtual gl::Error applyIndexBuffer(const GLvoid *indices, gl::Buffer *elementArrayBuffer, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo);
89 virtual void drawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices,
209 void drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer);
210 void drawTriangleFan(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer, int instances);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderer9.h86 virtual gl::Error applyIndexBuffer(const GLvoid *indices, gl::Buffer *elementArrayBuffer, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo);
91 virtual void drawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices,
212 void drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer);
213 void drawIndexedPoints(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_analyze.cpp110 unsigned idx = (unsigned)op.indices[0].disp;
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dindirect_vertex_array.c72 const GLvoid * indices);
74 const GLvoid * indices);
721 const GLvoid * indices)
758 index = (unsigned) (((GLuint *) indices)[i]);
761 index = (unsigned) (((GLushort *) indices)[i]);
764 index = (unsigned) (((GLubyte *) indices)[i]);
788 const GLvoid * indices)
818 const GLuint *ui_ptr = (const GLuint *) indices + req_element;
827 const GLushort *us_ptr = (const GLushort *) indices + req_element;
836 const GLubyte *ub_ptr = (const GLubyte *) indices
720 emit_DrawElements_none(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
787 emit_DrawElements_old(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
989 __indirect_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
1010 __indirect_glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) argument
1062 __indirect_glMultiDrawElementsEXT(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRecords.h290 uint16_t* indices,
299 , indices(indices)
309 PODArray<uint16_t> indices; member in struct:SkRecords::DrawVertices
283 DrawVertices(const SkPaint& paint, SkCanvas::VertexMode vmode, int vertexCount, SkPoint* vertices, SkPoint* texs, SkColor* colors, SkXfermode* xmode, uint16_t* indices, int indexCount) argument
/external/chromium_org/v8/test/cctest/
H A Dtest-global-handles.cc332 int indices[kArrayLength]; local
337 indices[i] = -1;
343 isolate, *v8::Utils::OpenHandle(*object), &indices[i]);
358 local = v8::Utils::ToLocal(eternal_handles->Get(indices[i]));
/external/eigen/Eigen/src/MetisSupport/
H A DMetisSupport.h127 matperm.indices()(iperm(j)) = j;
/external/eigen/Eigen/src/OrderingMethods/
H A DOrdering.h47 * \tparam Index The type of indices of the matrix
91 * \tparam Index The type of indices of the matrix
148 for (Index i = 0; i < n; i++) perm.indices()(p(i)) = i;
/external/flac/libFLAC/
H A Dformat.c470 if(cue_sheet->tracks[i].indices[0].number > 1) {
477 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0) {
483 if(cue_sheet->tracks[i].indices[j].number != cue_sheet->tracks[i].indices[j-1].number + 1) {
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_analyze.cpp110 unsigned idx = (unsigned)op.indices[0].disp;
/external/mesa3d/src/glx/
H A Dindirect_vertex_array.c72 const GLvoid * indices);
74 const GLvoid * indices);
721 const GLvoid * indices)
758 index = (unsigned) (((GLuint *) indices)[i]);
761 index = (unsigned) (((GLushort *) indices)[i]);
764 index = (unsigned) (((GLubyte *) indices)[i]);
788 const GLvoid * indices)
818 const GLuint *ui_ptr = (const GLuint *) indices + req_element;
827 const GLushort *us_ptr = (const GLushort *) indices + req_element;
836 const GLubyte *ub_ptr = (const GLubyte *) indices
720 emit_DrawElements_none(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
787 emit_DrawElements_old(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
989 __indirect_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
1010 __indirect_glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) argument
1062 __indirect_glMultiDrawElementsEXT(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount) argument
[all...]
/external/skia/include/core/
H A DSkDraw.h68 const uint16_t indices[], int ptCount,
/external/skia/src/core/
H A DSkBBoxRecord.h55 const uint16_t indices[], int indexCount,
H A DSkRecords.h255 uint16_t* indices,
264 , indices(indices)
274 PODArray<uint16_t> indices; member in struct:SkRecords::DrawVertices
248 DrawVertices(const SkPaint& paint, SkCanvas::VertexMode vmode, int vertexCount, SkPoint* vertices, SkPoint* texs, SkColor* colors, SkXfermode* xmode, uint16_t* indices, int indexCount) argument
/external/skia/src/gpu/
H A DGrDrawTarget.h121 * There are three types of "sources" of geometry (vertices and indices) for
123 * indices and vertices can use different source types. Once a source is
167 * Reserves space for vertices and/or indices. Zero can be specifed as
169 * space for only indices or only vertices. If zero is specifed for
174 * and indices pointers will point to the space created.
180 * The pointers to the space allocated for vertices and indices remain valid
187 * @param indexCount the number of indices to reserve space for. Can be 0.
190 * @param indices will point to reserved index space if indexCount is
196 void** indices);
199 * Provides hints to caller about the number of vertices and indices
620 void* indices() const { SkASSERT(this->succeeded()); return fIndices; } function in class:GrDrawTarget::AutoReleaseGeometry
[all...]

Completed in 2982 milliseconds

<<11121314151617181920>>