/external/jmonkeyengine/engine/src/test/jme3test/model/shape/ |
TestCustomMesh.java | 110 int colorIndex = 0; 115 colorArray[colorIndex++]= 0.1f+(.2f*i); 117 colorArray[colorIndex++]= 0.9f-(0.2f*i); 119 colorArray[colorIndex++]= 0.5f; 121 colorArray[colorIndex++]= 1.0f;
|
/external/jpeg/ |
jquant1.c | 37 * can be precalculated and stored in the lookup table colorindex[]. 38 * colorindex[i][j] maps pixel value j in component i to the nearest 42 * sum( colorindex[component-number][pixel-component-value] ) 66 * this to 0..MAXJSAMPLE, and then index into the colorindex table as usual. 67 * We can skip the separate range-limiting step by extending the colorindex 149 JSAMPARRAY colorindex; /* Precomputed mapping for speed */ member in struct:__anon19658 150 /* colorindex[i][j] = index of color closest to pixel value j in component i, 154 boolean is_padded; /* is the colorindex padded for odither? */ 352 cquantize->colorindex = (*cinfo->mem->alloc_sarray) 361 /* fill in colorindex entries for i'th color component * 464 JSAMPARRAY colorindex = cquantize->colorindex; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jquant1.c | 37 * can be precalculated and stored in the lookup table colorindex[]. 38 * colorindex[i][j] maps pixel value j in component i to the nearest 42 * sum( colorindex[component-number][pixel-component-value] ) 66 * this to 0..MAXJSAMPLE, and then index into the colorindex table as usual. 67 * We can skip the separate range-limiting step by extending the colorindex 149 JSAMPARRAY colorindex; /* Precomputed mapping for speed */ member in struct:__anon24923 150 /* colorindex[i][j] = index of color closest to pixel value j in component i, 154 boolean is_padded; /* is the colorindex padded for odither? */ 352 cquantize->colorindex = (*cinfo->mem->alloc_sarray) 361 /* fill in colorindex entries for i'th color component * 464 JSAMPARRAY colorindex = cquantize->colorindex; local [all...] |
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
ColorLEDController.java | 27 LedValueUpdater(TextView target, int colorIndex) { 29 mCommandTarget = (byte) ((mLEDNumber - 1) * 3 + colorIndex);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_join.py | 22 ColorIndex = [ 60 map(lambda t, secDB=secDB: secDB.put(*t), ColorIndex)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_join.py | 22 ColorIndex = [ 60 map(lambda t, secDB=secDB: secDB.put(*t), ColorIndex)
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
MediaFeatureNames.h | 32 macro(colorIndex, "color-index") \
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/ |
BMPImageReader.h | 238 // Sets the current pixel to the color given by |colorIndex|. This also 241 inline void setI(size_t colorIndex) 243 setRGBA(m_colorTable[colorIndex].rgbRed, m_colorTable[colorIndex].rgbGreen, m_colorTable[colorIndex].rgbBlue, 0xff);
|
BMPImageReader.cpp | 669 const size_t colorIndex = (pixelData >> (8 - m_infoHeader.biBitCount)) & mask; 676 if (colorIndex) { 682 if (colorIndex >= m_infoHeader.biClrUsed) 684 setI(colorIndex);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
BinPacker.java | 325 int colorIndex = 0; 327 Color color = colors[colorIndex]; 328 colorIndex = (colorIndex + 1) % colors.length; 335 g.drawString(Integer.toString(colorIndex),
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
glxconfig.h | 45 GLint indexBits; /* total bits for colorindex */
|
/external/mesa3d/src/glx/ |
glxconfig.h | 45 GLint indexBits; /* total bits for colorindex */
|
/development/samples/ControllerSample/src/com/example/controllersample/ |
GameView.java | 666 * The colorIndex is used to create the color based on the lower three 669 * @param colorIndex 671 public Ship(int colorIndex) { 688 mR = (colorIndex & 0x01) == 0 ? 63 : 255; 689 mG = (colorIndex & 0x02) == 0 ? 63 : 255; 690 mB = (colorIndex & 0x04) == 0 ? 63 : 255; 692 mColor = colorIndex; [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
FlameChart.js | 731 for (var colorIndex = 0; colorIndex < colorEntryIndexes.length; ++colorIndex) { 732 colorPair = colorGenerator._colorPairForIndex(colorIndex); 734 var indexes = colorEntryIndexes[colorIndex];
|
/frameworks/base/core/jni/android/graphics/ |
NinePatchImpl.cpp | 181 int colorIndex = 0; 258 color = chunk.colors[colorIndex++];
|
Canvas.cpp | 574 int colorIndex, const SkPaint* paint) { 580 AutoJavaIntArray colorA(env, jcolors, colorIndex + ptCount); 691 jintArray jcolors, int colorIndex, 697 AutoJavaIntArray colorA(env, jcolors, colorIndex + vertexCount); 734 colors = (const SkColor*)(colorA.ptr() + colorIndex); [all...] |
/packages/apps/Calendar/src/com/android/calendar/event/ |
CreateEventDialogFragment.java | 306 int colorIndex = cursor.getColumnIndexOrThrow(Calendars.CALENDAR_COLOR); 314 .getInt(colorIndex)));
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/ |
glcore.h | 84 GLint indexBits; /* total bits for colorindex */
|
/external/mesa3d/src/gallium/state_trackers/egl/x11/ |
glcore.h | 84 GLint indexBits; /* total bits for colorindex */
|
/external/chromium_org/chrome/test/functional/perf/endure_graphs/js/ |
plotter.js | 305 for (var i = 0, colorIndex = 0; i < this.dataDescriptions_.length; ++i) 306 this.dataColors_[i] = this.makeColor(colorIndex++); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
IccUtils.java | 518 int colorIndex = 0; 521 result[colorIndex++] = alpha
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
IccUtils.java | 518 int colorIndex = 0; 521 result[colorIndex++] = alpha
|
/frameworks/base/tools/aapt/ |
Images.cpp | 480 int colorIndex = 0; 654 image->info9Patch.colors[colorIndex++] = c; 661 assert(colorIndex == numColors); [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarProvider2.java | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
mtypes.h | 526 GLint indexBits; /* total bits for colorindex */ [all...] |