Home
last modified time | relevance | path

Searched refs:xbits (Results 1 – 13 of 13) sorted by relevance

/external/skia/include/core/
DSkFloatingPoint.h47 int32_t xbits = SkFloat2Bits(x); in sk_float_copysign()
49 return SkBits2Float((xbits & 0x7FFFFFFF) | (ybits & 0x80000000)); in sk_float_copysign()
/external/chromium_org/third_party/skia/include/core/
DSkFloatingPoint.h49 int32_t xbits = SkFloat2Bits(x); in sk_float_copysign()
51 return SkBits2Float((xbits & 0x7FFFFFFF) | (ybits & 0x80000000)); in sk_float_copysign()
/external/chromium_org/third_party/libwebp/enc/
Dvp8l.c879 int width, int height, int xbits, uint8_t* row) { in ApplyPalette() argument
900 VP8LBundleColorMap(row, width, xbits, dst); in ApplyPalette()
922 VP8LBundleColorMap(row, width, xbits, dst); in ApplyPalette()
944 int xbits; in EncodePalette() local
949 xbits = (palette_size <= 2) ? 3 : 2; in EncodePalette()
951 xbits = (palette_size <= 16) ? 1 : 0; in EncodePalette()
954 err = AllocateTransformBuffer(enc, VP8LSubSampleSize(width, xbits), height); in EncodePalette()
962 palette, palette_size, width, height, xbits, row); in EncodePalette()
/external/webp/src/enc/
Dvp8l.c879 int width, int height, int xbits, uint8_t* row) { in ApplyPalette() argument
900 VP8LBundleColorMap(row, width, xbits, dst); in ApplyPalette()
922 VP8LBundleColorMap(row, width, xbits, dst); in ApplyPalette()
944 int xbits; in EncodePalette() local
949 xbits = (palette_size <= 2) ? 3 : 2; in EncodePalette()
951 xbits = (palette_size <= 16) ? 1 : 0; in EncodePalette()
954 err = AllocateTransformBuffer(enc, VP8LSubSampleSize(width, xbits), height); in EncodePalette()
962 palette, palette_size, width, height, xbits, row); in EncodePalette()
/external/qemu/distrib/zlib-1.2.8/
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/
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);
/external/zlib/src/
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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
Dfx_zlib_trees.c501 int xbits; /* extra bits */ in gen_bitlen() local
522 xbits = 0; in gen_bitlen()
523 if (n >= base) xbits = extra[n-base]; in gen_bitlen()
525 s->opt_len += (ulg)f * (bits + xbits); in gen_bitlen()
526 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits); in gen_bitlen()
/external/webp/src/dsp/
Dlossless.h245 int xbits, uint32_t* const dst);
Dlossless.c1433 int xbits, uint32_t* const dst) { in VP8LBundleColorMap() argument
1435 if (xbits > 0) { in VP8LBundleColorMap()
1436 const int bit_depth = 1 << (3 - xbits); in VP8LBundleColorMap()
1437 const int mask = (1 << xbits) - 1; in VP8LBundleColorMap()
1445 dst[x >> xbits] = code; in VP8LBundleColorMap()
/external/chromium_org/third_party/libwebp/dsp/
Dlossless.h245 int xbits, uint32_t* const dst);
Dlossless.c1442 int xbits, uint32_t* const dst) { in VP8LBundleColorMap() argument
1444 if (xbits > 0) { in VP8LBundleColorMap()
1445 const int bit_depth = 1 << (3 - xbits); in VP8LBundleColorMap()
1446 const int mask = (1 << xbits) - 1; in VP8LBundleColorMap()
1454 dst[x >> xbits] = code; in VP8LBundleColorMap()
/external/chromium_org/third_party/skia/src/utils/
DSkTextureCompressor_ASTC.cpp1337 SkTBits<int> xbits(x); in unquantizeWeight() local
1360 const int b = xbits[1]; in unquantizeWeight()
1368 const int cb = xbits(2, 1); in unquantizeWeight()
1400 const int b = xbits[1]; in unquantizeWeight()