/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/png/ |
PNGImageWriterSpi.java | 69 int bitDepth = colorModel.getPixelSize() / numBands; 72 if (bitDepth != 1 && bitDepth != 2 && bitDepth != 4 && bitDepth != 8) { 80 if (bitDepth != 1 && bitDepth != 2 && bitDepth != 4 && bitDepth != 8 && bitDepth != 16) [all...] |
PNGImageWriter.java | 92 int imageHeight, int bitDepth, int colorType, int[] palette, int i, boolean b); 153 int bitDepth = pixelSize / numBands; 156 int bpb = bitDepth > 8 ? 2 : 1; 167 if (bitDepth != 1 && bitDepth != 2 && bitDepth != 4 && bitDepth != 8) { 168 // Wrong bitDepth-numBands composition 172 // Wrong bitDepth-numBands composition 182 if (bitDepth != 1 && bitDepth != 2 && bitDepth != 4 && bitDepth != 8 && bitDepth != 16) [all...] |
/frameworks/base/awt/java/awt/ |
DisplayMode.java | 45 private final int bitDepth; 70 * @param bitDepth 76 public DisplayMode(int width, int height, int bitDepth, int refreshRate) { 79 this.bitDepth = bitDepth; 113 if (dm.bitDepth != bitDepth) { 135 return bitDepth;
|
/frameworks/base/awt/com/android/internal/awt/ |
AndroidImageDecoder.java | 64 int bitDepth; // Number of bits per color 129 * the bitDepth, (and the color palette for an index color model) 141 bitDepth = 1; 147 bitDepth = 8; 157 bitDepth = 8; 168 if (bitDepth != 8 && bitDepth != 4 && bitDepth != 2 && bitDepth != 1) { 174 int numEntries = 1 << bitDepth; [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/image/ |
PngDecoder.java | 72 int bitDepth; 142 if (bitDepth != 8 && bitDepth != 4 && bitDepth != 2 && bitDepth != 1) { 148 int numEntries = 1 << bitDepth; 154 cm = new IndexColorModel(/*bitDepth*/8, numEntries, comps, comps, comps); 161 if (bitDepth != 8) { 173 if (bitDepth != 8 && bitDepth != 4 && bitDepth != 2 && bitDepth != 1) [all...] |
/frameworks/base/libs/audioflinger/ |
AudioResampler.h | 44 static AudioResampler* create(int bitDepth, int inChannelCount, 67 AudioResampler(int bitDepth, int inChannelCount, int32_t sampleRate);
|
AudioResamplerCubic.h | 31 AudioResamplerCubic(int bitDepth, int inChannelCount, int32_t sampleRate) : 32 AudioResampler(bitDepth, inChannelCount, sampleRate) {
|
AudioResampler.cpp | 38 AudioResamplerOrder1(int bitDepth, int inChannelCount, int32_t sampleRate) : 39 AudioResampler(bitDepth, inChannelCount, sampleRate), mX0L(0), mX0R(0) { 77 AudioResampler* AudioResampler::create(int bitDepth, int inChannelCount, 96 resampler = new AudioResamplerOrder1(bitDepth, inChannelCount, sampleRate); 100 resampler = new AudioResamplerCubic(bitDepth, inChannelCount, sampleRate); 104 resampler = new AudioResamplerSinc(bitDepth, inChannelCount, sampleRate); 113 AudioResampler::AudioResampler(int bitDepth, int inChannelCount, 115 mBitDepth(bitDepth), mChannelCount(inChannelCount), 119 if ((bitDepth != 16) ||(inChannelCount < 1) || (inChannelCount > 2)) { 120 LOGE("Unsupported sample format, %d bits, %d channels", bitDepth, [all...] |
AudioResamplerSinc.h | 32 AudioResamplerSinc(int bitDepth, int inChannelCount, int32_t sampleRate);
|
AudioResamplerSinc.cpp | 135 AudioResamplerSinc::AudioResamplerSinc(int bitDepth, 137 : AudioResampler(bitDepth, inChannelCount, sampleRate),
|
/external/webkit/WebCore/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 258 int bitDepth, colorType, interlaceType, compressionType, filterType, channels; 259 png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType, 266 (colorType == PNG_COLOR_TYPE_GRAY && bitDepth < 8)) 276 if (bitDepth == 16)
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_mdls.h | 273 EAS_INT bitDepth;
|
eas_mdls.c | 382 static const EAS_INT bitDepth = 8; 384 static const EAS_INT bitDepth = 16; [all...] |
/external/skia/src/images/ |
SkImageDecoder_libpng.cpp | 633 // return the minimum legal bitdepth (by png standards) for this many colortable 643 // for the moment, we don't know how to pack bitdepth < 8 717 int bitDepth = 8; // default for color 768 bitDepth = computeBitDepth(ctable->count()); 806 bitDepth, colorType,
|
/prebuilt/darwin-x86/swt/ |
swt.jar | |
/prebuilt/darwin-x86_64/swt/ |
swt.jar | |
/prebuilt/linux-x86/swt/ |
swt.jar | |
/prebuilt/linux-x86_64/swt/ |
swt.jar | |
/prebuilt/windows/swt/ |
swt.jar | |
/prebuilt/windows-x86_64/swt/ |
swt.jar | |