/external/jpeg/ |
D | jcdctmgr.c | 182 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()
|
D | jdcoefct.c | 155 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()
|
D | jctrans.c | 285 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()
|
D | jccoefct.c | 346 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()
|
D | jpegint.h | 108 JDIMENSION start_row, JDIMENSION start_col,
|
/external/qemu/distrib/jpeg-6b/ |
D | jcdctmgr.c | 182 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()
|
D | jdcoefct.c | 155 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()
|
D | jctrans.c | 285 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()
|
D | jccoefct.c | 346 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()
|
D | jpegint.h | 108 JDIMENSION start_row, JDIMENSION start_col,
|
/external/webkit/Source/WebKit/efl/ewk/ |
D | ewk_tiled_backing_store.c | 1957 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/ |
D | c-index-test.c | 1360 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/ |
D | cxarray.cpp | 1574 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/ |
D | cxcore.h | 215 int start_col, int end_col );
|