Home
last modified time | relevance | path

Searched refs:numrows (Results 1 – 12 of 12) sorted by relevance

/external/libjpeg-turbo/
Djcprepct.c138 int numrows, ci; in pre_process_data() local
146 numrows = cinfo->max_v_samp_factor - prep->next_buf_row; in pre_process_data()
147 numrows = (int) MIN((JDIMENSION) numrows, inrows); in pre_process_data()
151 numrows); in pre_process_data()
152 *in_row_ctr += numrows; in pre_process_data()
153 prep->next_buf_row += numrows; in pre_process_data()
154 prep->rows_to_go -= numrows; in pre_process_data()
205 int numrows, ci; in pre_process_context() local
213 numrows = prep->next_buf_stop - prep->next_buf_row; in pre_process_context()
214 numrows = (int) MIN((JDIMENSION) numrows, inrows); in pre_process_context()
[all …]
Djmemmgr.c437 JDIMENSION samplesperrow, JDIMENSION numrows) in alloc_sarray() argument
463 if (ltemp < (long) numrows) in alloc_sarray()
466 rowsperchunk = numrows; in alloc_sarray()
471 (size_t) (numrows * sizeof(JSAMPROW))); in alloc_sarray()
475 while (currow < numrows) { in alloc_sarray()
476 rowsperchunk = MIN(rowsperchunk, numrows - currow); in alloc_sarray()
497 JDIMENSION blocksperrow, JDIMENSION numrows) in alloc_barray() argument
515 if (ltemp < (long) numrows) in alloc_barray()
518 rowsperchunk = numrows; in alloc_barray()
523 (size_t) (numrows * sizeof(JBLOCKROW))); in alloc_barray()
[all …]
Djpeglib.h839 JDIMENSION samplesperrow, JDIMENSION numrows);
841 JDIMENSION blocksperrow, JDIMENSION numrows);
845 JDIMENSION numrows,
850 JDIMENSION numrows,
/external/pdfium/fxbarcode/datamatrix/
DBC_DefaultPlacement.cpp28 int32_t numrows) { in CBC_DefaultPlacement() argument
31 m_numrows = numrows; in CBC_DefaultPlacement()
32 m_bits.resize(numcols * numrows); in CBC_DefaultPlacement()
33 for (int32_t i = 0; i < numcols * numrows; i++) { in CBC_DefaultPlacement()
DBC_DefaultPlacement.h16 CBC_DefaultPlacement(WideString codewords, int32_t numcols, int32_t numrows);
/external/syslinux/com32/cmenu/libmenu/
Dmenu.c731 if (getscreensize(1, &ms->numrows, &ms->numcols)) { in init_menusystem()
734 ms->numrows = 24; in init_menusystem()
738 ms->maxrow = ms->numrows - 1; in init_menusystem()
783 if (statline >= ms->numrows) in set_status_info()
784 statline = ms->numrows - 1; in set_status_info()
837 ms->numrows = bot - top + 1; in set_window_size()
838 if (ms->statline >= ms->numrows) in set_window_size()
839 ms->statline = ms->numrows - 1; // Clip statline if need be in set_window_size()
Dcmenu.h214 int maxrow, minrow, numrows; // Number of rows in the window member
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_texture.c59 GLuint numrows, GLuint rowsize) in copy_rows() argument
69 numrows, rowsize); in copy_rows()
72 memcpy(dst, src, numrows*rowsize); in copy_rows()
75 for(i = 0; i < numrows; ++i) { in copy_rows()
Dradeon_texture.h45 GLuint numrows, GLuint rowsize);
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_texture.c59 GLuint numrows, GLuint rowsize) in copy_rows() argument
69 numrows, rowsize); in copy_rows()
72 memcpy(dst, src, numrows*rowsize); in copy_rows()
75 for(i = 0; i < numrows; ++i) { in copy_rows()
Dradeon_texture.h45 GLuint numrows, GLuint rowsize);
/external/pdfium/third_party/libtiff/
Dtif_jpeg.c387 JDIMENSION samplesperrow, JDIMENSION numrows) in TIFFjpeg_alloc_sarray() argument
391 (&sp->cinfo.comm, pool_id, samplesperrow, numrows)); in TIFFjpeg_alloc_sarray()