Home
last modified time | relevance | path

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

/external/u-boot/fs/jffs2/
Dcompr_rtime.c55 int outpos; in rtime_decompress() local
59 outpos = pos = 0; in rtime_decompress()
63 while (outpos<destlen) { in rtime_decompress()
69 cpage_out[outpos++] = value; /* first the verbatim copied byte */ in rtime_decompress()
73 positions[value]=outpos; in rtime_decompress()
75 if (backoffs + repeat >= outpos) { in rtime_decompress()
77 cpage_out[outpos++] = cpage_out[backoffs++]; in rtime_decompress()
82 *(cpage_out + outpos + i) = *(cpage_out + backoffs + i); in rtime_decompress()
83 outpos+=repeat; in rtime_decompress()
/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.c678 size_t outpos = 0; in _get_chars() local
684 if(buffer && outpos + thislen <= len) \ in _get_chars()
685 outpos += fill_utf8((c), (char *)buffer + outpos); \ in _get_chars()
687 outpos += thislen; \ in _get_chars()
690 if(buffer && outpos + 1 <= len) \ in _get_chars()
691 ((uint32_t*)buffer)[outpos++] = (c); \ in _get_chars()
693 outpos++; \ in _get_chars()
723 return outpos; in _get_chars()
/external/toybox/toys/posix/
Dcpio.c65 unsigned val, inpos = 8, outpos; in x8u() local
74 sscanf(hex, pattern, &val, &outpos); in x8u()
75 if (inpos != outpos) error_exit("bad header"); in x8u()
/external/python/cpython3/Objects/
Dunicodeobject.c4112 PyObject **output, Py_ssize_t *outpos) in unicode_decode_call_errorhandler_wchar() argument
4179 requiredsize = *outpos; in unicode_decode_call_errorhandler_wchar()
4192 wcsncpy(_PyUnicode_WSTR(*output) + *outpos, repwstr, repwlen); in unicode_decode_call_errorhandler_wchar()
4193 *outpos += repwlen; in unicode_decode_call_errorhandler_wchar()
4978 Py_ssize_t outpos; in _Py_DecodeUTF8Ex() local
4993 outpos = 0; in _Py_DecodeUTF8Ex()
4997 ch = ucs4lib_utf8_decode(&s, e, (Py_UCS4 *)unicode, &outpos); in _Py_DecodeUTF8Ex()
4999 ch = ucs2lib_utf8_decode(&s, e, (Py_UCS2 *)unicode, &outpos); in _Py_DecodeUTF8Ex()
5007 unicode[outpos++] = (wchar_t)Py_UNICODE_HIGH_SURROGATE(ch); in _Py_DecodeUTF8Ex()
5008 unicode[outpos++] = (wchar_t)Py_UNICODE_LOW_SURROGATE(ch); in _Py_DecodeUTF8Ex()
[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()