Home
last modified time | relevance | path

Searched refs:endpos (Results 1 – 25 of 48) sorted by relevance

12

/third_party/curl/src/
Dtool_formparse.c485 char *endpos; in get_param_part() local
504 *pdata = get_param_word(&p, &endpos, endchar); in get_param_part()
507 while(endpos > *pdata && ISSPACE(endpos[-1])) in get_param_part()
508 endpos--; in get_param_part()
510 *endpos = '\0'; in get_param_part()
543 filename = get_param_word(&p, &endpos, endchar); in get_param_part()
546 while(endpos > filename && ISSPACE(endpos[-1])) in get_param_part()
547 endpos--; in get_param_part()
549 *endpos = '\0'; in get_param_part()
566 hdrfile = get_param_word(&p, &endpos, endchar); in get_param_part()
[all …]
/third_party/python/Objects/stringlib/
Dcodecs.h315 Py_ssize_t startpos, endpos, newpos; in STRINGLIB() local
322 endpos = startpos+1; in STRINGLIB()
324 while ((endpos < size) && Py_UNICODE_IS_SURROGATE(data[endpos])) in STRINGLIB()
325 endpos++; in STRINGLIB()
328 writer->overallocate = (endpos < size); in STRINGLIB()
333 memset(p, '?', endpos - startpos); in STRINGLIB()
334 p += (endpos - startpos); in STRINGLIB()
337 i += (endpos - startpos - 1); in STRINGLIB()
341 for (k=startpos; k<endpos; k++) { in STRINGLIB()
347 i += (endpos - startpos - 1); in STRINGLIB()
[all …]
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtph261pay.c95 guint endpos; member
103 guint endpos; member
665 mb->endpos = gst_bit_reader_get_pos (br); in parse_mb()
674 guint * endpos) in parse_mb_until_pos() argument
679 guint maxpos = *endpos; in parse_mb_until_pos()
690 if (mb.endpos > maxpos && count > 0) { in parse_mb_until_pos()
695 *endpos = mb.endpos; in parse_mb_until_pos()
702 *endpos = gst_bit_reader_get_pos (br); in parse_mb_until_pos()
704 *endpos, gob->gn, gob->last.mba); in parse_mb_until_pos()
711 *endpos = gob->last.mba == 0 ? in parse_mb_until_pos()
[all …]
/third_party/python/Modules/
D_heapqmodule.c66 Py_ssize_t startpos, endpos, childpos, limit; in siftup() local
71 endpos = PyList_GET_SIZE(heap); in siftup()
73 if (pos >= endpos) { in siftup()
80 limit = endpos >> 1; /* smallest pos that has no child */ in siftup()
84 if (childpos + 1 < endpos) { in siftup()
96 if (endpos != PyList_GET_SIZE(heap)) { in siftup()
460 Py_ssize_t startpos, endpos, childpos, limit; in siftup_max() local
465 endpos = PyList_GET_SIZE(heap); in siftup_max()
467 if (pos >= endpos) { in siftup_max()
474 limit = endpos >> 1; /* smallest pos that has no child */ in siftup_max()
[all …]
Dsre.h49 Py_ssize_t pos, endpos; /* current target slice */ member
71 Py_ssize_t pos, endpos; member
D_sre.c453 state->endpos = end; in state_init()
590 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_match_impl() argument
597 if (!state_init(&state, (PatternObject *)self, string, pos, endpos)) in _sre_SRE_Pattern_match_impl()
629 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_fullmatch_impl() argument
636 if (!state_init(&state, self, string, pos, endpos)) in _sre_SRE_Pattern_fullmatch_impl()
671 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_search_impl() argument
678 if (!state_init(&state, self, string, pos, endpos)) in _sre_SRE_Pattern_search_impl()
736 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_findall_impl() argument
744 if (!state_init(&state, self, string, pos, endpos)) in _sre_SRE_Pattern_findall_impl()
835 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_finditer_impl() argument
[all …]
/third_party/python/Tools/scripts/
Dparseentities.py19 def parse(text,pos=0,endpos=None): argument
22 if endpos is None:
23 endpos = len(text)
26 m = entityRE.search(text,pos,endpos)
/third_party/python/Modules/clinic/
D_sre.c.h191 Py_ssize_t pos, Py_ssize_t endpos);
203 Py_ssize_t endpos = PY_SSIZE_T_MAX; in _sre_SRE_Pattern_match() local
250 endpos = ival; in _sre_SRE_Pattern_match()
253 return_value = _sre_SRE_Pattern_match_impl(self, string, pos, endpos); in _sre_SRE_Pattern_match()
270 Py_ssize_t pos, Py_ssize_t endpos);
282 Py_ssize_t endpos = PY_SSIZE_T_MAX; in _sre_SRE_Pattern_fullmatch() local
329 endpos = ival; in _sre_SRE_Pattern_fullmatch()
332 return_value = _sre_SRE_Pattern_fullmatch_impl(self, string, pos, endpos); in _sre_SRE_Pattern_fullmatch()
351 Py_ssize_t pos, Py_ssize_t endpos);
363 Py_ssize_t endpos = PY_SSIZE_T_MAX; in _sre_SRE_Pattern_search() local
[all …]
/third_party/boost/boost/xpressive/detail/utility/
Dboyer_moore.hpp101 diff_type const endpos = std::distance(begin, end); in find_() local
104 for(diff_type curpos = offset; curpos < endpos; curpos += offset) in find_()
129 diff_type const endpos = std::distance(begin, end); in find_nocase_() local
132 for(diff_type curpos = offset; curpos < endpos; curpos += offset) in find_nocase_()
157 diff_type const endpos = std::distance(begin, end); in find_nocase_fold_() local
160 for(diff_type curpos = offset; curpos < endpos; curpos += offset) in find_nocase_fold_()
/third_party/python/Lib/html/
Dparser.py302 endpos = self.check_for_whole_start_tag(i)
303 if endpos < 0:
304 return endpos
306 self.__starttag_text = rawdata[i:endpos]
314 while k < endpos:
329 end = rawdata[k:endpos].strip()
338 self.handle_data(rawdata[i:endpos])
339 return endpos
347 return endpos
/third_party/uboot/u-boot-2020.01/board/siemens/common/
Dfactoryset.c97 int endpos; in get_factory_record_val() local
112 endpos = z; in get_factory_record_val()
113 nxt = endpos; in get_factory_record_val()
128 tmp = eeprom_buf[endpos]; in get_factory_record_val()
129 eeprom_buf[endpos] = end; in get_factory_record_val()
131 endpos - pos, name, buf, len); in get_factory_record_val()
133 eeprom_buf[endpos] = tmp; in get_factory_record_val()
/third_party/python/Lib/
Dheapq.py259 endpos = len(heap)
264 while childpos < endpos:
267 if rightpos < endpos and not heap[childpos] < heap[rightpos]:
295 endpos = len(heap)
300 while childpos < endpos:
303 if rightpos < endpos and not heap[rightpos] < heap[childpos]:
/third_party/uboot/u-boot-2020.01/fs/yaffs2/
Dyaffs_yaffs1.c135 unsigned int endpos; in yaffs1_scan() local
156 endpos = in yaffs1_scan()
164 endpos) { in yaffs1_scan()
166 endpos; in yaffs1_scan()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
Dtncs.c840 char *endpos; in tncs_process_if_tnccs() local
851 endpos = end; in tncs_process_if_tnccs()
855 *endpos = '<'; in tncs_process_if_tnccs()
863 *endpos = '<'; in tncs_process_if_tnccs()
886 char *xml, *xmlend, *endpos; in tncs_process_if_tnccs() local
896 endpos = end; in tncs_process_if_tnccs()
900 *endpos = '<'; in tncs_process_if_tnccs()
916 *endpos = '<'; in tncs_process_if_tnccs()
925 *endpos = '<'; in tncs_process_if_tnccs()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
Dtncs.c840 char *endpos; in tncs_process_if_tnccs() local
851 endpos = end; in tncs_process_if_tnccs()
855 *endpos = '<'; in tncs_process_if_tnccs()
863 *endpos = '<'; in tncs_process_if_tnccs()
886 char *xml, *xmlend, *endpos; in tncs_process_if_tnccs() local
896 endpos = end; in tncs_process_if_tnccs()
900 *endpos = '<'; in tncs_process_if_tnccs()
916 *endpos = '<'; in tncs_process_if_tnccs()
925 *endpos = '<'; in tncs_process_if_tnccs()
/third_party/python/Modules/_io/
Dbytesio.c199 size_t endpos = (size_t)self->pos + len; in write_bytes() local
200 if (endpos > (size_t)PyBytes_GET_SIZE(self->buf)) { in write_bytes()
201 if (resize_buffer(self, endpos) < 0) { in write_bytes()
207 if (unshare_buffer(self, Py_MAX(endpos, (size_t)self->string_size)) < 0) { in write_bytes()
229 self->pos = endpos; in write_bytes()
232 if ((size_t)self->string_size < endpos) { in write_bytes()
233 self->string_size = endpos; in write_bytes()
/third_party/protobuf/src/google/protobuf/io/
Dprinter.cc145 int endpos = end - text; in Print() local
147 std::string varname(text + pos, endpos - pos); in Print()
177 i = endpos; in Print()
178 pos = endpos + 1; in Print()
/third_party/python/Tools/peg_generator/pegen/
Dparser.py275 endpos = 0
277 endpos = file.tell()
279 endpos = 0
301 if endpos:
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
Dtncc.c752 char *endpos; in tncc_process_if_tnccs() local
763 endpos = end; in tncc_process_if_tnccs()
767 *endpos = '<'; in tncc_process_if_tnccs()
775 *endpos = '<'; in tncc_process_if_tnccs()
798 char *xml, *xmlend, *endpos; in tncc_process_if_tnccs() local
808 endpos = end; in tncc_process_if_tnccs()
812 *endpos = '<'; in tncc_process_if_tnccs()
828 *endpos = '<'; in tncc_process_if_tnccs()
837 *endpos = '<'; in tncc_process_if_tnccs()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
Dtncc.c752 char *endpos; in tncc_process_if_tnccs() local
763 endpos = end; in tncc_process_if_tnccs()
767 *endpos = '<'; in tncc_process_if_tnccs()
775 *endpos = '<'; in tncc_process_if_tnccs()
798 char *xml, *xmlend, *endpos; in tncc_process_if_tnccs() local
808 endpos = end; in tncc_process_if_tnccs()
812 *endpos = '<'; in tncc_process_if_tnccs()
828 *endpos = '<'; in tncc_process_if_tnccs()
837 *endpos = '<'; in tncc_process_if_tnccs()
/third_party/python/Lib/idlelib/
Dpyparse.py519 endpos = code.find('\n', startpos) + 1
521 while i < endpos:
531 i = _match_stringre(code, i, endpos).end()
548 found = re.match(r"\s*\\", code[i:endpos]) is None
/third_party/icu/icu4c/source/tools/escapesrc/
Descapesrc.cpp164 bool fixu8(std::string &linestr, size_t origpos, size_t &endpos) { in fixu8() argument
168 for(;pos<endpos;pos++) { in fixu8()
196 linestr.replace(origpos, (endpos-origpos+1), outstr); in fixu8()
/third_party/skia/third_party/externals/icu/source/tools/escapesrc/
Descapesrc.cpp164 bool fixu8(std::string &linestr, size_t origpos, size_t &endpos) { in fixu8() argument
168 for(;pos<endpos;pos++) { in fixu8()
196 linestr.replace(origpos, (endpos-origpos+1), outstr); in fixu8()
/third_party/node/deps/icu-small/source/tools/escapesrc/
Descapesrc.cpp164 bool fixu8(std::string &linestr, size_t origpos, size_t &endpos) { in fixu8() argument
168 for(;pos<endpos;pos++) { in fixu8()
196 linestr.replace(origpos, (endpos-origpos+1), outstr); in fixu8()
/third_party/flutter/skia/third_party/externals/icu/source/tools/escapesrc/
Descapesrc.cpp164 bool fixu8(std::string &linestr, size_t origpos, size_t &endpos) { in fixu8() argument
168 for(;pos<endpos;pos++) { in fixu8()
196 linestr.replace(origpos, (endpos-origpos+1), outstr); in fixu8()

12