Home
last modified time | relevance | path

Searched refs:dest_pos (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/core/src/fxge/dib/
Dfx_dib_transform.cpp647 uint8_t* dest_pos = (uint8_t*)pTransformed->GetScanline(row); in Continue() local
674 dest_pos[0] = (uint8_t)(r_bgra_cmyk >> 24); in Continue()
675 dest_pos[1] = (uint8_t)(r_bgra_cmyk >> 16); in Continue()
676 dest_pos[2] = (uint8_t)(r_bgra_cmyk >> 8); in Continue()
678 *(FX_DWORD*)dest_pos = r_bgra_cmyk; in Continue()
681 dest_pos += destBpp; in Continue()
687 uint8_t* dest_pos = (uint8_t*)pTransformed->GetScanline(row); in Continue() local
709 dest_pos[0] = (uint8_t)(r_bgra_cmyk >> 24); in Continue()
710 dest_pos[1] = (uint8_t)(r_bgra_cmyk >> 16); in Continue()
711 dest_pos[2] = (uint8_t)(r_bgra_cmyk >> 8); in Continue()
[all …]
Dfx_dib_main.cpp486 FX_DWORD* dest_pos = in TransferMask() local
493 *dest_pos = dst_color; in TransferMask()
495 *dest_pos = 0; in TransferMask()
497 dest_pos++; in TransferMask()
504 FXARGB_SETDIB(dest_pos++, in TransferMask()
758 uint8_t* dest_pos = (uint8_t*)pDst->GetScanline(row) + destOffset; local
761 *dest_pos = *src_pos;
762 dest_pos += destBytes;
923 uint8_t* dest_pos = (uint8_t*)pMask->GetScanline(row); local
926 *dest_pos = gray[1];
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_loadimage.cpp1326 int dest_pos = i * dest_Bpp; in DownSampleScanline1Bit() local
1329 dest_scan[dest_pos] = (uint8_t)set_argb; in DownSampleScanline1Bit()
1331 dest_scan[dest_pos] = FXARGB_B(set_argb); in DownSampleScanline1Bit()
1332 dest_scan[dest_pos + 1] = FXARGB_G(set_argb); in DownSampleScanline1Bit()
1333 dest_scan[dest_pos + 2] = FXARGB_R(set_argb); in DownSampleScanline1Bit()
1335 *(FX_DWORD*)(dest_scan + dest_pos) = set_argb; in DownSampleScanline1Bit()
1339 dest_scan[dest_pos] = (uint8_t)reset_argb; in DownSampleScanline1Bit()
1341 dest_scan[dest_pos] = FXARGB_B(reset_argb); in DownSampleScanline1Bit()
1342 dest_scan[dest_pos + 1] = FXARGB_G(reset_argb); in DownSampleScanline1Bit()
1343 dest_scan[dest_pos + 2] = FXARGB_R(reset_argb); in DownSampleScanline1Bit()
[all …]
Dfpdf_render_image.cpp977 uint8_t* dest_pos = dest_buf + row * dest_pitch; in LoadSMask() local
980 *dest_pos++ = transfers[FXRGB2GRAY(src_pos[2], src_pos[1], *src_pos)]; in LoadSMask()
/external/squashfs-tools/squashfs-tools/
Dxz_wrapper.c491 size_t dest_pos = 0; in xz_uncompress() local
495 src, &src_pos, size, dest, &dest_pos, outsize); in xz_uncompress()
498 return (int) dest_pos; in xz_uncompress()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_decode.cpp436 int dest_pos = 0; in PDF_DecodeText() local
451 dest_buf[dest_pos++] = unicode; in PDF_DecodeText()
454 result.ReleaseBuffer(dest_pos); in PDF_DecodeText()
/external/pdfium/core/src/fxge/skia/
Dfx_skia_blitter_new.cpp1755 uint8_t* dest_pos = dest_scan; in blitAntiH() local
1770 dest_pos = dest_scan + col_start; in blitAntiH()
1772 FXSYS_memset(dest_pos, FXARGB_MAKE(aa, aa, aa, aa), result); in blitAntiH()
1774 FXSYS_memset(dest_pos, aa, result); in blitAntiH()
1795 uint8_t* dest_pos = dest_scan + col_start; in blitH() local
1797 FXSYS_memset(dest_pos, 0xffffffff, result); in blitH()
1799 FXSYS_memset(dest_pos, 255, result); in blitH()
/external/pdfium/core/src/fxge/agg/src/
Dfx_agg_driver.cpp1024 uint8_t* dest_pos = NULL; in render() local
1029 dest_pos = dest_scan + x * Bpp; in render()
1033 dest_pos = dest_scan + x / 8; in render()
1043 CompositeSpan(dest_pos, ori_pos, Bpp, bDestAlpha, x, span->len, in render()
1046 (this->*composite_span)(dest_pos, Bpp, x, span->len, span->covers, in render()
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font.cpp187 int dest_pos = 0; in EncodeString() local
190 dest_pos += AppendChar(dest_buf + dest_pos, charcode); in EncodeString()
192 result.ReleaseBuffer(dest_pos); in EncodeString()
/external/v8/src/
Dobjects.h2674 void CopyTo(int pos, FixedArray* dest, int dest_pos, int len);
Dobjects.cc9806 void FixedArray::CopyTo(int pos, FixedArray* dest, int dest_pos, int len) { in CopyTo() argument
9810 dest->set(dest_pos+index, get(pos+index), mode); in CopyTo()