Searched defs:minIndex (Results 1 - 4 of 4) sorted by relevance
/frameworks/av/media/libstagefright/ |
H A D | NuMediaExtractor.cpp | 360 ssize_t minIndex = -1; local 405 minIndex = i; 409 return minIndex; 416 ssize_t minIndex = fetchTrackSamples(timeUs, mode); local 418 if (minIndex < 0) { 428 ssize_t minIndex = fetchTrackSamples(); local 430 if (minIndex < 0) { 434 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); 446 ssize_t minIndex = fetchTrackSamples(); local 448 if (minIndex < 492 ssize_t minIndex = fetchTrackSamples(); local 507 ssize_t minIndex = fetchTrackSamples(); local 524 ssize_t minIndex = fetchTrackSamples(); local [all...] |
H A D | MPEG2TSWriter.cpp | 660 size_t minIndex = 0; local 675 minIndex = i; 685 minTimeUs / 1E6, minIndex); 687 source = mSources.editItemAt(minIndex); 693 writeAccessUnit(minIndex, buffer);
|
/frameworks/native/opengl/libs/GLES_trace/src/ |
H A D | gltrace_fixup.cpp | 472 GLuint minIndex, GLuint maxIndex, nsecs_t startTime) { 475 int minIndex, int maxIndex) */ 518 for (GLuint i = minIndex; i < maxIndex; i++) { 528 arg_min->add_intvalue(minIndex); 545 GLuint *minIndex, GLuint *maxIndex) { 547 *minIndex = UINT_MAX; 561 if (index < *minIndex) *minIndex = index; 567 GLuint minIndex, GLuint maxIndex, nsecs_t time) { 589 minIndex, maxInde 469 trace_glVertexAttribPointerData(GLTraceContext *context, GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr, GLuint minIndex, GLuint maxIndex, nsecs_t startTime) argument 544 findMinAndMaxIndices(GLvoid *indices, GLsizei count, GLenum type, GLuint *minIndex, GLuint *maxIndex) argument 566 trace_VertexAttribPointerData(GLTraceContext *context, GLuint minIndex, GLuint maxIndex, nsecs_t time) argument 621 GLuint minIndex, maxIndex; local [all...] |
/frameworks/base/core/jni/android/opengl/ |
H A D | util.cpp | 102 int minIndex = 65536; local 106 if ( index < minIndex ) { 107 minIndex = index; 118 transformedIndexCount = maxIndex - minIndex + 1; 127 const float* pSrc = pPositions + 3 * minIndex; 140 memcpy(pDest , pTransformed + 4 * (pIndices[i ] - minIndex), 4 * sizeof(float)); 141 memcpy(pDest + 4, pTransformed + 4 * (pIndices[i + 1] - minIndex), 4 * sizeof(float)); 142 memcpy(pDest + 8, pTransformed + 4 * (pIndices[i + 2] - minIndex), 4 * sizeof(float));
|
Completed in 115 milliseconds