HomeSort by relevance Sort by last modified time
    Searched refs:col_start (Results 1 - 8 of 8) sorted by null

  /external/pdfium/core/src/fxge/skia/
fx_skia_blitter_new.cpp 101 int col_start = span_left < clip_left ? clip_left - span_left : 0;
104 if (col_end < col_start)
106 dest_scan += col_start / 8;
119 for (int col = col_start; col < col_end; col++) {
126 dest_scan1 = dest_scan + (span_left % 8 + col - col_start + 1) / 8;
146 int col_start = span_left < clip_left ? clip_left - span_left : 0;
149 if (col_end < col_start)
151 dest_scan += col_start / 8;
164 for (int col = col_start; col < col_end; col++) {
172 dest_scan1 = dest_scan + (span_left % 8 + col - col_start + 1) / 8
    [all...]
  /external/eigen/bench/btl/libs/blitz/
blitz_LU_solve_interface.hh 54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end)
59 for (int j=col_start ; j<col_end+1 ; j++){
72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col )
77 for (int j=col_start ; j<col_end+1 ; j++){
  /external/eigen/bench/btl/libs/gmm/
gmm_LU_solve_interface.hh 54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end)
59 for (int j=col_start ; j<col_end+1 ; j++){
72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col )
77 for (int j=col_start ; j<col_end+1 ; j++){
  /external/eigen/bench/btl/libs/mtl4/
mtl4_LU_solve_interface.hh 54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end)
59 for (int j=col_start ; j<col_end+1 ; j++){
72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col )
77 for (int j=col_start ; j<col_end+1 ; j++){
  /external/pdfium/core/src/fxge/agg/src/
fx_agg_driver.cpp 401 int col_start = span_left < clip_left ? clip_left - span_left : 0; local
406 dest_scan += col_start * Bpp;
407 ori_scan += col_start * Bpp;
409 dest_scan += col_start / 8;
410 ori_scan += col_start / 8;
414 for (int col = col_start; col < col_end; col++) {
447 for (int col = col_start; col < col_end; col++) {
469 for (int col = col_start; col < col_end; col++) {
510 for (int col = col_start; col < col_end; col++) {
540 for (int col = col_start; col < col_end; col++)
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_transform.cpp 198 int col_start = bYFlip ? m_Width - dest_clip.bottom : dest_clip.top; local
211 for (int col = col_start; col < col_end; col++) {
232 FX_DWORD* src_scan = (FX_DWORD*)GetScanline(row) + col_start;
233 for (int col = col_start; col < col_end; col++) {
238 const uint8_t* src_scan = GetScanline(row) + col_start * nBytes;
240 for (int col = col_start; col < col_end; col++) {
245 for (int col = col_start; col < col_end; col++) {
266 const uint8_t* src_scan = m_pAlphaMask->GetScanline(row) + col_start;
267 for (int col = col_start; col < col_end; col++) {
    [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.c 526 const int col_start = tile_x << bits; local
531 const int xmax = (tile_size <= width - col_start) ?
532 tile_size : width - col_start;
550 const int col = col_start + x;
581 const int col_start = tile_x << bits; local
586 const int xmax = (tile_size <= width - col_start) ?
587 tile_size : width - col_start;
598 const int col = col_start + x;
    [all...]
  /external/webp/src/dsp/
lossless_enc.c 561 const int col_start = tile_x << bits; local
565 const int max_x = GetMin(tile_size, width - col_start);
588 const int col = col_start + x;
    [all...]

Completed in 736 milliseconds