Home
last modified time | relevance | path

Searched refs:last_line (Results 1 – 25 of 61) sorted by relevance

123

/third_party/ffmpeg/tools/
Dgraph2dot.c158 struct line *line, *last_line, *first_line; in main() local
160 last_line = first_line = av_malloc(sizeof(struct line)); in main()
161 if (!last_line) { in main()
166 while (fgets(last_line->data, sizeof(last_line->data), infile)) { in main()
172 count += strlen(last_line->data); in main()
173 last_line->next = new_line; in main()
174 last_line = new_line; in main()
176 last_line->next = NULL; in main()
/third_party/pulseaudio/src/pulsecore/
Dcli.c57 char *last_line; member
102 pa_xfree(c->last_line); in pa_cli_free()
139 s = c->last_line; in line_callback()
141 pa_xfree(c->last_line); in line_callback()
142 c->last_line = pa_xstrdup(s); in line_callback()
/third_party/mesa3d/src/compiler/glsl/glcpp/
Dglcpp.h79 int last_line; member
92 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
97 (Current).first_line = (Current).last_line = \
98 YYRHSLOC(Rhs, 0).last_line; \
/third_party/wayland_standard/protocol/
Dgenerate-shm-formats.py120 last_line = None variable
134 last_line = node.sourceline variable
135 if last_line == None:
146 if i + 1 == last_line:
/third_party/ffmpeg/libavcodec/x86/
Dmpegvideoencdsp_init.c106 uint8_t *ptr, *last_line; in draw_edges_mmx() local
109 last_line = buf + (height - 1) * wrap; in draw_edges_mmx()
196 ptr = last_line + (i + 1) * wrap - w; in draw_edges_mmx()
208 : "r" ((x86_reg) last_line - (x86_reg) ptr - w), in draw_edges_mmx()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/
DIntermNode_test.cpp101 ASSERT_EQ(original->getLine().last_line, copy->getLine().last_line); in checkSymbolCopy()
110 loc.last_line = mUniqueIndex + 3; in createUniqueSourceLoc()
121 loc.last_line = 4; in getTestSourceLoc()
130 ASSERT_EQ(4, loc.last_line); in checkTestSourceLoc()
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
DIntermNode_test.cpp101 ASSERT_EQ(original->getLine().last_line, copy->getLine().last_line); in checkSymbolCopy()
110 loc.last_line = mUniqueIndex + 3; in createUniqueSourceLoc()
121 loc.last_line = 4; in getTestSourceLoc()
130 ASSERT_EQ(4, loc.last_line); in checkTestSourceLoc()
/third_party/ffmpeg/libavcodec/
Dmpegvideoencdsp.c122 uint8_t *ptr = buf, *last_line; in draw_edges_8_c() local
134 last_line = buf + (height - 1) * wrap; in draw_edges_8_c()
142 memcpy(last_line + (i + 1) * wrap, last_line, width + w + w); in draw_edges_8_c()
Dhuffyuvdec.c1133 const int last_line = (y_offset + height - 1) * p->linesize[0]; in decode_slice() local
1136 left[A] = p->data[0][last_line + A] = get_bits(&s->gb, 8); in decode_slice()
1137 left[R] = p->data[0][last_line + R] = get_bits(&s->gb, 8); in decode_slice()
1138 left[G] = p->data[0][last_line + G] = get_bits(&s->gb, 8); in decode_slice()
1139 left[B] = p->data[0][last_line + B] = get_bits(&s->gb, 8); in decode_slice()
1141 left[R] = p->data[0][last_line + R] = get_bits(&s->gb, 8); in decode_slice()
1142 left[G] = p->data[0][last_line + G] = get_bits(&s->gb, 8); in decode_slice()
1143 left[B] = p->data[0][last_line + B] = get_bits(&s->gb, 8); in decode_slice()
1144 left[A] = p->data[0][last_line + A] = 255; in decode_slice()
1153 s->hdsp.add_hfyu_left_pred_bgr32(p->data[0] + last_line + 4, in decode_slice()
/third_party/python/Lib/
Dtokenize.py443 last_line = b''
451 last_line = line
607 if last_line and last_line[-1] not in '\r\n' and not last_line.strip().startswith("#"):
608 yield TokenInfo(NEWLINE, '', (lnum - 1, len(last_line)), (lnum - 1, len(last_line) + 1), '')
Dtraceback.py419 last_line = None
424 last_line is None or last_line != frame.lineno or
433 last_line = frame.lineno
/third_party/mesa3d/src/compiler/glsl/
Dglsl_parser_extras.h68 int last_line; member
982 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
988 (Current).first_line = (Current).last_line = \
989 YYRHSLOC(Rhs, 0).last_line; \
Dast.h84 locp.last_line = this->location.last_line; in get_location()
101 this->location.last_line = locp.last_line; in set_location()
115 this->location.last_line = end.last_line; in set_location_range()
128 unsigned last_line; /**< Last line number within the source string. */ member
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/
Dpretty_gyp.py121 last_line = ""
140 last_line = line
/third_party/mesa3d/src/gallium/auxiliary/hud/
Dhud_context.c333 const unsigned last_line = pane->last_line; in hud_pane_accumulate_vertices() local
341 for (i = 0; i <= last_line; i++) { in hud_pane_accumulate_vertices()
344 pane->inner_height * (last_line - i) / last_line - in hud_pane_accumulate_vertices()
347 number_to_human_readable(pane->max_value * i / last_line, in hud_pane_accumulate_vertices()
386 for (i = 0; i <= last_line; i++) { in hud_pane_accumulate_vertices()
387 float y = round((pane->max_value * i / (double)last_line) * in hud_pane_accumulate_vertices()
800 pane->last_line = 5; /* lines in +1/5 increments */ in hud_pane_set_max_value()
803 pane->last_line = 8; /* lines in +1/4 increments. */ in hud_pane_set_max_value()
807 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */ in hud_pane_set_max_value()
813 pane->last_line = leftmost_digit; /* lines in +1 increments */ in hud_pane_set_max_value()
[all …]
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtpvrawpay.c273 guint last_line; /* last pack line number we pushed out a buffer list */ in gst_rtp_vraw_pay_handle_buffer() local
344 last_line = 0; in gst_rtp_vraw_pay_handle_buffer()
590 if (complete || (pack_line > last_line && pack_line % lines_delay == 0)) { in gst_rtp_vraw_pay_handle_buffer()
597 last_line = pack_line; in gst_rtp_vraw_pay_handle_buffer()
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/
Dc.m4735 int last_line;
802 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
807 (Current).first_line = (Current).last_line = \
808 YYRHSLOC (Rhs, 0).last_line; \
844 if (0 <= yylocp->last_line)
846 if (yylocp->first_line < yylocp->last_line)
848 res += YYFPRINTF (yyo, "-%d", yylocp->last_line);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DDiagnostics.cpp70 sourceLoc.first_line = sourceLoc.last_line = loc.line; in writeInfo()
DCommon.h29 int last_line; member
Dglslang_tab.cpp324 int last_line; member
349 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
353 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
355 (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
1639 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
1644 (Current).first_line = (Current).last_line = \
1645 YYRHSLOC (Rhs, 0).last_line; \
1691 if (0 <= yylocp->last_line) in yy_location_print_()
1693 if (yylocp->first_line < yylocp->last_line) in yy_location_print_()
1695 res += YYFPRINTF (yyo, "-%d", yylocp->last_line); in yy_location_print_()
Dglslang_tab.h237 int last_line; member
/third_party/python/Python/
Dtraceback.c551 int last_line = -1; in tb_printinternal() local
567 last_line == -1 || tb->tb_lineno != last_line || in tb_printinternal()
573 last_line = tb->tb_lineno; in tb_printinternal()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
Dglslang_tab_autogen.cpp393 int last_line; member
417 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
422 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
424 (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
1641 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
1646 (Current).first_line = (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
1689 if (0 <= yylocp->last_line) in yy_location_print_()
1691 if (yylocp->first_line < yylocp->last_line) in yy_location_print_()
1693 res += YYFPRINTF(yyo, "-%d", yylocp->last_line); in yy_location_print_()
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
Dglslang_tab.cpp364 int last_line; member
389 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
393 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
395 (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
1785 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
1790 (Current).first_line = (Current).last_line = \
1791 YYRHSLOC (Rhs, 0).last_line; \
1837 if (0 <= yylocp->last_line) in yy_location_print_()
1839 if (yylocp->first_line < yylocp->last_line) in yy_location_print_()
1841 res += YYFPRINTF (yyo, "-%d", yylocp->last_line); in yy_location_print_()
/third_party/mesa3d/src/mesa/program/
Dprogram_parser.h235 int last_line; member

123