/third_party/ffmpeg/libavcodec/ |
H A D | qtrleenc.c | 330 int end_line = s->avctx->height; in encode_frame() local 341 for (end_line=s->avctx->height; end_line > start_line; end_line--) in encode_frame() 342 if (memcmp(p->data[0] + (end_line - 1)*p->linesize[0], in encode_frame() 343 s->previous_frame->data[0] + (end_line - 1) * s->previous_frame->linesize[0], in encode_frame() 350 if ((start_line == 0 && end_line == s->avctx->height) || start_line == s->avctx->height) 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()
|
/third_party/toybox/toys/pending/ |
H A D | mdev.c | 131 goto end_line; in make_device() 142 if (s==end2) goto end_line; in make_device() 151 if (!pass) goto end_line; in make_device() 162 if (!grp) goto end_line; in make_device() 175 goto end_line; in make_device() 199 goto end_line; in make_device() 210 end_line: in make_device()
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_idioms.py | 147 end_line = BlankLine() 148 list_call.parent.append_child(end_line) 149 assert list_call.next_sibling is end_line 152 end_line.prefix = btwn.rpartition("\n")[0]
|
/third_party/python/Lib/test/ |
H A D | test_compile.py | 1113 for (line, end_line, col, end_col) in code.co_positions(): 1120 if end_line is not None: 1121 self.assertIn(end_line, end_lines) 1130 line, end_line, column, end_column, occurrence=1): 1139 self.assertEqual(position[1], end_line) 1164 line=10_000 + 2, end_line=10_000 + 2, 1167 line=10_000 + 4, end_line=10_000 + 4, 1178 line=1, end_line=3, column=0, end_column=1) 1188 line=1, end_line=1, column=0, end_column=1005) 1195 line=1, end_line [all...] |
H A D | test_code.py | 399 for line, end_line, column, end_column in positions: 400 assert line == end_line 413 for line, end_line, column, end_column in positions: 414 assert line == end_line 428 for line, end_line, column, end_column in positions: 430 self.assertEqual(end_line, new_code.co_firstlineno + 1) 566 end_line = line + read_varint(it) 577 yield (code, length, line, end_line, col, end_col) 595 for _, length, line, end_line, col, end_col in parse_location_table(code): 597 yield (line, end_line, co [all...] |
H A D | test_clinic.py | 103 end_line = cooked[2].rstrip() 106 self.assertNotEqual(end_line, "[clinic]*/[clinic]*/") 107 self.assertEqual(end_line, "[clinic]*/")
|
/third_party/mbedtls/scripts/ |
H A D | generate_ssl_debug_helpers.py | 64 start_line, end_line = '', '' 68 end_line = '#endif /* {} */'.format(p) 70 end_line = '#endif /* defined({}) */'.format(p) 72 end_line = '#endif /* !defined({}) */'.format(p) 81 yield start, end_line
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
H A D | radeonsi-run-tests.py | 38 def print_red(txt, end_line=True, prefix=None): 41 print("\033[0;31m{}\033[0m".format(txt), end="\n" if end_line else " ") 44 def print_yellow(txt, end_line=True, prefix=None): 47 print("\033[1;33m{}\033[0m".format(txt), end="\n" if end_line else " ") 50 def print_green(txt, end_line=True, prefix=None): 53 print("\033[1;32m{}\033[0m".format(txt), end="\n" if end_line else " ")
|
/third_party/mesa3d/src/amd/compiler/tests/ |
H A D | glsl_scraper.py | 63 def finish_text(self, start_line, end_line): 79 self.end_line = end_line 172 var_prefix = '__qonos_shader{0}'.format(self.end_line) 191 .format(self.start_line, self.end_line))
|
/third_party/rust/crates/codespan/codespan-reporting/src/term/ |
H A D | views.rs | 244 let end_line = labeled_file.get_or_insert_line( 250 end_line.multi_labels.push(( 257 end_line.must_render = true;
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_zzdummy.py | 76 end_line = int(float(text.index('end'))) 80 for line in range(1, end_line):
|
H A D | test_sidebar.py | 274 def simulate_drag(self, start_line, end_line): 276 end_x, end_y = self.get_line_screen_position(end_line)
|
/third_party/rust/crates/regex/src/ |
H A D | dfa.rs | 402 end_line: bool, 921 flags.end_line = true; in exec_byte() 923 flags.end_line = true; in exec_byte() 1086 EndLine if flags.end_line => { in follow_epsilons() 1382 | ((empty_flags.end_line as u8) << 3) in start_state() 1416 empty_flags.end_line = text.is_empty(); in start_flags() 1445 empty_flags.end_line = text.is_empty(); in start_flags_reverse()
|
/third_party/python/Python/ |
H A D | traceback.c | 802 int end_line; in tb_displayline() local 806 &end_line, &end_col_byte_offset)) { in tb_displayline() 810 if (start_line < 0 || end_line < 0 in tb_displayline() 854 if (start_line == end_line) { in tb_displayline()
|
H A D | compile.c | 1248 int end_line, int col_offset, int end_col_offset) in compiler_addop_line() 1270 i->i_end_lineno = end_line; in compiler_addop_line() 1247 compiler_addop_line(struct compiler *c, int opcode, int line, int end_line, int col_offset, int end_col_offset) compiler_addop_line() argument
|
/third_party/json/tools/cpplint/ |
H A D | cpplint.py | 3014 (_, end_line, end_pos) = CloseExpression(clean_lines, linenum, pos - 1) 3018 linenum = end_line 4524 (end_line, end_linenum, end_pos) = CloseExpression( 4530 if end_pos >= 0 and Match(r';', end_line[end_pos:]): 4544 opening_line_fragment = end_line[end_pos:] 4648 (last_line, end_line, end_pos) = CloseExpression( 4659 if linenum == end_line: 4663 for i in xrange(linenum + 1, end_line): 6218 end_line = -1 6225 (_, end_line, end_co [all...] |
/third_party/ffmpeg/libswscale/x86/ |
H A D | rgb_2_rgb.asm | 232 jge .end_line 288 .end_line:
|
/third_party/python/Lib/idlelib/ |
H A D | format.py | 401 end_line = int(float(text.index('end'))) 402 for cur in range(1, end_line):
|
/third_party/python/Objects/ |
H A D | codeobject.c | 983 int *end_line, int *end_column) in PyCode_Addr2Location() 986 *start_line = *end_line = co->co_firstlineno; in PyCode_Addr2Location() 995 advance_with_locations(&bounds, end_line, start_column, end_column); in PyCode_Addr2Location() 981 PyCode_Addr2Location(PyCodeObject *co, int addrq, int *start_line, int *start_column, int *end_line, int *end_column) PyCode_Addr2Location() argument
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8.cc | 3375 int end_line, uint32_t count) { in WriteLcovDataForRange() 3377 lines->resize(std::max(static_cast<size_t>(end_line + 1), lines->size()), 0); in WriteLcovDataForRange() 3381 (*lines)[end_line] = std::max((*lines)[end_line], count); in WriteLcovDataForRange() 3383 for (int k = start_line + 1; k < end_line; k++) (*lines)[k] = count; in WriteLcovDataForRange() 3389 int end_line, uint32_t count) { in WriteLcovDataForNamedRange() 3390 WriteLcovDataForRange(lines, start_line, end_line, count); in WriteLcovDataForNamedRange() 3425 int end_line = end.GetLineNumber(); in WriteLcovData() local 3438 end_line, count); in WriteLcovData() 3445 int end_line in WriteLcovData() local 3374 WriteLcovDataForRange(std::vector<uint32_t>* lines, int start_line, int end_line, uint32_t count) WriteLcovDataForRange() argument 3386 WriteLcovDataForNamedRange(std::ostream& sink, std::vector<uint32_t>* lines, const std::string& name, int start_line, int end_line, uint32_t count) WriteLcovDataForNamedRange() argument [all...] |
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 1893 my ($first_line, $end_line) = @_; 1896 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@^\+.*(//.*$)@); 1898 ($current_comment) = ($rawlines[$end_line - 2] =~ m@^[\+ ].*(//.*$)@); 1900 ($current_comment) = ($rawlines[$end_line] =~ m@^[\+ ].*(//.*$)@); 1904 ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@); 1911 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) { 1933 my ($first_line, $end_line) = @_; 1934 my $cmt = ctx_locate_comment($first_line, $end_line); 1936 ##print "LINE: $rawlines[$end_line - 1 ]\n";
|
/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor.h | 149 int end_line; member
|
H A D | descriptor.cc | 2977 out_location->end_line = span.Get(span.size() == 3 ? 0 : 2); in GetSourceLocation()
|
/third_party/rust/crates/clang-sys/src/ |
H A D | lib.rs | 2097 pub fn clang_getDefinitionSpellingAndExtent(cursor: CXCursor, start: *mut *const c_char, end: *mut *const c_char, start_line: *mut c_uint, start_column: *mut c_uint, end_line: *mut c_uint, end_column: *mut c_uint); in clang_getDefinitionSpellingAndExtent()
|
/third_party/python/Tools/gdb/ |
H A D | libpython.py | 677 end_line = line + read_varint(it)
|