OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:decodedBitmap
(Results
1 - 5
of
5
) sorted by null
/external/skia/src/images/
SkImageDecoder_wbmp.cpp
102
SkImageDecoder::Result SkWBMPImageDecoder::onDecode(SkStream* stream, SkBitmap*
decodedBitmap
,
114
decodedBitmap
->setInfo(SkImageInfo::Make(width, height,
125
if (!this->allocPixelRef(
decodedBitmap
, ct)) {
129
SkAutoLockPixels alp(*
decodedBitmap
);
131
uint8_t* dst =
decodedBitmap
->getAddr8(0, 0);
136
uint8_t* src = dst +
decodedBitmap
->getSize() - srcSize;
144
dst +=
decodedBitmap
->rowBytes();
SkImageDecoder_libwebp.cpp
118
bool setDecodeConfig(SkBitmap*
decodedBitmap
, int width, int height);
168
static WEBP_CSP_MODE webp_decode_mode(const SkBitmap*
decodedBitmap
, bool premultiply) {
170
const SkColorType ct =
decodedBitmap
->colorType();
235
SkBitmap*
decodedBitmap
,
237
WEBP_CSP_MODE mode = webp_decode_mode(
decodedBitmap
, premultiply);
247
config->output.u.RGBA.rgba = (uint8_t*)
decodedBitmap
->getPixels();
248
config->output.u.RGBA.stride = (int)
decodedBitmap
->rowBytes();
249
config->output.u.RGBA.size =
decodedBitmap
->getSize();
252
if (width !=
decodedBitmap
->width() || height !=
decodedBitmap
->height())
[
all
...]
SkImageDecoder_libpng.cpp
280
SkImageDecoder::Result SkPNGImageDecoder::onDecode(SkStream* sk_stream, SkBitmap*
decodedBitmap
,
312
decodedBitmap
->setInfo(SkImageInfo::Make(sampler.scaledWidth(), sampler.scaledHeight(),
333
if (!this->allocPixelRef(
decodedBitmap
,
338
SkAutoLockPixels alp(*
decodedBitmap
);
371
uint8_t* bmRow =
decodedBitmap
->getAddr8(0, y);
394
even if our
decodedBitmap
doesn't, due to the request that we
398
if (!sampler.begin(
decodedBitmap
, sc, *this, colors)) {
401
const int height =
decodedBitmap
->height();
448
reallyHasAlpha |= substituteTranspColor(
decodedBitmap
, theTranspColor);
451
switch (
decodedBitmap
->colorType())
[
all
...]
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
EncodedImageResource.java
132
final Bitmap
decodedBitmap
= BitmapFactory.decodeByteArray(mImageBytes, 0,
134
return new DecodedImageResource(getKey(),
decodedBitmap
, getOrientation());
/prebuilts/tools/common/m2/repository/tightvnc/
tightvnc.jar
Completed in 299 milliseconds