/third_party/ffmpeg/libavcodec/ |
D | qtrleenc.c | 329 int start_line = 0; in encode_frame() local 335 for (start_line = 0; start_line < s->avctx->height; start_line++) in encode_frame() 336 if (memcmp(p->data[0] + start_line*p->linesize[0], in encode_frame() 337 s->previous_frame->data[0] + start_line * s->previous_frame->linesize[0], in encode_frame() 341 for (end_line=s->avctx->height; end_line > start_line; end_line--) in encode_frame() 350 if ((start_line == 0 && end_line == s->avctx->height) || start_line == s->avctx->height) in encode_frame() 354 bytestream_put_be16(&buf, start_line); // starting line in encode_frame() 356 bytestream_put_be16(&buf, end_line - start_line); // lines to update in encode_frame() 359 for (i = start_line; i < end_line; i++) in encode_frame()
|
D | qtrle.c | 453 int header, start_line; in qtrle_decode_frame() local 482 start_line = bytestream2_get_be16(&s->g); in qtrle_decode_frame() 486 if (height > s->avctx->height - start_line) { in qtrle_decode_frame() 491 start_line = 0; in qtrle_decode_frame() 497 row_ptr = s->frame->linesize[0] * start_line; in qtrle_decode_frame()
|
/third_party/mesa3d/src/amd/compiler/tests/ |
D | glsl_scraper.py | 63 def finish_text(self, start_line, end_line): argument 78 self.start_line = start_line 191 .format(self.start_line, self.end_line)) 247 start_line = self.line_number 262 self.current_shader.finish_text(start_line, self.line_number)
|
/third_party/alsa-utils/alsamixer/ |
D | textbox.c | 75 const char *start_line; in show_textfile() local 89 start_line = buf; in show_textfile() 92 lines[line_count++] = start_line; in show_textfile() 94 start_line = &buf[i + 1]; in show_textfile()
|
/third_party/nghttp2/ |
D | git-clang-format | 285 start_line = int(match.group(1)) 290 matches.setdefault(filename, []).append(Range(start_line, line_count)) 362 '-lines=%s:%s' % (start_line, start_line+line_count-1) 363 for start_line, line_count in line_ranges])
|
/third_party/python/Lib/idlelib/ |
D | sidebar.py | 177 start_line = None 194 a, b = sorted([start_line, lineno]) 201 nonlocal start_line 203 start_line = int(float(self.text.index(f"@0,{event.y}"))) 212 nonlocal start_line 214 start_line = None
|
/third_party/mbedtls/scripts/ |
D | generate_ssl_debug_helpers.py | 76 start_line, end_line = '', '' 78 start_line = '#{} {}'.format(d, p) 90 yield pair_start, start_line
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | common_unittest.cc | 123 int start_line = __LINE__; in TEST() local 131 "2 " __FILE__ ":" + SimpleItoa(start_line + 1) + ": An error.", in TEST() 134 "1 " __FILE__ ":" + SimpleItoa(start_line + 2) + ": A warning.", in TEST()
|
/third_party/rust/crates/codespan/codespan-reporting/src/term/ |
D | views.rs | 194 let start_line = labeled_file.get_or_insert_line( in render() localVariable 200 start_line.multi_labels.push(( in render() 207 start_line.must_render = true; in render()
|
/third_party/rust/crates/regex/src/ |
D | dfa.rs | 401 start_line: bool, field 951 empty_flags.start_line = b.as_byte().map_or(false, |b| b == b'\n'); in exec_byte() 1083 StartLine if flags.start_line => { in follow_epsilons() 1381 | ((empty_flags.start_line as u8) << 2) in start_state() 1415 empty_flags.start_line = at == 0 || text[at - 1] == b'\n'; in start_flags() 1444 empty_flags.start_line = at == text.len() || text[at] == b'\n'; in start_flags_reverse()
|
/third_party/gn/src/gn/ |
D | command_format.cc | 489 int start_line = in SortImports() local 500 prev ? prev->GetRange().end().line_number() + 1 : start_line; in SortImports() 762 int start_line = CurrentLine(); in Expr() local 877 penalty += (CurrentLine() - start_line) * GetPenaltyForLineBreak(); in Expr() 1017 int start_line = CurrentLine(); in FunctionCall() local 1179 return penalty + (CurrentLine() - start_line) * GetPenaltyForLineBreak(); in FunctionCall()
|
D | parse_tree.cc | 942 int start_line = contents_[sr.begin]->GetRange().begin().line_number(); in SortList() local 968 prev ? prev->GetRange().end().line_number() + 1 : start_line; in SortList()
|
/third_party/ffmpeg/libavformat/ |
D | avienc.c | 537 int start_line; in avi_write_header() local 542 start_line = (i == 0) ? 0 : 1; in avi_write_header() 544 start_line = (i == 0) ? 1 : 0; in avi_write_header() 546 start_line = 0; in avi_write_header() 556 avio_wl32(pb, start_line); // valid Y start line in avi_write_header()
|
/third_party/mksh/ |
D | syn.c | 31 int start_line; /* line nesting began on */ member 861 source->errline = nesting.start_line; in syntaxerr() 901 nesting.start_line = source->line; in nesting_push() 930 nesting.start_line = 0; in compile()
|
/third_party/jerryscript/jerry-core/parser/js/ |
D | js-parser-expr.c | 867 parser_line_counter_t start_line, /**< start line */ in parser_reparse_as_common_identifier() argument 879 context_p->line = start_line; in parser_reparse_as_common_identifier() 1082 parser_line_counter_t start_line = context_p->token.line; in parser_parse_object_literal() local 1106 parser_reparse_as_common_identifier (context_p, start_line, start_column); in parser_parse_object_literal() 3060 parser_line_counter_t start_line = context_p->token.line; in parser_parse_object_initializer() local 3101 parser_reparse_as_common_identifier (context_p, start_line, start_column); in parser_parse_object_initializer() 3122 parser_pattern_form_assignment (context_p, flags, push_prop_opcode, prop_index, start_line); in parser_parse_object_initializer()
|
D | js-scanner.c | 2950 parser_line_counter_t start_line = context_p->token.line; in scanner_scan_all() local 2973 context_p->line = start_line; in scanner_scan_all()
|
/third_party/protobuf/src/google/protobuf/io/ |
D | tokenizer.cc | 494 int start_line = line_; in ConsumeBlockComment() local 533 error_collector_->AddError(start_line, start_column, in ConsumeBlockComment()
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_sidebar.py | 274 def simulate_drag(self, start_line, end_line): argument 275 start_x, start_y = self.get_line_screen_position(start_line)
|
/third_party/node/deps/v8/src/d8/ |
D | d8.cc | 3374 void WriteLcovDataForRange(std::vector<uint32_t>* lines, int start_line, in WriteLcovDataForRange() argument 3380 (*lines)[start_line] = std::max((*lines)[start_line], count); in WriteLcovDataForRange() 3383 for (int k = start_line + 1; k < end_line; k++) (*lines)[k] = count; in WriteLcovDataForRange() 3388 const std::string& name, int start_line, in WriteLcovDataForNamedRange() argument 3390 WriteLcovDataForRange(lines, start_line, end_line, count); in WriteLcovDataForNamedRange() 3391 sink << "FN:" << start_line + 1 << "," << name << std::endl; in WriteLcovDataForNamedRange() 3424 int start_line = start.GetLineNumber(); in WriteLcovData() local 3433 name_stream << "<" << start_line + 1 << "-"; in WriteLcovData() 3437 WriteLcovDataForNamedRange(sink, &lines, name_stream.str(), start_line, in WriteLcovData() 3444 int start_line = LineFromOffset(script, block_data.StartOffset()); in WriteLcovData() local [all …]
|
/third_party/json/tools/cpplint/ |
D | cpplint.py | 3589 start_line = lines[start_linenum] 3590 joined_line += ' ' + start_line.lstrip() 3591 if Search(r'(;|})', start_line): # Declarations and trivial functions 3594 if Search(r'{', start_line): 6220 for start_line in xrange(linenum, min(linenum + 3, clean_lines.NumLines())): 6221 line = clean_lines.elided[start_line][start_col:] 6226 clean_lines, start_line, start_col + len(parameter_list.group(1)))
|
/third_party/python/Tools/clinic/ |
D | clinic.py | 371 start_line = "" variable in Language 446 start_line = "#/*[{dsl_name} input]" variable in PythonLanguage 592 start_line = "/*[{dsl_name} input]" variable in CLanguage 1486 before, _, after = language.start_line.partition('{dsl_name}') 1641 write(self.language.start_line.format(dsl_name=dsl_name))
|
/third_party/protobuf/src/google/protobuf/ |
D | text_format.cc | 388 int start_line = tokenizer_.current().line; in ConsumeField() local 603 ParseLocation(start_line, start_column)); in ConsumeField()
|
D | descriptor.h | 148 int start_line; member
|
D | descriptor_unittest.cc | 7249 return strings::Substitute("$0:$1-$2:$3", 1 + loc.start_line, in PrintSourceLocation()
|
/third_party/rust/crates/clang-sys/src/ |
D | lib.rs | 2097 …(cursor: CXCursor, start: *mut *const c_char, end: *mut *const c_char, start_line: *mut c_uint, st…
|