Searched refs:xbits (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless.h96 int xbits, uint32_t* const dst);
H A Dlossless.c1364 int xbits, uint32_t* const dst) {
1366 if (xbits > 0) {
1367 const int bit_depth = 1 << (3 - xbits);
1368 const int mask = (1 << xbits) - 1;
1376 dst[x >> xbits] = code;
1363 VP8LBundleColorMap(const uint8_t* const row, int width, int xbits, uint32_t* const dst) argument
/external/webp/src/dsp/
H A Dlossless.h96 int xbits, uint32_t* const dst);
H A Dlossless.c1364 int xbits, uint32_t* const dst) {
1366 if (xbits > 0) {
1367 const int bit_depth = 1 << (3 - xbits);
1368 const int mask = (1 << xbits) - 1;
1376 dst[x >> xbits] = code;
1363 VP8LBundleColorMap(const uint8_t* const row, int width, int xbits, uint32_t* const dst) argument
/external/chromium_org/third_party/skia/include/core/
H A DSkFloatingPoint.h27 int32_t xbits = SkFloat2Bits(x); local
29 return SkBits2Float((xbits & 0x7FFFFFFF) | (ybits & 0x80000000));
/external/skia/include/core/
H A DSkFloatingPoint.h27 int32_t xbits = SkFloat2Bits(x); local
29 return SkBits2Float((xbits & 0x7FFFFFFF) | (ybits & 0x80000000));
/external/chromium_org/third_party/libwebp/enc/
H A Dvp8l.c819 int width, int height, int xbits, uint8_t* row) {
840 VP8LBundleColorMap(row, width, xbits, dst);
862 VP8LBundleColorMap(row, width, xbits, dst);
884 int xbits; local
889 xbits = (palette_size <= 2) ? 3 : 2;
891 xbits = (palette_size <= 16) ? 1 : 0;
894 err = AllocateTransformBuffer(enc, VP8LSubSampleSize(width, xbits), height);
902 palette, palette_size, width, height, xbits, row);
816 ApplyPalette(uint32_t* src, uint32_t* dst, uint32_t src_stride, uint32_t dst_stride, const uint32_t* palette, int palette_size, int width, int height, int xbits, uint8_t* row) argument
/external/webp/src/enc/
H A Dvp8l.c819 int width, int height, int xbits, uint8_t* row) {
840 VP8LBundleColorMap(row, width, xbits, dst);
862 VP8LBundleColorMap(row, width, xbits, dst);
884 int xbits; local
889 xbits = (palette_size <= 2) ? 3 : 2;
891 xbits = (palette_size <= 16) ? 1 : 0;
894 err = AllocateTransformBuffer(enc, VP8LSubSampleSize(width, xbits), height);
902 palette, palette_size, width, height, xbits, row);
816 ApplyPalette(uint32_t* src, uint32_t* dst, uint32_t src_stride, uint32_t dst_stride, const uint32_t* palette, int palette_size, int width, int height, int xbits, uint8_t* row) argument
/external/qemu/distrib/zlib-1.2.3/
H A Dtrees.c503 int xbits; /* extra bits */ local
524 xbits = 0;
525 if (n >= base) xbits = extra[n-base];
527 s->opt_len += (ulg)f * (bits + xbits);
528 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
/external/zlib/src/
H A Dtrees.c501 int xbits; /* extra bits */ local
522 xbits = 0;
523 if (n >= base) xbits = extra[n-base];
525 s->opt_len += (ulg)f * (bits + xbits);
526 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
/external/chromium_org/third_party/zlib/
H A Dtrees.c507 int xbits; /* extra bits */ local
528 xbits = 0;
529 if (n >= base) xbits = extra[n-base];
531 s->opt_len += (ulg)f * (bits + xbits);
532 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);

Completed in 321 milliseconds