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

1 2 3

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexRangeCache.cpp 23 unsigned int minIndex = indices[0];
28 if (minIndex > indices[i]) minIndex = indices[i];
32 return RangeUI(minIndex, maxIndex);
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/skia/src/core/
SkTileGrid.h 109 int minIndex = tileCount;
118 minIndex = tile;
129 for (int tile = minIndex; tile <= maxIndex; ++tile) {
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/test/letest/
cletest.c 697 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1;
706 if (ix < minIndex) {
707 minIndex = ix;
711 if (minIndex != charIndex) {
712 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
713 run, lineNumber, charIndex, minIndex);
letest.cpp     [all...]
  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 362 ssize_t minIndex = -1;
407 minIndex = i;
411 return minIndex;
418 ssize_t minIndex = fetchTrackSamples(timeUs, mode);
420 if (minIndex < 0) {
430 ssize_t minIndex = fetchTrackSamples();
432 if (minIndex < 0) {
436 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex);
448 ssize_t minIndex = fetchTrackSamples();
450 if (minIndex < 0)
    [all...]
MPEG2TSWriter.cpp 661 size_t minIndex = 0;
676 minIndex = i;
686 minTimeUs / 1E6, minIndex);
688 source = mSources.editItemAt(minIndex);
694 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);
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
TiltWatchFaceService.java 441 final int minIndex = mTime.minute * 360 / 60;
454 Matrix.multiplyMM(mMvpMatrix, 0, vpMatrix, 0, mModelMatrices[minIndex], 0);
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
TiltWatchFaceService.java 441 final int minIndex = mTime.minute * 360 / 60;
454 Matrix.multiplyMM(mMvpMatrix, 0, vpMatrix, 0, mModelMatrices[minIndex], 0);
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
TiltWatchFaceService.java 441 final int minIndex = mTime.minute * 360 / 60;
454 Matrix.multiplyMM(mMvpMatrix, 0, vpMatrix, 0, mModelMatrices[minIndex], 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;
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 515 int minIndex = 0;
568 minIndex = index;
588 return minIndex;
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCommon.cpp 334 int minIndex = SkMin32(startIndex, endIndex);
335 int sumWinding = current->windSum(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...]
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 334 int minIndex = SkMin32(startIndex, endIndex);
335 int sumWinding = current->windSum(minIndex);
  /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));
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_fixup.cpp 539 GLuint minIndex, GLuint maxIndex, nsecs_t startTime) {
542 int minIndex, int maxIndex) */
585 for (GLuint i = minIndex; i < maxIndex; i++) {
595 arg_min->add_intvalue(minIndex);
612 GLuint *minIndex, GLuint *maxIndex) {
614 *minIndex = UINT_MAX;
628 if (index < *minIndex) *minIndex = index;
634 GLuint minIndex, GLuint maxIndex, nsecs_t time) {
656 minIndex, maxIndex, time)
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Renderer11.cpp     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Renderer9.cpp     [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp     [all...]

Completed in 1068 milliseconds

1 2 3