Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-ot-hmtx-table.hh120 char * dest_pos = (char *) dest; in subset() local
133 *((LongMetric *) dest_pos) = *src_metric; in subset()
138 *((FWORD *) dest_pos) = src_metric->sb; in subset()
154 LongMetric *metric = (LongMetric *)dest_pos; in subset()
161 *((FWORD *) dest_pos) = src_sb; in subset()
164 dest_pos += (i < num_advances ? 4 : 2); in subset()
/external/pdfium/core/fxge/dib/
Dcfx_dibitmap.cpp338 uint8_t* dest_pos = (uint8_t*)pDst->GetScanline(row) + destOffset; in LoadChannel() local
341 *dest_pos = *src_pos; in LoadChannel()
342 dest_pos += destBytes; in LoadChannel()
650 int dest_pos = i; in DownSampleScanline() local
653 dest_pos *= 3; in DownSampleScanline()
655 dest_scan[dest_pos] = FXARGB_B(argb); in DownSampleScanline()
656 dest_scan[dest_pos + 1] = FXARGB_G(argb); in DownSampleScanline()
657 dest_scan[dest_pos + 2] = FXARGB_R(argb); in DownSampleScanline()
659 dest_pos *= 4; in DownSampleScanline()
661 dest_scan[dest_pos] = FXSYS_GetCValue(cmyk); in DownSampleScanline()
[all …]
/external/pdfium/core/fpdfapi/render/
Dcpdf_dibsource.cpp1220 int dest_pos = i * dest_Bpp; in DownSampleScanline1Bit() local
1223 dest_scan[dest_pos] = static_cast<uint8_t>(set_argb); in DownSampleScanline1Bit()
1225 dest_scan[dest_pos] = FXARGB_B(set_argb); in DownSampleScanline1Bit()
1226 dest_scan[dest_pos + 1] = FXARGB_G(set_argb); in DownSampleScanline1Bit()
1227 dest_scan[dest_pos + 2] = FXARGB_R(set_argb); in DownSampleScanline1Bit()
1229 *reinterpret_cast<uint32_t*>(dest_scan + dest_pos) = set_argb; in DownSampleScanline1Bit()
1233 dest_scan[dest_pos] = static_cast<uint8_t>(reset_argb); in DownSampleScanline1Bit()
1235 dest_scan[dest_pos] = FXARGB_B(reset_argb); in DownSampleScanline1Bit()
1236 dest_scan[dest_pos + 1] = FXARGB_G(reset_argb); in DownSampleScanline1Bit()
1237 dest_scan[dest_pos + 2] = FXARGB_R(reset_argb); in DownSampleScanline1Bit()
[all …]
Dcpdf_renderstatus.cpp2681 uint8_t* dest_pos = dest_buf + row * dest_pitch; in LoadSMask() local
2684 *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/fpdfapi/parser/
Dfpdf_parser_decode.cpp438 int dest_pos = 0; in PDF_DecodeText() local
442 dest_buf[dest_pos++] = unicode; in PDF_DecodeText()
454 result.ReleaseBuffer(dest_pos); in PDF_DecodeText()
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp958 uint8_t* dest_pos = nullptr; in render() local
963 dest_pos = dest_scan + x * Bpp; in render()
967 dest_pos = dest_scan + x / 8; in render()
977 CompositeSpan(dest_pos, ori_pos, Bpp, bDestAlpha, x, span->len, in render()
980 (this->*composite_span)(dest_pos, Bpp, x, span->len, span->covers, in render()
/external/v8/src/objects/
Dfixed-array.h158 void CopyTo(int pos, FixedArray* dest, int dest_pos, int len) const;
/external/v8/src/
Dobjects.cc10388 void FixedArray::CopyTo(int pos, FixedArray* dest, int dest_pos, in CopyTo() argument
10396 dest->set(dest_pos+index, get(pos+index), mode); in CopyTo()