HomeSort by relevance Sort by last modified time
    Searched refs:iMax (Results 1 - 25 of 31) sorted by null

1 2

  /ndk/tests/device/test-stlport_shared-exception/jni/
eh44.cpp 6 static unsigned int iMax;
12 if (iCounter++ == iMax)
30 iMax = 1;
  /ndk/tests/device/test-stlport_static-exception/jni/
eh44.cpp 6 static unsigned int iMax;
12 if (iCounter++ == iMax)
30 iMax = 1;
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
Sphere.java 54 int iMax = nSlices + 1;
55 int nVertices = iMax * iMax;
82 float[] vLineBuffer = new float[iMax * 5];
83 for (int i = 0; i < iMax; i++) {
84 for (int j = 0; j < iMax; j++) {
115 indexBuffer[index++] = (short) (i * iMax + j);
116 indexBuffer[index++] = (short) (i1 * iMax + j);
117 indexBuffer[index++] = (short) (i1 * iMax + j1);
118 indexBuffer[index++] = (short) (i * iMax + j)
    [all...]
  /packages/apps/Gallery2/jni/filters/
hsv.c 34 int iMin,iMax,chroma;
47 iMax = MAX (ri, bi);
50 iMax = MAX (gi, bi);
54 chroma = iMax - iMin;
56 rv = (short)( iMax << ABITS);
62 rs = (short)((k1*chroma)/iMax);
68 if ( ri == iMax ) {
71 } else if (gi == iMax)
73 else // (bi == iMax )
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
shadows.rs 53 int iMin,iMax,chroma;
61 iMax = max (ri, bi);
64 iMax = max (gi, bi);
68 chroma = iMax - iMin;
70 rv = (short)( iMax << ABITS);
76 rs = (short)((k1*chroma)/iMax);
82 if ( ri == iMax ) {
85 } else if (gi == iMax)
87 else // (bi == iMax )
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
shadows.rs 53 int iMin,iMax,chroma;
61 iMax = max (ri, bi);
64 iMax = max (gi, bi);
68 chroma = iMax - iMin;
70 rv = (short)( iMax << ABITS);
76 rs = (short)((k1*chroma)/iMax);
82 if ( ri == iMax ) {
85 } else if (gi == iMax)
87 else // (bi == iMax )
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
shadows.rs 53 int iMin,iMax,chroma;
61 iMax = max (ri, bi);
64 iMax = max (gi, bi);
68 chroma = iMax - iMin;
70 rv = (short)( iMax << ABITS);
76 rs = (short)((k1*chroma)/iMax);
82 if ( ri == iMax ) {
85 } else if (gi == iMax)
87 else // (bi == iMax )
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
saturation.rs 106 int iMin,iMax,chroma;
114 iMax = max (ri, bi);
117 iMax = max (gi, bi);
121 rv = (short) (iMax << ABITS);
127 chroma = iMax - iMin;
128 rs = (short) ((k1 * chroma) / iMax);
133 if ( ri == iMax ) {
141 if (gi == iMax) {
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerArray.java 240 int iMax = array.length - 1;
241 if (iMax == -1)
248 if (i == iMax)
AtomicLongArray.java 239 int iMax = array.length - 1;
240 if (iMax == -1)
247 if (i == iMax)
AtomicReferenceArray.java 181 int iMax = array.length - 1;
182 if (iMax == -1)
189 if (i == iMax)
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDoubleArray.java 217 int iMax = length() - 1;
218 if (iMax == -1) {
223 StringBuilder b = new StringBuilder((17 + 2) * (iMax + 1));
227 if (i == iMax) {
  /external/chromium_org/third_party/sqlite/src/src/
test_func.c 45 int iMin, iMax, n, r, i;
56 iMax = sqlite3_value_int(argv[1]);
57 if( iMax<iMin ) iMax = iMin;
58 if( iMax>=sizeof(zBuf) ) iMax = sizeof(zBuf)-1;
60 if( iMax>iMin ){
63 n += r%(iMax + 1 - iMin);
wal.c 207 ** iMax be the value between iKey and iUnused, closest to iUnused,
208 ** where aHash[iMax]==P. If there is no iMax entry (if there exists
210 ** current index block. Otherwise the iMax-th mapping entry of the
    [all...]
  /external/chromium_org/third_party/skia/src/pdf/
SkTSet.h 331 int iMax = fSetArray->count();
333 while (iMin < iMax - 1) {
334 int iMid = (iMin + iMax) / 2;
336 iMax = iMid;
  /external/skia/src/pdf/
SkTSet.h 331 int iMax = fSetArray->count();
333 while (iMin < iMax - 1) {
334 int iMid = (iMin + iMax) / 2;
336 iMax = iMid;
  /external/opencv/cv/src/
cvthresh.cpp 120 int iThresh, iMax;
123 v.f = maxval; iMax = v.i;
136 idst[j] = ((CV_TOGGLE_FLT(temp) <= iThresh) - 1) & iMax;
147 idst[j] = ((CV_TOGGLE_FLT(temp) > iThresh) - 1) & iMax;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
MtpDeviceIndex.java 258 int iMax = mBuckets.length - 1;
259 while (iMax >= iMin) {
260 int iMid = (iMax + iMin) / 2;
264 iMax = iMid - 1;
  /external/chromium_org/third_party/sqlite/src/test/
threadtest3.c 1051 i64 iMax = execsql_i64(&err, &db, "SELECT max(cnt) FROM t1");
1052 if( iMax+1==iNextWrite ) break;
    [all...]
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
  /external/droiddriver/libs/
guava-13.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 

Completed in 1510 milliseconds

1 2