Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DLZMA.cpp130 size_t outpos = 0;
133 Uncompressed.data(), &outpos, Uncompressed.size());
/external/python/cpython3/Objects/stringlib/
Dcodecs.h25 Py_ssize_t *outpos) in STRINGLIB()
30 STRINGLIB_CHAR *p = dest + *outpos; in STRINGLIB()
239 *outpos = p - dest; in STRINGLIB()
495 STRINGLIB_CHAR *dest, Py_ssize_t *outpos, in STRINGLIB()
502 STRINGLIB_CHAR *p = dest + *outpos; in STRINGLIB()
596 *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/toybox/toys/posix/
Dcpio.c66 unsigned val, inpos = 8, outpos; in x8u() local
75 sscanf(hex, pattern, &val, &outpos); in x8u()
76 if (inpos != outpos) error_exit("bad hex"); in x8u()
/external/rust/crates/csv-core/src/
Dreader.rs1408 let mut outpos = 0; in parse_by_field() localVariable
1410 let (res, nin, nout) = rdr.read_field(data, &mut field[outpos..]); in parse_by_field()
1412 outpos += nout; in parse_by_field()
1422 let s = str::from_utf8(&field[..outpos]).unwrap(); in parse_by_field()
1424 outpos = 0; in parse_by_field()
1445 let (mut outpos, mut endpos) = (0, 0); in parse_by_record()
1449 &mut record[outpos..], in parse_by_record()
1453 outpos += nout; in parse_by_record()
1465 let s = str::from_utf8(&record[..outpos]).unwrap(); in parse_by_record()
1473 outpos = 0; in parse_by_record()
/external/python/cpython3/Objects/
Dunicodeobject.c4267 wchar_t **buf, Py_ssize_t *bufsize, Py_ssize_t *outpos) in unicode_decode_call_errorhandler_wchar() argument
4331 requiredsize = *outpos; in unicode_decode_call_errorhandler_wchar()
4346 wcsncpy(*buf + *outpos, repwstr, repwlen); in unicode_decode_call_errorhandler_wchar()
4347 *outpos += repwlen; in unicode_decode_call_errorhandler_wchar()
5158 Py_ssize_t outpos; in _Py_DecodeUTF8Ex() local
5189 outpos = 0; in _Py_DecodeUTF8Ex()
5193 ch = ucs4lib_utf8_decode(&s, e, (Py_UCS4 *)unicode, &outpos); in _Py_DecodeUTF8Ex()
5195 ch = ucs2lib_utf8_decode(&s, e, (Py_UCS2 *)unicode, &outpos); in _Py_DecodeUTF8Ex()
5203 unicode[outpos++] = (wchar_t)Py_UNICODE_HIGH_SURROGATE(ch); in _Py_DecodeUTF8Ex()
5204 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()