HomeSort by relevance Sort by last modified time
    Searched full:has_alpha (Results 1 - 25 of 35) sorted by null

1 2

  /external/skia/src/opts/
SkBitmapFilter_opts_SSE2.h 19 bool has_alpha);
27 bool has_alpha);
SkBitmapProcState_opts_SSSE3.cpp 171 // by alpha when has_alpha is true.
176 template<bool has_alpha, int scale>
182 if (has_alpha) {
197 // @param alpha when has_alpha is true, scale all resulting components by this
201 // (Ra0 * (16 - x0) + Ra1 * x0) * alpha) (when has_alpha is true)
206 template<bool has_alpha>
215 return ScaleFourPixels<has_alpha, 4>(&sum, alpha);
223 template<bool has_alpha>
237 return ScaleFourPixels<has_alpha, 4>(&sum, alpha);
277 // the results by, when has_alpha is true
    [all...]
SkBitmapFilter_opts_SSE2.cpp 48 bool /*has_alpha*/) {
302 template<bool has_alpha>
378 if (has_alpha) {
445 if (has_alpha) {
475 bool has_alpha) {
476 if (has_alpha) {
  /external/webp/src/enc/
picture_psnr.c 114 int has_alpha, uv_w, uv_h; local
120 has_alpha = !!(src->colorspace & WEBP_CSP_ALPHA_BIT);
121 if (has_alpha != !!(ref->colorspace & WEBP_CSP_ALPHA_BIT) ||
122 (has_alpha && (src->a == NULL || ref->a == NULL))) {
135 if (has_alpha) {
149 if (has_alpha) {
picture.c 92 const int has_alpha = picture->colorspace & WEBP_CSP_ALPHA_BIT; local
111 a_width = has_alpha ? width : 0;
picture_tools.c 163 const int has_alpha = pic->colorspace & WEBP_CSP_ALPHA_BIT; local
164 if (!has_alpha || pic->a == NULL) return; // nothing to do
picture_csp.c 845 const int has_alpha = CheckNonOpaque(a_ptr, width, height, step, rgb_stride); local
848 picture->colorspace = has_alpha ? WEBP_YUV420A : WEBP_YUV420;
860 if (has_alpha) {
873 if (has_alpha) {
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/win/
cursor.cc 167 bool has_alpha = false; local
186 has_alpha = HasAlphaChannel(reinterpret_cast<uint32_t*>(image->data()),
203 if (!has_alpha) {
  /external/opencv3/3rdparty/libwebp/dec/
webp.c 271 // Fetch '*width', '*height', '*has_alpha' and fill out 'headers' based on
286 int* const has_alpha,
320 if (has_alpha != NULL) *has_alpha = !!(flags & ALPHA_FLAG);
363 if (!VP8LGetInfo(data, data_size, width, height, has_alpha)) {
368 if (has_alpha != NULL) {
371 *has_alpha |= (hdrs.alpha_data != NULL);
386 // fill out headers, ignore width/height/has_alpha.
650 &features->has_alpha, &features->has_animation,
decode_vp8.h 175 // width/height/has_alpha can be passed NULL.
178 int* const width, int* const height, int* const has_alpha);
io.c 310 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
324 if (has_alpha) {
348 if (has_alpha) {
483 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
495 if (has_alpha) {
519 if (has_alpha) {
vp8l.c 90 int* const has_alpha) {
97 *has_alpha = VP8LReadBits(br, 1);
103 int* const width, int* const height, int* const has_alpha) {
115 if (has_alpha != NULL) *has_alpha = a;
1173 int width, height, has_alpha; local
    [all...]
  /external/webp/src/dec/
io.c 187 const int has_alpha = WebPDispatchAlpha(alpha, io->width, mb_w, local
191 // has_alpha is true if there's non-trivial alpha to premultiply with.
192 if (has_alpha && WebPIsPremultipliedMode(colorspace)) {
288 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
302 if (has_alpha) {
321 if (has_alpha) {
462 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
474 if (has_alpha) {
497 if (has_alpha) {
webp.c 266 // Fetch '*width', '*height', '*has_alpha' and fill out 'headers' based on
281 int* const has_alpha,
327 if (has_alpha != NULL) *has_alpha = !!(flags & ALPHA_FLAG);
385 if (!VP8LGetInfo(data, data_size, &image_width, &image_height, has_alpha)) {
404 if (has_alpha != NULL) {
407 *has_alpha |= (hdrs.alpha_data != NULL);
422 // fill out headers, ignore width/height/has_alpha.
690 &features->has_alpha, &features->has_animation,
decode_vp8.h 176 // width/height/has_alpha can be passed NULL.
179 int* const width, int* const height, int* const has_alpha);
vp8l.c 118 int* const has_alpha) {
122 *has_alpha = VP8LReadBits(br, 1);
128 int* const width, int* const height, int* const has_alpha) {
142 if (has_alpha != NULL) *has_alpha = a;
1533 int width, height, has_alpha; local
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
picture.c 44 const int has_alpha = picture->colorspace & WEBP_CSP_ALPHA_BIT; local
78 a_width = has_alpha ? width : 0;
602 const int has_alpha = CheckNonOpaque(a_ptr, width, height, step, rgb_stride); local
606 if (has_alpha) {
662 if (has_alpha) {
965 int has_alpha; local
981 has_alpha = !!(src->colorspace & WEBP_CSP_ALPHA_BIT);
982 if (has_alpha != !!(ref->colorspace & WEBP_CSP_ALPHA_BIT) ||
983 (has_alpha && (src->a == NULL || ref->a == NULL))) {
    [all...]
vp8l.c 747 static int WriteRealAlphaAndVersion(VP8LBitWriter* const bw, int has_alpha) {
748 VP8LWriteBits(bw, 1, has_alpha);
1084 int has_alpha; local
    [all...]
  /frameworks/ex/framesequence/jni/
FrameSequence_webp.cpp 68 if ((!curr.has_alpha || curr.blend_method == WEBP_MUX_NO_BLEND) &&
209 (!currIter.has_alpha || currIter.blend_method == WEBP_MUX_NO_BLEND) &&
318 ALOGD(" producing frame %d (has_alpha = %d, dispose = %s, blend = %s, duration = %d)",
319 i, currIter.has_alpha,
  /external/opencv3/3rdparty/libwebp/mux/
muxread.c 280 int has_alpha = 0; local
282 &has_alpha)) {
285 if (has_alpha) {
  /external/opencv3/modules/imgcodecs/src/
grfmt_webp.cpp 144 if (features.has_alpha)
  /external/skia/src/codec/
SkWebpCodec.cpp 70 SkToBool(features.has_alpha) ? kUnpremul_SkAlphaType
  /external/webp/src/demux/
demux.c 203 frame->has_alpha_ |= features->has_alpha;
408 const int has_alpha = !!(dmux->feature_flags_ & ALPHA_FLAG); local
410 if (!has_alpha && frame->img_components_[1].size_ > 0) {
840 iter->has_alpha = frame->has_alpha_;
  /external/opencv3/3rdparty/libwebp/demux/
demux.c 261 if (has_vp8l_alpha != NULL) *has_vp8l_alpha = features.has_alpha;
441 const int has_alpha = !!(dmux->feature_flags_ & ALPHA_FLAG); local
443 if (!has_alpha && frame->img_components_[1].size_ > 0) {
  /external/webrtc/webrtc/base/
x11windowpicker.cc 576 bool has_alpha) {
594 *p = has_alpha ? rgba & 0xFF : 0xFF;

Completed in 7496 milliseconds

1 2