Home
last modified time | relevance | path

Searched refs:startpos (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Dreggnu.c47 int startpos, int range) in re_adjust_startpos() argument
49 if (startpos > 0 && ONIGENC_MBC_MAXLEN(reg->enc) != 1 && startpos < size) { in re_adjust_startpos()
51 UChar *s = (UChar* )string + startpos; in re_adjust_startpos()
62 return startpos; in re_adjust_startpos()
74 re_search(regex_t* bufp, const char* string, int size, int startpos, int range, in re_search() argument
78 (UChar* )(string + startpos), in re_search()
79 (UChar* )(string + startpos + range), in re_search()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dheapq.py242 def _siftdown(heap, startpos, pos): argument
246 while pos > startpos:
297 startpos = pos
313 _siftdown(heap, startpos, pos)
315 def _siftdown_max(heap, startpos, pos): argument
320 while pos > startpos:
333 startpos = pos
349 _siftdown_max(heap, startpos, pos)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_heapqmodule.c36 _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdown() argument
52 while (pos > startpos) { in _siftdown()
77 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftup() local
83 startpos = pos; in _siftup()
117 return _siftdown(heap, startpos, pos); in _siftup()
374 _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdownmax() argument
390 while (pos > startpos){ in _siftdownmax()
413 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftupmax() local
419 startpos = pos; in _siftupmax()
456 return _siftdownmax(heap, startpos, pos); in _siftupmax()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_heapqmodule.c36 _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdown() argument
52 while (pos > startpos){ in _siftdown()
75 Py_ssize_t startpos, endpos, childpos, rightpos; in _siftup() local
81 startpos = pos; in _siftup()
118 return _siftdown(heap, startpos, pos); in _siftup()
375 _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdownmax() argument
391 while (pos > startpos){ in _siftdownmax()
414 Py_ssize_t startpos, endpos, childpos, rightpos; in _siftupmax() local
420 startpos = pos; in _siftupmax()
457 return _siftdownmax(heap, startpos, pos); in _siftupmax()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dheapq.py240 def _siftdown(heap, startpos, pos): argument
244 while pos > startpos:
295 startpos = pos
311 _siftdown(heap, startpos, pos)
Ddoctest.py286 startpos, endpos = 0, len(got)
290 startpos = len(w)
302 if startpos > endpos:
314 startpos = got.find(w, startpos, endpos)
315 if startpos < 0:
317 startpos += len(w)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dunicodeobject.c3522 Py_ssize_t startpos, Py_ssize_t endpos, in make_encode_exception() argument
3527 encoding, unicode, size, startpos, endpos, reason); in make_encode_exception()
3530 if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos)) in make_encode_exception()
3546 Py_ssize_t startpos, Py_ssize_t endpos, in raise_encode_exception() argument
3550 encoding, unicode, size, startpos, endpos, reason); in raise_encode_exception()
3563 Py_ssize_t startpos, Py_ssize_t endpos, in unicode_encode_call_errorhandler() argument
3578 encoding, unicode, size, startpos, endpos, reason); in unicode_encode_call_errorhandler()
4843 Py_ssize_t startpos, Py_ssize_t endpos, in make_translate_exception() argument
4848 unicode, size, startpos, endpos, reason); in make_translate_exception()
4851 if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos)) in make_translate_exception()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dunicodeobject.c3477 Py_ssize_t startpos, Py_ssize_t endpos, in make_encode_exception() argument
3482 encoding, unicode, size, startpos, endpos, reason); in make_encode_exception()
3485 if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos)) in make_encode_exception()
3502 Py_ssize_t startpos, Py_ssize_t endpos, in raise_encode_exception() argument
3506 encoding, unicode, size, startpos, endpos, reason); in raise_encode_exception()
3519 Py_ssize_t startpos, Py_ssize_t endpos, in unicode_encode_call_errorhandler() argument
3534 encoding, unicode, size, startpos, endpos, reason); in unicode_encode_call_errorhandler()
4749 Py_ssize_t startpos, Py_ssize_t endpos, in make_translate_exception() argument
4754 unicode, size, startpos, endpos, reason); in make_translate_exception()
4757 if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos)) in make_translate_exception()
[all …]