HomeSort by relevance Sort by last modified time
    Searched refs:endpos (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/webrtc/webrtc/common_audio/signal_processing/
downsample_fast.c 26 size_t endpos = delay + factor * (data_out_length - 1) + 1; local
30 || data_in_length < endpos) {
34 for (i = delay; i < endpos; i += factor) {
downsample_fast_mips.c 26 size_t endpos = delay + factor * (data_out_length - 1) + 1; local
40 || data_in_length < endpos) {
47 "subu %[i], %[endpos], %[delay] \n\t"
100 [p_coefs_0] "r" (p_coefficients_0), [endpos] "r" (endpos),
109 "subu %[i], %[endpos], %[delay] \n\t"
160 [p_coefs_0] "r" (p_coefficients_0), [endpos] "r" (endpos),
downsample_fast_neon.c 28 size_t endpos = delay + factor * (data_out_length - 1) + 1; local
30 size_t endpos1 = endpos - factor * res;
34 || data_in_length < endpos) {
204 for (; i < endpos; i += factor) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
parseentities.py 20 def parse(text,pos=0,endpos=None):
23 if endpos is None:
24 endpos = len(text)
27 m = entityRE.search(text,pos,endpos)
  /external/python/cpython2/Tools/scripts/
parseentities.py 20 def parse(text,pos=0,endpos=None):
23 if endpos is None:
24 endpos = len(text)
27 m = entityRE.search(text,pos,endpos)
  /external/python/cpython3/Tools/scripts/
parseentities.py 19 def parse(text,pos=0,endpos=None):
22 if endpos is None:
23 endpos = len(text)
26 m = entityRE.search(text,pos,endpos)
  /external/curl/src/
tool_formparse.c 192 char *endpos; local
211 *pdata = get_param_word(&p, &endpos, endchar);
214 while(endpos > *pdata && ISSPACE(endpos[-1]))
215 endpos--;
217 *endpos = '\0';
250 filename = get_param_word(&p, &endpos, endchar);
253 while(endpos > filename && ISSPACE(endpos[-1]))
254 endpos--
    [all...]
  /external/python/cpython3/Modules/clinic/
_sre.c.h 66 "match($self, /, string=None, pos=0, endpos=sys.maxsize, *, pattern=None)\n"
76 Py_ssize_t pos, Py_ssize_t endpos,
83 static const char * const _keywords[] = {"string", "pos", "endpos", "pattern", NULL};
87 Py_ssize_t endpos = PY_SSIZE_T_MAX; local
91 &string, &pos, &endpos, &pattern)) {
94 return_value = _sre_SRE_Pattern_match_impl(self, string, pos, endpos, pattern);
101 "fullmatch($self, /, string=None, pos=0, endpos=sys.maxsize, *,\n"
112 Py_ssize_t pos, Py_ssize_t endpos,
119 static const char * const _keywords[] = {"string", "pos", "endpos", "pattern", NULL};
123 Py_ssize_t endpos = PY_SSIZE_T_MAX local
161 Py_ssize_t endpos = PY_SSIZE_T_MAX; local
197 Py_ssize_t endpos = PY_SSIZE_T_MAX; local
233 Py_ssize_t endpos = PY_SSIZE_T_MAX; local
265 Py_ssize_t endpos = PY_SSIZE_T_MAX; local
    [all...]
  /external/python/cpython3/Objects/stringlib/
codecs.h 313 Py_ssize_t startpos, endpos, newpos; local
320 endpos = startpos+1;
322 while ((endpos < size) && Py_UNICODE_IS_SURROGATE(data[endpos]))
323 endpos++;
326 writer.overallocate = (endpos < size);
331 memset(p, '?', endpos - startpos);
332 p += (endpos - startpos);
335 i += (endpos - startpos - 1);
339 for (k=startpos; k<endpos; k++)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
sre.h 55 Py_ssize_t pos, endpos; /* current target slice */ member in struct:__anon4478
81 Py_ssize_t pos, endpos; member in struct:__anon4479
_heapqmodule.c 77 Py_ssize_t startpos, endpos, childpos, rightpos, limit; local
82 endpos = PyList_GET_SIZE(heap);
84 if (pos >= endpos) {
90 limit = endpos / 2; /* smallest pos that has no child */
95 if (rightpos < endpos) {
103 if (endpos != PyList_GET_SIZE(heap)) {
413 Py_ssize_t startpos, endpos, childpos, rightpos, limit; local
418 endpos = PyList_GET_SIZE(heap);
420 if (pos >= endpos) {
428 limit = endpos / 2; /* smallest pos that has no child */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
sre.h 45 Py_ssize_t pos, endpos; /* current target slice */ member in struct:__anon4819
71 Py_ssize_t pos, endpos; member in struct:__anon4820
_heapqmodule.c 75 Py_ssize_t startpos, endpos, childpos, rightpos; local
80 endpos = PyList_GET_SIZE(heap);
82 if (pos >= endpos) {
91 while (childpos < endpos) {
94 if (rightpos < endpos) {
414 Py_ssize_t startpos, endpos, childpos, rightpos; local
419 endpos = PyList_GET_SIZE(heap);
421 if (pos >= endpos) {
430 while (childpos < endpos) {
433 if (rightpos < endpos) {
    [all...]
  /external/python/cpython2/Modules/
sre.h 55 Py_ssize_t pos, endpos; /* current target slice */ member in struct:__anon32873
81 Py_ssize_t pos, endpos; member in struct:__anon32874
_heapqmodule.c 77 Py_ssize_t startpos, endpos, childpos, rightpos, limit; local
82 endpos = PyList_GET_SIZE(heap);
84 if (pos >= endpos) {
90 limit = endpos / 2; /* smallest pos that has no child */
95 if (rightpos < endpos) {
103 if (endpos != PyList_GET_SIZE(heap)) {
418 Py_ssize_t startpos, endpos, childpos, rightpos, limit; local
423 endpos = PyList_GET_SIZE(heap);
425 if (pos >= endpos) {
433 limit = endpos / 2; /* smallest pos that has no child *
    [all...]
  /external/python/cpython3/Modules/
sre.h 49 Py_ssize_t pos, endpos; /* current target slice */ member in struct:__anon33501
72 Py_ssize_t pos, endpos; member in struct:__anon33502
_heapqmodule.c 55 Py_ssize_t startpos, endpos, childpos, limit; local
60 endpos = PyList_GET_SIZE(heap);
62 if (pos >= endpos) {
69 limit = endpos >> 1; /* smallest pos that has no child */
73 if (childpos + 1 < endpos) {
82 if (endpos != PyList_GET_SIZE(heap)) {
409 Py_ssize_t startpos, endpos, childpos, limit; local
414 endpos = PyList_GET_SIZE(heap);
416 if (pos >= endpos) {
423 limit = endpos >> 1; /* smallest pos that has no child *
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
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/cpython2/Lib/
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]):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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]):
  /prebuilts/gdb/linux-x86/lib/python2.7/
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]):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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]):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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/annotation-tools/annotation-file-utilities/src/annotator/scanner/
InitBlockScanner.java 48 && ((JCBlock) node).endpos >= 0) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 143 int k, n, endpos, start; local
162 endpos=PITCH_WLPCBUFLEN + PITCH_SUBFRAME_LEN;
167 start=endpos-PITCH_WLPCWINLEN;
183 endpos+=PITCH_SUBFRAME_LEN;

Completed in 1020 milliseconds

1 2 3 4 5