Searched refs:max_lines (Results 1 - 9 of 9) sorted by relevance
/third_party/python/Lib/ |
H A D | textwrap.py | 60 max_lines (default: None) 124 max_lines=None, 136 self.max_lines = max_lines 254 if self.max_lines is not None: 255 if self.max_lines > 1: 311 if (self.max_lines is None or 312 len(lines) + 1 < self.max_lines or 410 w = TextWrapper(width=width, max_lines=1, **kwargs)
|
/third_party/python/Lib/test/ |
H A D | test_textwrap.py | 485 max_lines=0) 488 max_lines=1) 492 max_lines=2) 496 max_lines=2) 497 self.check_wrap(self.text, 80, [self.text], max_lines=1) 505 max_lines=6) 514 max_lines=4) 519 max_lines=2) 528 max_lines=6) 533 max_lines [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jdapistd.c | 262 * an oversize buffer (max_lines > scanlines remaining) is not an error. 267 JDIMENSION max_lines) in GLOBAL() 287 (*cinfo->main->process_data) (cinfo, scanlines, &row_ctr, max_lines); in GLOBAL() 586 JDIMENSION max_lines) in GLOBAL() 606 if (max_lines < lines_per_iMCU_row) in GLOBAL()
|
H A D | jpeglib.h | 1006 JDIMENSION max_lines); 1015 JDIMENSION max_lines);
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-fts.h | 180 int max_lines; member
|
/third_party/backends/backend/ |
H A D | hp5590.c | 2411 * Append all lines from buffer2 to the end of buffer1 and keep max_lines last 2415 * max_lines : Max number of lines in buffer1. 2418 append_and_move_lines(SANE_Byte * buffer2, SANE_Int n_lines2, SANE_Byte * buffer1, unsigned int * n_lines1_ptr, SANE_Int max_lines, unsigned int bytes_per_line) in append_and_move_lines() argument 2421 SANE_Int rest1 = max_lines - *n_lines1_ptr; in append_and_move_lines() 2422 SANE_Int copy2 = MY_MIN(n_lines2, max_lines); in append_and_move_lines() 2424 SANE_Int shift1 = *n_lines1_ptr + copy2 - max_lines; in append_and_move_lines() 2425 SANE_Int blen = MY_MIN(max_lines - shift1, (SANE_Int) *n_lines1_ptr); in append_and_move_lines()
|
H A D | microtek2.c | 6050 int max_lines; in read_shading_image() local 6123 max_lines = 5000000 / ms->bpl; in read_shading_image() 6125 max_lines = sanei_scsi_max_request_size / ms->bpl; in read_shading_image() 6127 if ( max_lines == 0 ) in read_shading_image() 6135 lines_to_read = MIN(max_lines, ms->src_remaining_lines); in read_shading_image() 6263 max_lines = 5000000 / ms->bpl; in read_shading_image() 6265 max_lines = sanei_scsi_max_request_size / ms->bpl; in read_shading_image() 6267 if ( max_lines == 0 ) in read_shading_image() 6275 lines_to_read = MIN(max_lines, ms->src_remaining_lines); in read_shading_image() 6593 int max_lines, lines_to_rea in read_cx_shading_image() local [all...] |
H A D | mustek.c | 4897 SANE_Int max_lines; in reader_process() local 4901 max_lines = (int) (strip_height * dpi + 0.5); in reader_process() 4903 if (lines_per_buffer > max_lines) in reader_process() 4906 "(%d lines)\n", strip_height, max_lines); in reader_process() 4907 lines_per_buffer = max_lines; in reader_process()
|
/third_party/mesa3d/src/intel/common/ |
H A D | intel_batch_decoder.c | 175 int max_lines) in ctx_print_buffer() 189 if (max_lines >= 0 && line_count >= max_lines) in ctx_print_buffer() 171 ctx_print_buffer(struct intel_batch_decode_ctx *ctx, struct intel_batch_decode_bo bo, uint32_t read_length, uint32_t pitch, int max_lines) ctx_print_buffer() argument
|
Completed in 25 milliseconds