/external/curl/src/ |
D | tool_formparse.c | 483 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.h | 167 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/ |
D | codecs.h | 313 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/ |
D | downsample_fast_mips.c | 26 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()
|
D | downsample_fast.c | 26 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()
|
D | downsample_fast_neon.c | 28 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.c | 55 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.c | 460 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 …]
|
D | sre.h | 49 Py_ssize_t pos, endpos; /* current target slice */ member 71 Py_ssize_t pos, endpos; member
|
/external/python/cpython2/Tools/scripts/ |
D | parseentities.py | 20 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/ |
D | parseentities.py | 19 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.c | 77 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 …]
|
D | sre.h | 55 Py_ssize_t pos, endpos; /* current target slice */ member 81 Py_ssize_t pos, endpos; member
|
/external/u-boot/board/siemens/common/ |
D | factoryset.c | 95 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/ |
D | parser.py | 303 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/ |
D | HTMLParser.py | 284 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
|
D | heapq.py | 296 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/ |
D | heapq.py | 259 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/ |
D | filter_functions.c | 143 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/ |
D | fx_codec_fax.cpp | 108 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/ |
D | bytesio.c | 162 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/ |
D | yaffs_yaffs1.c | 135 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/ |
D | tncs.c | 840 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/ |
D | textio.c | 1701 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/ |
D | tncc.c | 752 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()
|