/third_party/ffmpeg/libavformat/ |
H A D | lrcenc.c | 99 const uint8_t *next_line = memchr(line, '\n', end - line); in lrc_write_packet() local 102 if (next_line) { in lrc_write_packet() 103 size = next_line - line; in lrc_write_packet() 104 if (next_line > line && next_line[-1] == '\r') in lrc_write_packet() 106 next_line++; in lrc_write_packet() 123 line = next_line; in lrc_write_packet()
|
H A D | rtpenc_rfc4175.c | 69 int next_line; in ff_rtp_send_raw_rfc4175() local 86 next_line = 1; in ff_rtp_send_raw_rfc4175() 90 next_line = 0; in ff_rtp_send_raw_rfc4175() 102 if (next_line) i += yinc; in ff_rtp_send_raw_rfc4175() 109 if (next_line) in ff_rtp_send_raw_rfc4175()
|
H A D | rtsp.c | 728 goto next_line; in ff_sdp_parse() 739 next_line: in ff_sdp_parse()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/config/extension-highlighter/ |
H A D | extension.rb | 154 def highlight_marks line, previous_line, next_line 178 if (HighlighterAnyListRx.match(next_line) != nil) 264 next_line = old_lines[index + 1] 266 next_line = '' 272 new_lines += highlighter.highlight_marks(line, previous_line, next_line)
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | file_process.py | 57 def next_line(self): member in LinewiseFileProcessor 64 if self.next_line is None: 66 return self.next_line.rstrip()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_estdif.c | 55 const uint8_t *prev_line, const uint8_t *next_line, 265 const type *const next_line = (const type *const)nnext_line; \ 283 sum += diff_##ss(prev_line, next_line, xx, yy); \ 285 sum += diff_##ss(next_line, next2_line, xx, yy); \ 289 sD[i + rslope] += mcost * cost_##ss(prev_line, next_line, end, x, i);\ 301 sum += diff_##ss(prev_line, next_line, xx, yy); \ 303 sum += diff_##ss(next_line, next2_line, xx, yy); \ 307 sd[i + rslope] += mcost * cost_##ss(prev_line, next_line, end, x, k+i);\ 328 dst[x] = s->mid_##ss[interp](prev_line, next_line, \ 363 const uint8_t *prev_line, *prev2_line, *next_line, *next2_lin in deinterlace_slice() local [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | comment_convert.py | 137 next_line = self.next_line_rstripped 138 if next_line is None: 141 return next_line.strip().startswith('"')
|
/third_party/ffmpeg/libavcodec/ |
H A D | cdtoons.c | 64 const uint8_t *next_line = data; in cdtoons_render_sprite() local 85 data = next_line; in cdtoons_render_sprite() 91 next_line = data + line_size; in cdtoons_render_sprite() 118 if (next_line - data < step) in cdtoons_render_sprite() 125 if (next_line - data < to_skip) in cdtoons_render_sprite() 137 if (next_line - data < size) in cdtoons_render_sprite()
|
H A D | ass_split.c | 268 goto next_line; // skip comments in ass_split_section() 304 goto next_line; in ass_split_section() 350 next_line: in ass_split_section()
|
H A D | vc1dec.c | 211 int next_line; in vc1_draw_sprites() local 217 next_line = FFMIN(yline + 1, (v->sprite_height >> !!plane) - 1) * iline; in vc1_draw_sprites() 221 src_h[sprite][1] = iplane + (xoff[sprite] >> 16) + next_line; in vc1_draw_sprites() 234 iplane + next_line, xoff[sprite], in vc1_draw_sprites()
|
/third_party/rust/crates/codespan/codespan-reporting/src/ |
H A D | files.rs | 244 /// Err(next_line) => Some(next_line - 1), 338 .unwrap_or_else(|next_line| next_line - 1)) in line_index()
|
/third_party/rust/crates/codespan/codespan-reporting/examples/ |
H A D | custom_files.rs | 140 .or_else(|next_line| Ok(next_line - 1)) in line_index()
|
/third_party/curl/lib/ |
H A D | http1.c | 102 static ssize_t next_line(struct h1_req_parser *parser, in next_line() function 270 n = next_line(parser, buf, buflen, options, err); in Curl_h1_req_parse_read()
|
/third_party/node/deps/openssl/openssl/crypto/http/ |
H A D | http_client.c | 643 next_line: in OSSL_HTTP_REQ_CTX_nbio() 678 goto next_line; in OSSL_HTTP_REQ_CTX_nbio() 683 goto next_line; in OSSL_HTTP_REQ_CTX_nbio() 690 goto next_line; in OSSL_HTTP_REQ_CTX_nbio() 747 goto next_line; in OSSL_HTTP_REQ_CTX_nbio()
|
/third_party/openssl/crypto/http/ |
H A D | http_client.c | 632 next_line: in OSSL_HTTP_REQ_CTX_nbio() 667 goto next_line; in OSSL_HTTP_REQ_CTX_nbio() 672 goto next_line; in OSSL_HTTP_REQ_CTX_nbio() 679 goto next_line; in OSSL_HTTP_REQ_CTX_nbio() 736 goto next_line; in OSSL_HTTP_REQ_CTX_nbio()
|
/third_party/python/Lib/ |
H A D | ast.py | 314 next_line = '' 317 next_line += c 321 next_line += '\n' 324 lines.append(next_line) 325 next_line = '' 327 if next_line: 328 lines.append(next_line)
|
/third_party/json/tools/cpplint/ |
H A D | cpplint.py | 3764 next_line = raw[linenum + 1] 3765 if (next_line 3766 and Match(r'\s*}', next_line) 3767 and next_line.find('} else ') == -1): 3780 next_line = raw[linenum + 1] 3781 next_line_start = len(next_line) - len(next_line.lstrip()) 4342 next_line = clean_lines.elided[endlinenum + 1] 4343 next_indent = GetIndentLevel(next_line) 4347 if (if_match and Match(r'\s*else\b', next_line) [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcViewportArrayTests.cpp | 675 const GLchar* next_line = strchr(source, '\n'); in printShaderSource() local 677 if (0 != next_line) in printShaderSource() 679 next_line += 1; in printShaderSource() 680 line.assign(source, next_line - source); in printShaderSource() 692 source = next_line; in printShaderSource()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cShadingLanguage420PackTests.cpp | 18476 const GLchar* next_line = strchr(part, '\n'); in printShaderSource() local 18478 if (0 != next_line) in printShaderSource() 18480 next_line += 1; in printShaderSource() 18481 line.assign(part, next_line - part); in printShaderSource() 18493 part = next_line; in printShaderSource()
|
/third_party/libbpf/src/ |
H A D | libbpf.c | 7656 char *prev_line, *cur_line, *next_line; local 7664 next_line = buf + log_sz - 1; 7666 for (i = 0; i < max_last_line_cnt; i++, next_line = cur_line) { 7667 cur_line = find_prev_line(buf, next_line); 7678 prev_line, cur_line, next_line); 7687 prev_line, cur_line, next_line); 7696 prev_line, cur_line, next_line);
|
/third_party/node/deps/v8/tools/ |
H A D | grokdump.py | 3159 next_line = lines[i + 1] 3160 next_address = next_line[0]
|