HomeSort by relevance Sort by last modified time
    Searched refs:bpc (Results 1 - 25 of 29) sorted by null

1 2

  /external/pdfium/core/fxcodec/codec/
ccodec_basicmodule.h 24 int bpc);
ccodec_tiffmodule.h 25 int32_t* bpc,
icodec_tiffmodule.h 29 int32_t* bpc,
icodec_pngmodule.h 23 int bpc,
ccodec_flatemodule.h 23 int bpc,
ccodec_pngmodule.cpp 122 int bpc = 0, color_type = 0, color_type1 = 0, pass = 0; local
124 png_get_IHDR(png_ptr, info_ptr, &width, &height, &bpc, &color_type, nullptr,
127 if (bpc > 8) {
129 } else if (bpc < 8) {
132 bpc = 8;
137 if (!pModule->GetDelegate()->PngReadHeader(width, height, bpc, pass,
fx_codec.cpp 275 int bpc);
340 int bpc) {
346 m_bpc = bpc;
350 pitch *= bpc;
359 m_dwLineBytes = (static_cast<uint32_t>(width) * nComps * bpc + 7) / 8;
458 int bpc) {
460 if (!pDecoder->Create(src_buf, src_size, width, height, nComps, bpc))
fx_codec_flate.cpp 284 int bpc,
287 int row_size = (nPixels * bpc * nColors + 7) / 8;
288 int BytesPerPixel = (bpc * nColors + 7) / 8;
625 int bpc,
673 int bpc,
683 m_bpc = bpc;
684 m_Pitch = (static_cast<uint32_t>(width) * nComps * bpc + 7) / 8;
782 int bpc,
788 pDecoder->Create(src_buf, src_size, width, height, nComps, bpc, predictor,
ccodec_tiffmodule.cpp 32 int32_t* bpc,
237 int32_t* bpc,
284 *bpc = tif_bpc;
492 int32_t* bpc,
494 return ctx->LoadFrameInfo(frame, width, height, comps, bpc, pAttribute);
ccodec_progressivedecoder.h 174 int bpc,
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d10v/
control-001.d 12 c: 69 03 56 60 mvfc r0, bpc -> mvtc r0, bpc
control-001.s 11 mvtc r0,bpc ;; cr3=bpc
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/rx/
mvtc.d 15 18: fd 77 09 80 mvtc #-128, bpc
23 38: fd 77 09 7f mvtc #127, bpc
31 ..: fd 7b 09 00 80 mvtc #0xffff8000, bpc
39 ..: fd 7f 09 00 80 00 mvtc #0x8000, bpc
47 ..: fd 7f 09 00 00 80 mvtc #0xff800000, bpc
55 ...: fd 7f 09 ff ff 7f mvtc #0x7fffff, bpc
63 ...: fd 73 09 00 00 00 80 mvtc #0x80000000, bpc
71 ...: fd 73 09 ff ff ff 7f mvtc #0x7fffffff, bpc
79 ...: fd 68 09 mvtc r0, bpc
87 ...: fd 68 f9 mvtc r15, bpc
    [all...]
mvfc.d 21 24: fd 6a 90 mvfc bpc, r0
22 27: fd 6a 9f mvfc bpc, r15
popc.d 15 c: 7e e9 popc bpc
pushc.d 15 c: 7e c9 pushc bpc
  /external/pdfium/core/fpdfapi/page/
cpdf_streamparser.cpp 42 int bpc = pDecoder->GetBPC(); local
45 int pitch = (width * ncomps * bpc + 7) / 8;
147 uint32_t bpc = pDict->GetIntegerFor("BitsPerComponent"); local
157 if (bpc && pitch > INT_MAX / bpc)
160 pitch *= bpc;
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_decode.h 34 // This used to have more parameters like the predictor and bpc, but there was
64 int bpc,
fpdf_parser_decode.cpp 282 int bpc,
295 src_buf, src_size, width, height, nComps, bpc, predictor, Colors,
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
fetch_jit.cpp 264 uint32_t bpc = info.bpp / info.numComps; ///@todo Code below assumes all components are same size. Need to fix. local
335 switch(bpc)
350 switch(bpc)
366 switch(bpc)
383 switch(bpc)
399 switch(bpc)
414 switch(bpc)
522 if (info.bpc[0] != 8 && info.bpc[0] != 16 && info.bpc[0] != 32 && info.bpc[0] != 64
721 uint32_t bpc = info.bpp \/ info.numComps; \/\/\/@todo Code below assumes all components are same size. Need to fix. local
    [all...]
blend_jit.cpp 223 if (info.bpc[c] <= QUANTIZE_THRESHOLD && info.type[c] != SWR_TYPE_UNUSED)
226 float factor = (float)((1 << info.bpc[c]) - 1);
674 if (info.bpc[i] >= 32) {
678 vMask[i] = VIMMED1((1 << info.bpc[i]) - 1);
680 scale[i] = (1 << (info.bpc[i] - 1)) - 1;
682 scale[i] = (1 << info.bpc[i]) - 1;
735 result[i] = SHL(result[i], C(32 - info.bpc[i]));
736 result[i] = ASHR(result[i], C(32 - info.bpc[i]));
  /external/pdfium/core/fpdfapi/render/
cpdf_dibsource.cpp 42 FX_SAFE_UINT32 CalculatePitch8(uint32_t bpc, uint32_t components, int width) {
43 FX_SAFE_UINT32 pitch = bpc;
60 bool IsAllowedBPCValue(int bpc) {
61 return bpc == 1 || bpc == 2 || bpc == 4 || bpc == 8 || bpc == 16;
545 int bpc; local
548 &bpc, &bTransform))
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
objdump.c 1604 int bpc = 0; local
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
formats.h 239 uint32_t bpc[4]; ///< bits per component member in struct:SWR_FORMAT_INFO
  /external/pdfium/third_party/libopenjpeg20/
jp2.h 171 OPJ_UINT32 bpc; member in struct:opj_jp2

Completed in 895 milliseconds

1 2