Home
last modified time | relevance | path

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

123

/external/curl/src/
Dtool_formparse.c483 char *endpos; in get_param_part() local
502 *pdata = get_param_word(&p, &endpos, endchar); in get_param_part()
505 while(endpos > *pdata && ISSPACE(endpos[-1])) in get_param_part()
506 endpos--; in get_param_part()
508 *endpos = '\0'; in get_param_part()
541 filename = get_param_word(&p, &endpos, endchar); in get_param_part()
544 while(endpos > filename && ISSPACE(endpos[-1])) in get_param_part()
545 endpos--; in get_param_part()
547 *endpos = '\0'; in get_param_part()
564 hdrfile = get_param_word(&p, &endpos, endchar); in get_param_part()
[all …]
/external/python/cpython3/Modules/clinic/
D_sre.c.h167 Py_ssize_t pos, Py_ssize_t endpos);
177 Py_ssize_t endpos = PY_SSIZE_T_MAX; in _sre_SRE_Pattern_match() local
180 &string, &pos, &endpos)) { in _sre_SRE_Pattern_match()
183 return_value = _sre_SRE_Pattern_match_impl(self, string, pos, endpos); in _sre_SRE_Pattern_match()
200 Py_ssize_t pos, Py_ssize_t endpos);
210 Py_ssize_t endpos = PY_SSIZE_T_MAX; in _sre_SRE_Pattern_fullmatch() local
213 &string, &pos, &endpos)) { in _sre_SRE_Pattern_fullmatch()
216 return_value = _sre_SRE_Pattern_fullmatch_impl(self, string, pos, endpos); in _sre_SRE_Pattern_fullmatch()
235 Py_ssize_t pos, Py_ssize_t endpos);
245 Py_ssize_t endpos = PY_SSIZE_T_MAX; in _sre_SRE_Pattern_search() local
[all …]
/external/python/cpython3/Objects/stringlib/
Dcodecs.h313 Py_ssize_t startpos, endpos, newpos; in STRINGLIB() local
320 endpos = startpos+1; in STRINGLIB()
322 while ((endpos < size) && Py_UNICODE_IS_SURROGATE(data[endpos])) in STRINGLIB()
323 endpos++; in STRINGLIB()
326 writer.overallocate = (endpos < size); in STRINGLIB()
331 memset(p, '?', endpos - startpos); in STRINGLIB()
332 p += (endpos - startpos); in STRINGLIB()
335 i += (endpos - startpos - 1); in STRINGLIB()
339 for (k=startpos; k<endpos; k++) { in STRINGLIB()
345 i += (endpos - startpos - 1); in STRINGLIB()
[all …]
/external/webrtc/webrtc/common_audio/signal_processing/
Ddownsample_fast_mips.c26 size_t endpos = delay + factor * (data_out_length - 1) + 1; in WebRtcSpl_DownsampleFast_mips() local
40 || data_in_length < endpos) { in WebRtcSpl_DownsampleFast_mips()
100 [p_coefs_0] "r" (p_coefficients_0), [endpos] "r" (endpos), in WebRtcSpl_DownsampleFast_mips()
160 [p_coefs_0] "r" (p_coefficients_0), [endpos] "r" (endpos), in WebRtcSpl_DownsampleFast_mips()
Ddownsample_fast.c26 size_t endpos = delay + factor * (data_out_length - 1) + 1; in WebRtcSpl_DownsampleFastC() local
30 || data_in_length < endpos) { in WebRtcSpl_DownsampleFastC()
34 for (i = delay; i < endpos; i += factor) { in WebRtcSpl_DownsampleFastC()
Ddownsample_fast_neon.c28 size_t endpos = delay + factor * (data_out_length - 1) + 1; in WebRtcSpl_DownsampleFastNeon() local
30 size_t endpos1 = endpos - factor * res; in WebRtcSpl_DownsampleFastNeon()
34 || data_in_length < endpos) { in WebRtcSpl_DownsampleFastNeon()
204 for (; i < endpos; i += factor) { in WebRtcSpl_DownsampleFastNeon()
/external/python/cpython3/Modules/
D_heapqmodule.c55 Py_ssize_t startpos, endpos, childpos, limit; in siftup() local
60 endpos = PyList_GET_SIZE(heap); in siftup()
62 if (pos >= endpos) { in siftup()
69 limit = endpos >> 1; /* smallest pos that has no child */ in siftup()
73 if (childpos + 1 < endpos) { in siftup()
82 if (endpos != PyList_GET_SIZE(heap)) { in siftup()
409 Py_ssize_t startpos, endpos, childpos, limit; in siftup_max() local
414 endpos = PyList_GET_SIZE(heap); in siftup_max()
416 if (pos >= endpos) { in siftup_max()
423 limit = endpos >> 1; /* smallest pos that has no child */ in siftup_max()
[all …]
D_sre.c460 state->endpos = end; in state_init()
597 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_match_impl() argument
604 if (!state_init(&state, (PatternObject *)self, string, pos, endpos)) in _sre_SRE_Pattern_match_impl()
636 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_fullmatch_impl() argument
643 if (!state_init(&state, self, string, pos, endpos)) in _sre_SRE_Pattern_fullmatch_impl()
678 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_search_impl() argument
685 if (!state_init(&state, self, string, pos, endpos)) in _sre_SRE_Pattern_search_impl()
743 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_findall_impl() argument
751 if (!state_init(&state, self, string, pos, endpos)) in _sre_SRE_Pattern_findall_impl()
842 Py_ssize_t pos, Py_ssize_t endpos) in _sre_SRE_Pattern_finditer_impl() argument
[all …]
Dsre.h49 Py_ssize_t pos, endpos; /* current target slice */ member
71 Py_ssize_t pos, endpos; member
/external/python/cpython2/Tools/scripts/
Dparseentities.py20 def parse(text,pos=0,endpos=None): argument
23 if endpos is None:
24 endpos = len(text)
27 m = entityRE.search(text,pos,endpos)
/external/python/cpython3/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)
/external/python/cpython2/Modules/
D_heapqmodule.c77 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftup() local
82 endpos = PyList_GET_SIZE(heap); in _siftup()
84 if (pos >= endpos) { in _siftup()
90 limit = endpos / 2; /* smallest pos that has no child */ in _siftup()
95 if (rightpos < endpos) { in _siftup()
103 if (endpos != PyList_GET_SIZE(heap)) { in _siftup()
418 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftupmax() local
423 endpos = PyList_GET_SIZE(heap); in _siftupmax()
425 if (pos >= endpos) { in _siftupmax()
433 limit = endpos / 2; /* smallest pos that has no child */ in _siftupmax()
[all …]
Dsre.h55 Py_ssize_t pos, endpos; /* current target slice */ member
81 Py_ssize_t pos, endpos; member
/external/u-boot/board/siemens/common/
Dfactoryset.c95 int endpos; in get_factory_record_val() local
110 endpos = z; in get_factory_record_val()
111 nxt = endpos; in get_factory_record_val()
126 tmp = eeprom_buf[endpos]; in get_factory_record_val()
127 eeprom_buf[endpos] = end; in get_factory_record_val()
129 endpos - pos, name, buf, len); in get_factory_record_val()
131 eeprom_buf[endpos] = tmp; in get_factory_record_val()
/external/python/cpython3/Lib/html/
Dparser.py303 endpos = self.check_for_whole_start_tag(i)
304 if endpos < 0:
305 return endpos
307 self.__starttag_text = rawdata[i:endpos]
315 while k < endpos:
330 end = rawdata[k:endpos].strip()
339 self.handle_data(rawdata[i:endpos])
340 return endpos
348 return endpos
/external/python/cpython2/Lib/
DHTMLParser.py284 endpos = self.check_for_whole_start_tag(i)
285 if endpos < 0:
286 return endpos
288 self.__starttag_text = rawdata[i:endpos]
297 while k < endpos:
312 end = rawdata[k:endpos].strip()
321 self.handle_data(rawdata[i:endpos])
322 return endpos
330 return endpos
Dheapq.py296 endpos = len(heap)
301 while childpos < endpos:
304 if rightpos < endpos and not cmp_lt(heap[childpos], heap[rightpos]):
332 endpos = len(heap)
337 while childpos < endpos:
340 if rightpos < endpos and not cmp_lt(heap[rightpos], heap[childpos]):
/external/python/cpython3/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]:
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dfilter_functions.c143 int k, n, endpos, start; in WebRtcIsac_WeightingFilter() local
162 endpos=PITCH_WLPCBUFLEN + PITCH_SUBFRAME_LEN; in WebRtcIsac_WeightingFilter()
167 start=endpos-PITCH_WLPCWINLEN; in WebRtcIsac_WeightingFilter()
183 endpos+=PITCH_SUBFRAME_LEN; in WebRtcIsac_WeightingFilter()
/external/pdfium/core/fxcodec/codec/
Dfx_codec_fax.cpp108 void FaxFillBits(uint8_t* dest_buf, int columns, int startpos, int endpos) { in FaxFillBits() argument
110 endpos = pdfium::clamp(endpos, 0, columns); in FaxFillBits()
111 if (startpos >= endpos) in FaxFillBits()
115 int last_byte = (endpos - 1) / 8; in FaxFillBits()
117 for (int i = startpos % 8; i <= (endpos - 1) % 8; ++i) in FaxFillBits()
124 for (int i = 0; i <= (endpos - 1) % 8; ++i) in FaxFillBits()
/external/python/cpython3/Modules/_io/
Dbytesio.c162 size_t endpos; in write_bytes() local
167 endpos = (size_t)self->pos + len; in write_bytes()
168 if (endpos > (size_t)PyBytes_GET_SIZE(self->buf)) { in write_bytes()
169 if (resize_buffer(self, endpos) < 0) in write_bytes()
173 if (unshare_buffer(self, Py_MAX(endpos, (size_t)self->string_size)) < 0) in write_bytes()
193 self->pos = endpos; in write_bytes()
196 if ((size_t)self->string_size < endpos) { in write_bytes()
197 self->string_size = endpos; in write_bytes()
/external/u-boot/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()
/external/wpa_supplicant_8/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()
/external/python/cpython2/Modules/_io/
Dtextio.c1701 Py_ssize_t start, endpos, chunked, offset_to_buffer; in _textiowrapper_readline() local
1736 start = endpos = offset_to_buffer = 0; in _textiowrapper_readline()
1759 endpos = _PyIO_find_line_ending( in _textiowrapper_readline()
1762 if (endpos >= 0) { in _textiowrapper_readline()
1763 endpos += start; in _textiowrapper_readline()
1764 if (limit >= 0 && (endpos - start) + chunked >= limit) in _textiowrapper_readline()
1765 endpos = start + limit - chunked; in _textiowrapper_readline()
1770 endpos = consumed + start; in _textiowrapper_readline()
1771 if (limit >= 0 && (endpos - start) + chunked >= limit) { in _textiowrapper_readline()
1773 endpos = start + limit - chunked; in _textiowrapper_readline()
[all …]
/external/wpa_supplicant_8/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()

123