/external/pdfium/core/src/fxge/dib/ |
D | fx_dib_transform.cpp | 647 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 …]
|
D | fx_dib_main.cpp | 486 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/ |
D | fpdf_render_loadimage.cpp | 1326 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 …]
|
D | fpdf_render_image.cpp | 977 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/ |
D | xz_wrapper.c | 491 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/ |
D | fpdf_parser_decode.cpp | 436 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/ |
D | fx_skia_blitter_new.cpp | 1755 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/ |
D | fx_agg_driver.cpp | 1024 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/ |
D | fpdf_font.cpp | 187 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/ |
D | objects.h | 2674 void CopyTo(int pos, FixedArray* dest, int dest_pos, int len);
|
D | objects.cc | 9806 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()
|