HomeSort by relevance Sort by last modified time
    Searched full:maxvalues (Results 1 - 10 of 10) sorted by null

  /frameworks/base/awt/java/awt/color/
ICC_ColorSpace.java 101 private float maxValues[] = null;
385 return maxValues[component];
393 maxValues = new float[n];
400 maxValues[0] = MAX_XYZ;
401 maxValues[1] = MAX_XYZ;
402 maxValues[2] = MAX_XYZ;
408 maxValues[0] = 100;
409 maxValues[1] = 127;
410 maxValues[2] = 127;
415 maxValues[i] = 1
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/color/
ColorScaler.java 112 float maxValues[] = new float[nColorChannels];
120 maxValues[0] = MAX_XYZ;
121 maxValues[1] = MAX_XYZ;
122 maxValues[2] = MAX_XYZ;
128 maxValues[0] = 100;
129 maxValues[1] = 127;
130 maxValues[2] = 127;
135 maxValues[i] = 1;
145 MAX_SHORT / (maxValues[i] - channelMinValues[i]);
148 (maxValues[i] - channelMinValues[i]) / MAX_SHORT
    [all...]
  /frameworks/base/awt/java/awt/image/
DirectColorModel.java 287 alpha = (int)(normAlpha * maxValues[numColorComponents] + 0.5f);
289 red = (int)(normComp[0] * normAlpha * maxValues[0] + 0.5f);
290 green = (int)(normComp[1] * normAlpha * maxValues[1] + 0.5f);
291 blue = (int)(normComp[2] * normAlpha * maxValues[2] + 0.5f);
293 red = (int)(normComp[0] * maxValues[0] + 0.5f);
294 green = (int)(normComp[1] * maxValues[1] + 0.5f);
295 blue = (int)(normComp[2] * maxValues[2] + 0.5f);
299 red = (int)(normComp[0] * maxValues[0] + 0.5f);
300 green = (int)(normComp[1] * maxValues[1] + 0.5f);
301 blue = (int)(normComp[2] * maxValues[2] + 0.5f)
    [all...]
ComponentColorModel.java 183 scaleFactors[i] = 1.0f / maxValues[i];
189 maxValues[numColorComponents] = (1 << bits[numColorComponents]) - 1;
190 scaleFactors[numColorComponents] = 1.0f / maxValues[numColorComponents];
199 maxValues[i] = Short.MAX_VALUE;
200 scaleFactors[i] = 1.0f / maxValues[i];
411 ba[i] = (byte)(normComponents[idx] * alpha * maxValues[i] + 0.5f);
414 * maxValues[numColorComponents] + 0.5f);
417 ba[idx] = (byte)(normComponents[idx] * maxValues[i] + 0.5f);
433 usa[i] = (short)(normComponents[idx] * alpha * maxValues[i] + 0.5f);
435 usa[numColorComponents] = (short)(alpha * maxValues[numColorComponents] + 0.5f)
    [all...]
ColorModel.java 85 int[] maxValues = null; // Max values that may be represent by color
158 maxValues = new int[bits.length];
160 for (int i = 0; i < maxValues.length; i++) {
161 maxValues[i] = (1 << bits[i]) - 1;
535 / maxValues[numColorComponents];
539 / (normAlpha * maxValues[i]);
549 normComponents[normOffset + i] = (float)components[offset + i] / maxValues[i];
616 components[offset + i] = (int)(normComponents[normOffset + i] * maxValues[i]
621 * maxValues[numColorComponents] + 0.5f);
624 components[offset + i] = (int)(normComponents[normOffset + i] * maxValues[i] + 0.5f)
    [all...]
RescaleOp.java 241 int[] maxValues = new int[numBands];
246 maxValues[i] = (1 << sampleSizes[i]) - 1;
247 masks[i] = ~(maxValues[i]);
265 pixels[i] = maxValues[bandIdx];
281 pixels[i] = maxValues[bandIdx];
299 pixels[i] = maxValues[bandIdx];
313 pixels[i] = maxValues[bandIdx];
ConvolveOp.java 225 int[] maxValues = new int[numBands];
230 maxValues[i] = (1 << sampleSizes[i]) - 1;
231 masks[i] = ~(maxValues[i]);
287 newPixels[pixelIndex + idx] = maxValues[idx];
PackedColorModel.java 396 scales[i] = 255.0f / maxValues[i];
  /external/icu4c/tools/genprops/
store.c 92 i10 maxValues; -- maximum code values for vector word 0, see uprops.h (new in format version 3.1+)
186 See i10 maxValues above, contains only UBLOCK_COUNT and USCRIPT_CODE_LIMIT.
  /external/icu4c/tools/genbidi/
store.c 65 i15 maxValues; -- maximum code values for enumerated properties

Completed in 185 milliseconds