Home
last modified time | relevance | path

Searched refs:start_col (Results 1 – 14 of 14) sorted by relevance

/external/jpeg/
Djcdctmgr.c182 JDIMENSION start_row, JDIMENSION start_col, in forward_DCT() argument
195 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) { in forward_DCT()
203 elemptr = sample_data[elemr] + start_col; in forward_DCT()
272 JDIMENSION start_row, JDIMENSION start_col, in forward_DCT_float() argument
285 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) { in forward_DCT_float()
293 elemptr = sample_data[elemr] + start_col; in forward_DCT_float()
Djdcoefct.c155 JDIMENSION start_col, output_col; in decompress_onepass() local
204 start_col = MCU_col_num * compptr->MCU_sample_width; in decompress_onepass()
208 output_col = start_col; in decompress_onepass()
260 JDIMENSION start_col; in consume_data() local
316 start_col = MCU_col_num * compptr->MCU_width; in consume_data()
318 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in consume_data()
397 JDIMENSION start_col; in consume_data_build_huffman_index_baseline() local
457 JDIMENSION start_col; in consume_data_build_huffman_index_progressive() local
500 start_col = MCU_col_num * compptr->MCU_width; in consume_data_build_huffman_index_progressive()
505 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in consume_data_build_huffman_index_progressive()
Djctrans.c285 JDIMENSION start_col; in compress_output() local
309 start_col = MCU_col_num * compptr->MCU_width; in compress_output()
316 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in compress_output()
Djccoefct.c346 JDIMENSION start_col; in compress_output() local
372 start_col = MCU_col_num * compptr->MCU_width; in compress_output()
374 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in compress_output()
Djpegint.h108 JDIMENSION start_row, JDIMENSION start_col,
/external/qemu/distrib/jpeg-6b/
Djcdctmgr.c182 JDIMENSION start_row, JDIMENSION start_col, in forward_DCT() argument
195 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) { in forward_DCT()
203 elemptr = sample_data[elemr] + start_col; in forward_DCT()
272 JDIMENSION start_row, JDIMENSION start_col, in forward_DCT_float() argument
285 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) { in forward_DCT_float()
293 elemptr = sample_data[elemr] + start_col; in forward_DCT_float()
Djdcoefct.c155 JDIMENSION start_col, output_col; in decompress_onepass() local
204 start_col = MCU_col_num * compptr->MCU_sample_width; in decompress_onepass()
208 output_col = start_col; in decompress_onepass()
260 JDIMENSION start_col; in consume_data() local
316 start_col = MCU_col_num * compptr->MCU_width; in consume_data()
318 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in consume_data()
397 JDIMENSION start_col; in consume_data_build_huffman_index_baseline() local
457 JDIMENSION start_col; in consume_data_build_huffman_index_progressive() local
500 start_col = MCU_col_num * compptr->MCU_width; in consume_data_build_huffman_index_progressive()
505 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in consume_data_build_huffman_index_progressive()
Djctrans.c285 JDIMENSION start_col; in compress_output() local
309 start_col = MCU_col_num * compptr->MCU_width; in compress_output()
316 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in compress_output()
Djccoefct.c346 JDIMENSION start_col; in compress_output() local
372 start_col = MCU_col_num * compptr->MCU_width; in compress_output()
374 buffer_ptr = buffer[ci][yindex+yoffset] + start_col; in compress_output()
Djpegint.h108 JDIMENSION start_row, JDIMENSION start_col,
/external/webkit/Source/WebKit/efl/ewk/
Dewk_tiled_backing_store.c1957 unsigned long start_row, end_row, start_col, end_col, i, j, w, h; in ewk_tiled_backing_store_pre_render_relative_radius() local
1963 start_col = (long)priv->model.base.col - n; in ewk_tiled_backing_store_pre_render_relative_radius()
1970 start_row, end_row, start_col, end_col); in ewk_tiled_backing_store_pre_render_relative_radius()
1973 for (j = start_col; j <= end_col; j++) in ewk_tiled_backing_store_pre_render_relative_radius()
1982 w = (end_col - start_col + 1) * TILE_SIZE_AT_ZOOM(TILE_W, zoom); in ewk_tiled_backing_store_pre_render_relative_radius()
1984 start_col * TILE_SIZE_AT_ZOOM(TILE_W, zoom), in ewk_tiled_backing_store_pre_render_relative_radius()
/external/clang/tools/c-index-test/
Dc-index-test.c1360 unsigned start_line, unsigned start_col, in print_cursor_file_scan() argument
1366 PrintExtent(stdout, start_line, start_col, end_line, end_col); in print_cursor_file_scan()
1380 unsigned start_line = 1, start_col = 1; in perform_file_scan() local
1413 print_cursor_file_scan(TU, prevCursor, start_line, start_col, in perform_file_scan()
1416 start_col = col; in perform_file_scan()
/external/opencv/cxcore/src/
Dcxarray.cpp1574 cvGetCols( const CvArr* arr, CvMat* submat, int start_col, int end_col ) in cvGetCols() argument
1592 if( (unsigned)start_col >= (unsigned)cols || in cvGetCols()
1606 submat->cols = end_col - start_col; in cvGetCols()
1608 submat->data.ptr = mat->data.ptr + (size_t)start_col*CV_ELEM_SIZE(mat->type); in cvGetCols()
/external/opencv/cxcore/include/
Dcxcore.h215 int start_col, int end_col );