HomeSort by relevance Sort by last modified time
    Searched defs:minIndex (Results 1 - 25 of 28) sorted by null

1 2

  /external/icu4c/tools/toolutil/
denseranges.cpp 65 int32_t minIndex=-1;
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
69 minIndex=i;
72 return minIndex;
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
IndexDataManager.h 26 UINT minIndex;
79 UINT lookupRange(intptr_t offset, GLsizei count, UINT *minIndex, UINT *maxIndex); // Returns the offset into the index buffer, or -1 if not found
80 void addRange(intptr_t offset, GLsizei count, UINT minIndex, UINT maxIndex, UINT streamOffset);
90 UINT minIndex;
IndexDataManager.cpp 70 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
72 *minIndex = indices[0];
77 if (*minIndex > indices[i]) *minIndex = indices[i];
82 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
86 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex);
90 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex);
94 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex);
132 streamOffset = staticBuffer->lookupRange(offset, count, &translated->minIndex, &translated->maxIndex);
137 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex)
    [all...]
  /external/icu4c/test/letest/
cletest.c 696 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1;
705 if (ix < minIndex) {
706 minIndex = ix;
710 if (minIndex != charIndex) {
711 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
712 run, lineNumber, charIndex, minIndex);
letest.cpp     [all...]
  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 360 ssize_t minIndex = -1;
405 minIndex = i;
409 return minIndex;
416 ssize_t minIndex = fetchTrackSamples(timeUs, mode);
418 if (minIndex < 0) {
428 ssize_t minIndex = fetchTrackSamples();
430 if (minIndex < 0) {
434 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex);
446 ssize_t minIndex = fetchTrackSamples();
448 if (minIndex < 0)
    [all...]
MPEG2TSWriter.cpp 660 size_t minIndex = 0;
675 minIndex = i;
685 minTimeUs / 1E6, minIndex);
687 source = mSources.editItemAt(minIndex);
693 writeAccessUnit(minIndex, buffer);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 191 int minIndex = mCurrent.get(0).index;
192 int maxIndex = minIndex;
195 minIndex = Math.min(d.index, minIndex);
200 int from = Math.max(minIndex - 5, 0);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Utils.java 150 int minIndex = 0;
159 minIndex = i;
162 return minIndex;
  /frameworks/native/opengl/libs/GLES_trace/src/
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, maxIndex, time)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 515 int minIndex = 0;
568 minIndex = index;
588 return minIndex;
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 577 int minIndex = index;
579 if (compareElements(i, minIndex) < 0) {
580 minIndex = i;
583 return minIndex;
  /external/jdiff/src/jdiff/
RootDocToXML.java     [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 102 int minIndex = 65536;
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));
  /external/skia/legacy/src/core/
SkPath.cpp     [all...]
  /external/skia/src/core/
SkPath.cpp     [all...]
  /external/guava/guava/lib/
jdiff.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 1085 milliseconds

1 2