Home
last modified time | relevance | path

Searched refs:outpos (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Objects/stringlib/
Dcodecs.h23 Py_ssize_t *outpos) in STRINGLIB()
28 STRINGLIB_CHAR *p = dest + *outpos; in STRINGLIB()
237 *outpos = p - dest; in STRINGLIB()
494 STRINGLIB_CHAR *dest, Py_ssize_t *outpos, in STRINGLIB()
501 STRINGLIB_CHAR *p = dest + *outpos; in STRINGLIB()
595 *outpos = p - dest; in STRINGLIB()
/external/python/cpython2/Objects/
Dunicodeobject.c1463 … PyUnicodeObject **output, Py_ssize_t *outpos, Py_UNICODE **outptr) in unicode_decode_call_errorhandler() argument
1519 requiredsize = *outpos; in unicode_decode_call_errorhandler()
1531 *outptr = PyUnicode_AS_UNICODE(*output) + *outpos; in unicode_decode_call_errorhandler()
1537 *outpos += repsize; in unicode_decode_call_errorhandler()
1654 Py_ssize_t outpos; in PyUnicode_DecodeUTF7Stateful() local
1777 outpos = p-PyUnicode_AS_UNICODE(unicode); in PyUnicode_DecodeUTF7Stateful()
1783 &unicode, &outpos, &p)) in PyUnicode_DecodeUTF7Stateful()
1795 outpos = p-PyUnicode_AS_UNICODE(unicode); in PyUnicode_DecodeUTF7Stateful()
1801 &unicode, &outpos, &p)) in PyUnicode_DecodeUTF7Stateful()
1975 Py_ssize_t outpos; in PyUnicode_DecodeUTF8Stateful() local
[all …]
/external/libvterm/src/
Dscreen.c677 size_t outpos = 0; in _get_chars() local
683 if(buffer && outpos + thislen <= len) \ in _get_chars()
684 outpos += fill_utf8((c), (char *)buffer + outpos); \ in _get_chars()
686 outpos += thislen; \ in _get_chars()
689 if(buffer && outpos + 1 <= len) \ in _get_chars()
690 ((uint32_t*)buffer)[outpos++] = (c); \ in _get_chars()
692 outpos++; \ in _get_chars()
722 return outpos; in _get_chars()
/external/toybox/toys/posix/
Dcpio.c67 unsigned val, inpos = 8, outpos; in x8u() local
76 sscanf(hex, pattern, &val, &outpos); in x8u()
77 if (inpos != outpos) error_exit("bad header"); in x8u()
/external/python/cpython3/Objects/
Dunicodeobject.c4249 PyObject **output, Py_ssize_t *outpos) in unicode_decode_call_errorhandler_wchar() argument
4319 requiredsize = *outpos; in unicode_decode_call_errorhandler_wchar()
4332 wcsncpy(_PyUnicode_WSTR(*output) + *outpos, repwstr, repwlen); in unicode_decode_call_errorhandler_wchar()
4333 *outpos += repwlen; in unicode_decode_call_errorhandler_wchar()
5099 Py_ssize_t outpos; in _Py_DecodeUTF8_surrogateescape() local
5111 outpos = 0; in _Py_DecodeUTF8_surrogateescape()
5115 ch = ucs4lib_utf8_decode(&s, e, (Py_UCS4 *)unicode, &outpos); in _Py_DecodeUTF8_surrogateescape()
5117 ch = ucs2lib_utf8_decode(&s, e, (Py_UCS2 *)unicode, &outpos); in _Py_DecodeUTF8_surrogateescape()
5125 unicode[outpos++] = (wchar_t)Py_UNICODE_HIGH_SURROGATE(ch); in _Py_DecodeUTF8_surrogateescape()
5126 unicode[outpos++] = (wchar_t)Py_UNICODE_LOW_SURROGATE(ch); in _Py_DecodeUTF8_surrogateescape()
[all …]
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dscsimain.c1612 int outpos; in leaf_dir() local
1624 outpos = 8; in leaf_dir()
1662 if ((outpos + res + 2) > 80) { in leaf_dir()
1664 outpos = 8; in leaf_dir()
1667 outpos += res + 2; in leaf_dir()