Home
last modified time | relevance | path

Searched refs:p_end (Results 1 – 25 of 39) sorted by relevance

12

/third_party/gettext/gettext-tools/src/
Dx-scheme.c260 const char *p_end = str + len; in is_integer_syntax() local
266 if (p == p_end) in is_integer_syntax()
271 if (p == p_end) in is_integer_syntax()
289 while (p < p_end); in is_integer_syntax()
301 const char *p_end = str + len; in is_other_number_syntax() local
320 if (p == p_end) in is_other_number_syntax()
327 if (p == p_end) in is_other_number_syntax()
331 if (unconstrained && (*p == 'I' || *p == 'i') && p + 1 == p_end) in is_other_number_syntax()
361 while (p < p_end); in is_other_number_syntax()
364 if (p < p_end) in is_other_number_syntax()
[all …]
Dmsgl-ascii.c57 const char *p_end = p + mp->msgstr_len; in is_ascii_message() local
59 for (; p < p_end; p++) in is_ascii_message()
Dformat.c105 const char *p_end = msgstr + msgstr_len; in check_msgid_msgstr_format_i() local
109 for (p = msgstr, j = 0; p < p_end; p += strlen (p) + 1, j++) in check_msgid_msgstr_format_i()
Dwrite-mo.c214 const char *p_end; in write_table() local
236 p_end = mp->msgstr + mp->msgstr_len; in write_table()
237 for (p = mp->msgstr; p < p_end; p += strlen (p) + 1) in write_table()
Dmsgl-cat.c703 const char *p_end; in catenate_msgdomain_list() local
715 p_end = tmp->alternative[i].msgstr_end; in catenate_msgdomain_list()
716 for (; p < p_end; p += strlen (p) + 1) in catenate_msgdomain_list()
Dmsgl-check.c322 const char *p_end; in check_plural() local
329 for (p = mp->msgstr, p_end = p + mp->msgstr_len; in check_plural()
330 p < p_end; in check_plural()
/third_party/ffmpeg/libavcodec/
Ddvbsub_parser.c58 uint8_t *p, *p_end; in dvbsub_parse() local
127 p_end = pc->packet_buf + pc->packet_index; in dvbsub_parse()
129 while (p < p_end) in dvbsub_parse()
133 if (6 <= p_end - p) in dvbsub_parse()
137 if (len + 6 <= p_end - p) in dvbsub_parse()
147 if (1 < p_end - p) in dvbsub_parse()
Dass.c151 const char *p_end = p + size; in ff_ass_bprint_text_event() local
153 for (; p < p_end && *p; p++) { in ff_ass_bprint_text_event()
172 if (p < p_end - 1) in ff_ass_bprint_text_event()
174 } else if (p[0] == '\r' && p < p_end - 1 && p[1] == '\n') { in ff_ass_bprint_text_event()
Dgifdec.c90 uint32_t *p_end = p + (picture->linesize[0] / sizeof(uint32_t)) * picture->height; in gif_fill() local
92 for (; p < p_end; p++) in gif_fill()
Dlibaribb24.c218 ptrdiff_t region_length = region->p_end - region->p_start; in libaribb24_handle_regions()
Ddvbsubdec.c1620 const uint8_t *p, *p_end; in dvbsub_decode() local
1646 p_end = buf + buf_size; in dvbsub_decode()
1648 while (p_end - p >= 6 && *p == 0x0f) { in dvbsub_decode()
1660 if (p_end - p < segment_length) { in dvbsub_decode()
/third_party/ffmpeg/libavformat/
Dmpegts.c657 static inline int get8(const uint8_t **pp, const uint8_t *p_end) in get8() argument
663 if (p >= p_end) in get8()
670 static inline int get16(const uint8_t **pp, const uint8_t *p_end) in get16() argument
676 if (1 >= p_end - p) in get16()
685 static char *getstr8(const uint8_t **pp, const uint8_t *p_end) in getstr8() argument
692 len = get8(&p, p_end); in getstr8()
695 if (len > p_end - p) in getstr8()
753 const uint8_t **pp, const uint8_t *p_end) in parse_section_header() argument
757 val = get8(pp, p_end); in parse_section_header()
762 val = get16(pp, p_end); in parse_section_header()
[all …]
/third_party/gettext/libtextstyle/gnulib-local/lib/
Dterm-styled-ostream.oo.c424 char *p_end; in match() local
434 p_end = &stream->curr_classes[stream->curr_classes_length]; in match()
436 while (p_start < p_end) in match()
444 for (p = p_start; p < p_end && *p != ' '; p++) in match()
569 char *p_end; in end_use_class() local
579 p_end = &stream->curr_classes[stream->curr_classes_length]; in end_use_class()
580 p = p_end; in end_use_class()
584 if (!(p_end - p_start == strlen (classname) in end_use_class()
585 && memcmp (p_start, classname, p_end - p_start) == 0)) in end_use_class()
/third_party/python/Parser/
Dtokenizer.c1174 tok_get(struct tok_state *tok, const char **p_start, const char **p_end) in tok_get() argument
1179 *p_start = *p_end = NULL; in tok_get()
1359 *p_end = tok->cur; in tok_get()
1369 *p_end = tok->cur; in tok_get()
1422 *p_end = tok->cur; in tok_get()
1479 *p_end = tok->cur - 1; /* Leave '\n' out of the string */ in tok_get()
1498 *p_end = tok->cur; in tok_get()
1510 *p_end = tok->cur; in tok_get()
1666 *p_end = tok->cur; in tok_get()
1683 *p_end = tok->cur; in tok_get()
[all …]
/third_party/boost/boost/asio/ssl/impl/
Drfc2818_verification.ipp132 const char* p_end = p + pattern_length;
135 while (p != p_end && *h)
141 if (match_pattern(p, p_end - p, h++))
155 return p == p_end && !*h;
/third_party/quickjs/
Dlibunicode.c961 const uint8_t *p, *p_end; in unicode_script() local
984 p_end = unicode_script_table + countof(unicode_script_table); in unicode_script()
986 while (p < p_end) { in unicode_script()
1016 p_end = unicode_script_ext_table + countof(unicode_script_ext_table); in unicode_script()
1018 while (p < p_end) { in unicode_script()
1079 const uint8_t *p, *p_end; in unicode_general_category1() local
1083 p_end = unicode_gc_table + countof(unicode_gc_table); in unicode_general_category1()
1085 while (p < p_end) { in unicode_general_category1()
1131 const uint8_t *p, *p_end; in unicode_prop1() local
1135 p_end = p + unicode_prop_len_table[prop_idx]; in unicode_prop1()
[all …]
/third_party/ffmpeg/doc/examples/
Dfiltering_audio.c204 const uint16_t *p_end = p + n; in print_frame() local
206 while (p < p_end) { in print_frame()
/third_party/skia/third_party/externals/harfbuzz/util/
Dhb-subset.cc264 const char *p_end = arg + strlen (arg); in parse_glyphs() local
267 while (p < p_end) in parse_glyphs()
269 while (p < p_end && (*p == ' ' || *p == ',')) in parse_glyphs()
273 while (end < p_end && *end != ' ' && *end != ',') in parse_glyphs()
/third_party/gettext/gettext-tools/libgettextpo/
Dgettext-po.c659 const char *p_end = mp->msgstr + mp->msgstr_len; in po_message_msgstr_plural() local
663 if (p >= p_end) in po_message_msgstr_plural()
686 char *p_end = (char *) mp->msgstr + mp->msgstr_len; in po_message_set_msgstr_plural() local
692 if (msgstr >= p && msgstr < p_end) in po_message_set_msgstr_plural()
699 if (p >= p_end) in po_message_set_msgstr_plural()
723 if (p + strlen (p) + 1 >= p_end) in po_message_set_msgstr_plural()
/third_party/boost/boost/math/cstdfloat/
Dcstdfloat_iostream.hpp142 char* p_end; in operator >>() local
144 x = strtoflt128(str.c_str(), &p_end); in operator >>()
146 … if(static_cast<std::ptrdiff_t>(p_end - str.c_str()) != static_cast<std::ptrdiff_t>(str.length())) in operator >>()
/third_party/freetype/src/cff/
Dcffload.c353 FT_Byte* p_end; in cff_index_load_offsets() local
366 p_end = p + data_size; in cff_index_load_offsets()
371 for ( ; p < p_end; p++, poff++ ) in cff_index_load_offsets()
376 for ( ; p < p_end; p += 2, poff++ ) in cff_index_load_offsets()
381 for ( ; p < p_end; p += 3, poff++ ) in cff_index_load_offsets()
386 for ( ; p < p_end; p += 4, poff++ ) in cff_index_load_offsets()
/third_party/flutter/skia/third_party/externals/freetype/src/cff/
Dcffload.c354 FT_Byte* p_end; in cff_index_load_offsets() local
367 p_end = p + data_size; in cff_index_load_offsets()
372 for ( ; p < p_end; p++, poff++ ) in cff_index_load_offsets()
377 for ( ; p < p_end; p += 2, poff++ ) in cff_index_load_offsets()
382 for ( ; p < p_end; p += 3, poff++ ) in cff_index_load_offsets()
387 for ( ; p < p_end; p += 4, poff++ ) in cff_index_load_offsets()
/third_party/skia/third_party/externals/freetype/src/cff/
Dcffload.c353 FT_Byte* p_end; in cff_index_load_offsets() local
366 p_end = p + data_size; in cff_index_load_offsets()
371 for ( ; p < p_end; p++, poff++ ) in cff_index_load_offsets()
376 for ( ; p < p_end; p += 2, poff++ ) in cff_index_load_offsets()
381 for ( ; p < p_end; p += 3, poff++ ) in cff_index_load_offsets()
386 for ( ; p < p_end; p += 4, poff++ ) in cff_index_load_offsets()
/third_party/boost/libs/log/src/
Dtext_file_backend.cpp410 p_end = pattern.end();
412 while (f_it != f_end && p_it != p_end)
474 if (!parse_counter_placeholder(p, p_end, width))
499 if (p_it == p_end)
/third_party/boost/boost/multiprecision/
Dfloat128.hpp219 char* p_end; in operator =() local
220 m_value = strtoflt128(s, &p_end); in operator =()
221 if (p_end - s != (std::ptrdiff_t)std::strlen(s)) in operator =()

12