Searched refs:minIndex (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/
H A DNuMediaExtractor.cpp332 ssize_t minIndex = -1; local
377 minIndex = i;
381 return minIndex;
388 ssize_t minIndex = fetchTrackSamples(timeUs, mode); local
390 if (minIndex < 0) {
400 ssize_t minIndex = fetchTrackSamples(); local
402 if (minIndex < 0) {
406 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex);
418 ssize_t minIndex = fetchTrackSamples(); local
420 if (minIndex <
464 ssize_t minIndex = fetchTrackSamples(); local
479 ssize_t minIndex = fetchTrackSamples(); local
496 ssize_t minIndex = fetchTrackSamples(); local
[all...]
H A DMPEG2TSWriter.cpp660 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 Dgltrace_fixup.cpp474 GLuint minIndex, GLuint maxIndex, nsecs_t startTime) {
477 int minIndex, int maxIndex) */
520 for (GLuint i = minIndex; i < maxIndex; i++) {
530 arg_min->add_intvalue(minIndex);
547 GLuint *minIndex, GLuint *maxIndex) {
549 *minIndex = UINT_MAX;
563 if (index < *minIndex) *minIndex = index;
569 GLuint minIndex, GLuint maxIndex, nsecs_t time) {
591 minIndex, maxInde
471 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
546 findMinAndMaxIndices(GLvoid *indices, GLsizei count, GLenum type, GLuint *minIndex, GLuint *maxIndex) argument
568 trace_VertexAttribPointerData(GLTraceContext *context, GLuint minIndex, GLuint maxIndex, nsecs_t time) argument
623 GLuint minIndex, maxIndex; local
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp102 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));
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V21.java883 final int minIndex;
885 minIndex = semiColonIndex;
887 minIndex = colonIndex;
889 minIndex = Math.min(colonIndex, semiColonIndex);
891 return line.substring(0, minIndex).toUpperCase();

Completed in 2247 milliseconds