Home
last modified time | relevance | path

Searched refs:dest_start (Results 1 – 4 of 4) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-ot-glyf-table.hh200 else subset_glyph.dest_start = subset_glyph.source_glyph.get_bytes (); in _populate_subset_glyphs()
514 void drop_hints_bytes (hb_bytes_t &dest_start, hb_bytes_t &dest_end) const in drop_hints_bytes()
518 dest_start = bytes.sub_array (0, glyph_length - instructions_len); in drop_hints_bytes()
649 void drop_hints_bytes (hb_bytes_t &dest_start) const in drop_hints_bytes()
650 { dest_start = bytes.sub_array (0, bytes.length - instructions_length (bytes)); } in drop_hints_bytes()
700 void drop_hints_bytes (hb_bytes_t &dest_start, hb_bytes_t &dest_end) const in drop_hints_bytes()
703 case COMPOSITE: CompositeGlyph (*header, bytes).drop_hints_bytes (dest_start); return; in drop_hints_bytes()
704 case SIMPLE: SimpleGlyph (*header, bytes).drop_hints_bytes (dest_start, dest_end); return; in drop_hints_bytes()
1055 hb_bytes_t dest_start; /* region of source_glyph to copy first */ member
1063 hb_bytes_t dest_glyph = dest_start.copy (c); in serialize()
[all …]
/external/mesa3d/src/panfrost/shared/
Dpan_tiling.c192 uint8_t *dest_start = dst + ((sx >> 4) * PIXELS_PER_TILE * sizeof(pixel_t)); \
195 uint8_t *dest = (uint8_t *) (dest_start + (block_y * dst_stride)); \
/external/pdfium/core/fxge/dib/
Dcstretchengine.cpp186 double dest_start = (j - base) / scale; in Calc() local
188 if (dest_start > dest_end) in Calc()
189 std::swap(dest_start, dest_end); in Calc()
190 double area_start = std::max(dest_start, static_cast<double>(dest_pixel)); in Calc()
/external/pdfium/core/fxcodec/
Dprogressivedecoder.cpp106 double dest_start = ((float)j - base) / scale; in Calc() local
108 if (dest_start > dest_end) { in Calc()
109 double temp = dest_start; in Calc()
110 dest_start = dest_end; in Calc()
114 dest_start > (float)(dest_pixel) ? dest_start : (float)(dest_pixel); in Calc()