/third_party/gstreamer/gstplugins_good/gst/goom/ |
D | goomsl_lex.l | 27 <LINE_COMMENT,C_COMMENT,INITIAL>^[ \t]*\n { ++currentGoomSL->num_lines; /* Ignore empty l… 28 <LINE_COMMENT,C_COMMENT,INITIAL>^[ \t]*"//"[^\n]*\n { ++currentGoomSL->num_lines; /* Ignore empty l… 30 <LINE_COMMENT>\n { ++currentGoomSL->num_lines; yylval.charValue=*yytext; BEGIN INITIAL; return '… 31 <INITIAL>\n { ++currentGoomSL->num_lines; yylval.charValue=*yytext; return '\n'; } 34 <C_COMMENT>\n { ++currentGoomSL->num_lines; } 37 <INITIAL>"#RST_LINE#" { currentGoomSL->num_lines = 0; } 38 <INITIAL>"#FILE ".*"#" { currentGoomSL->num_lines = 0; /* printf("%s\n", yytext); */ }
|
D | goomsl_yacc.y | 239 currentGoomSL->num_lines, type); in gsl_new_struct_field_struct() 584 zeroConst = new_constInt("0", currentGoomSL->num_lines); in new_neg() 586 zeroConst = new_constFloat("0.0", currentGoomSL->num_lines); in new_neg() 591 currentGoomSL->num_lines); in new_neg() 598 zeroConst = new_constFloat("0.0", currentGoomSL->num_lines); in new_neg() 603 currentGoomSL->num_lines); in new_neg() 608 zeroConst = new_constInt("0", currentGoomSL->num_lines); in new_neg() 792 node->line_number = currentGoomSL->num_lines; in new_static_foreach() 965 … fprintf(stderr, "ERROR: Line %d, Could not find function %s\n", currentGoomSL->num_lines, name); in new_call() 1204 NodeType *node = nodeNew(str, OPR_NODE, currentGoomSL->num_lines); in new_op() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jdapistd.c | 318 read_and_discard_scanlines(j_decompress_ptr cinfo, JDIMENSION num_lines) in read_and_discard_scanlines() argument 350 for (n = 0; n < num_lines; n++) in read_and_discard_scanlines() 402 jpeg_skip_scanlines(j_decompress_ptr cinfo, JDIMENSION num_lines) in jpeg_skip_scanlines() argument 421 if (cinfo->output_scanline + num_lines >= cinfo->output_height) { in jpeg_skip_scanlines() 422 num_lines = cinfo->output_height - cinfo->output_scanline; in jpeg_skip_scanlines() 426 return num_lines; in jpeg_skip_scanlines() 429 if (num_lines == 0) in jpeg_skip_scanlines() 436 lines_after_iMCU_row = num_lines - lines_left_in_iMCU_row; in jpeg_skip_scanlines() 451 if ((num_lines < lines_left_in_iMCU_row + 1) || in jpeg_skip_scanlines() 454 read_and_discard_scanlines(cinfo, num_lines); in jpeg_skip_scanlines() [all …]
|
D | jcapistd.c | 79 JDIMENSION num_lines) in jpeg_write_scanlines() argument 105 if (num_lines > rows_left) in jpeg_write_scanlines() 106 num_lines = rows_left; in jpeg_write_scanlines() 109 (*cinfo->main->process_data) (cinfo, scanlines, &row_ctr, num_lines); in jpeg_write_scanlines() 122 JDIMENSION num_lines) in jpeg_write_raw_data() argument 150 if (num_lines < lines_per_iMCU_row) in jpeg_write_raw_data()
|
D | jpeglib.h | 961 JDIMENSION num_lines); 971 JDIMENSION num_lines); 1008 JDIMENSION num_lines);
|
D | libjpeg.txt | 746 jpeg_skip_scanlines(j_decompress_ptr cinfo, JDIMENSION num_lines); 758 the value of num_lines is large enough to skip past the bottom of the image, 761 If the value of num_lines is valid, then jpeg_skip_scanlines() will always 771 Calling jpeg_skip_scanlines() for small values of num_lines has several 2748 v_samp_factor*DCTSIZE sample rows of each component. The passed num_lines
|
/third_party/skia/third_party/externals/libwebp/src/utils/ |
D | rescaler_utils.c | 121 const int num_lines = in WebPRescaleNeededLines() local 123 return (num_lines > max_num_lines) ? max_num_lines : num_lines; in WebPRescaleNeededLines() 126 int WebPRescalerImport(WebPRescaler* const rescaler, int num_lines, in WebPRescalerImport() argument 129 while (total_imported < num_lines && in WebPRescalerImport()
|
/third_party/cups-filters/filter/ |
D | texttotext.c | 92 int num_lines = 66, /* Lines per page */ in main() local 288 num_lines = atoi(val2); in main() 299 if (num_lines <= 0) { in main() 301 num_lines); in main() 302 num_lines = 66; in main() 316 num_lines = i; in main() 319 i, num_lines); in main() 331 num_lines, num_columns); in main() 366 if (page_top < 0 || page_top > num_lines - 1) { in main() 379 if (page_bottom < 0 || page_bottom > num_lines - page_top - 1) { in main() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | indeo3.c | 357 copy_block4(dst, ref, row_offset, row_offset, num_lines << v_zoom) 363 fill_64(dst + row_offset, pix64, (num_lines << 1) - 1, row_offset);\ 366 fill_64(dst, pix64, num_lines << 1, row_offset) 431 int x, y, line, num_lines; in decode_cell_data() local 460 num_lines = 1; in decode_cell_data() 503 num_lines = 257 - code - line; in decode_cell_data() 504 if (num_lines <= 0) in decode_cell_data() 519 num_lines = 4 - line; /* enforce next block processing */ in decode_cell_data() 535 num_lines = 4; /* enforce next block processing */ in decode_cell_data() 549 line += num_lines; in decode_cell_data() [all …]
|
/third_party/mesa3d/src/amd/common/ |
D | ac_spm.c | 260 unsigned num_lines = (even_lines > odd_lines) ? (2 * even_lines - 1) : (2 * odd_lines); in ac_init_spm() local 262 spm_trace->muxsel_lines[s] = CALLOC(num_lines, sizeof(*spm_trace->muxsel_lines[s])); in ac_init_spm() 265 spm_trace->num_muxsel_lines[s] = num_lines; in ac_init_spm()
|
/third_party/lwip/src/apps/http/makefsdata/ |
D | makefsdata.c | 761 size_t i, l, num_lines; in checkSsiByFilelist() local 790 num_lines = 1; in checkSsiByFilelist() 793 num_lines++; in checkSsiByFilelist() 800 lines = (char**)malloc(sizeof(char*) * num_lines); in checkSsiByFilelist() 806 memset(lines, 0, sizeof(char*) * num_lines); in checkSsiByFilelist() 818 LWIP_ASSERT("lines array overflow", l < num_lines); in checkSsiByFilelist() 825 LWIP_ASSERT("lines array overflow", l < num_lines); in checkSsiByFilelist()
|
/third_party/rust/crates/codespan/codespan-reporting/examples/ |
D | readme_preview.rs | 93 let num_lines = buffer.iter().filter(|byte| **byte == b'\n').count() + 1; in main() localVariable 99 let height = padding + num_lines * (font_size + line_spacing) + padding; in main()
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
D | cffdecode.c | 1332 FT_Int num_lines; in cff_decoder_parse_charstrings() local 1342 num_lines = ( nargs - 6 ) / 2; in cff_decoder_parse_charstrings() 1345 cff_check_points( builder, num_lines + 3 ) ) in cff_decoder_parse_charstrings() 1351 while ( num_lines > 0 ) in cff_decoder_parse_charstrings() 1358 num_lines--; in cff_decoder_parse_charstrings()
|
/third_party/python/Lib/test/ |
D | test_tokenize.py | 22 num_lines = len(source_string.splitlines()) 29 if missing_trailing_nl and type == NEWLINE and end[0] == num_lines:
|
D | test_pdb.py | 1927 num_lines = len(s.splitlines()) + 2 # Test for EOF 1930 for lineno in range(num_lines):
|
D | test_pydoc.py | 996 num_lines = len(result.splitlines()) 998 self.assertGreaterEqual(num_lines, expected)
|
/third_party/libdrm/include/drm/ |
D | via_drm.h | 264 __u32 num_lines; member
|
/third_party/python/Lib/ |
D | difflib.py | 1382 def _make_line(lines, format_key, side, num_lines=[0,0]): argument 1405 num_lines[side] += 1 1409 return (num_lines[side],lines.pop(0)[2:]) 1436 return (num_lines[side],text)
|
/third_party/astc-encoder/Source/ |
D | tinyexr.h | 9253 int data_width, int num_lines) { in CompressPiz() argument 9277 cd.ny = num_lines; in CompressPiz() 9291 for (int y = 0; y < num_lines; ++y) { in CompressPiz() 9373 int num_lines) { in DecompressPiz() argument 9449 channelData[i].ny = num_lines; in DecompressPiz() 9471 for (int y = 0; y < num_lines; y++) { in DecompressPiz() 9626 const float *inPtr, int width, int num_lines, int num_channels, in CompressZfp() argument 9632 TEXR_ASSERT((num_lines % 4) == 0); in CompressZfp() 9634 if ((width & 3U) || (num_lines & 3U)) { in CompressZfp() 9640 zfp_type_float, width, num_lines * num_channels); in CompressZfp() [all …]
|
/third_party/ffmpeg/libavdevice/ |
D | decklink_enc.cpp | 391 for (i = 0; i < vanc_lines.num_lines; i++) { in decklink_construct_vanc() 426 for (i = 0; i < vanc_lines.num_lines; i++) in decklink_construct_vanc()
|
/third_party/benchmark/src/ |
D | sysinfo.cc | 397 info.size = cache->line_size * cache->num_lines; in GetCacheSizesQNX()
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
D | platform_x11.c | 180 int num_lines = ((max_req_len << 2) - hdr_len) / stride_b; in swrastPutImage() local 184 int this_lines = MIN2(num_lines, y_todo); in swrastPutImage()
|
/third_party/mesa3d/src/vulkan/wsi/ |
D | wsi_common_x11.c | 1317 int num_lines = ((max_req_len << 2) - hdr_len) / stride_b; in x11_present_to_x11_sw() local 1321 int this_lines = MIN2(num_lines, y_todo); in x11_present_to_x11_sw()
|
/third_party/json/tools/cpplint/ |
D | cpplint.py | 1921 self.num_lines = len(lines) 1932 return self.num_lines
|