Home
last modified time | relevance | path

Searched refs:bytes_str (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/wasm/
Dwasm-debug.cc59 SeqOneByteString* bytes_str = in GetBytesEnv() local
61 Vector<const byte> bytes(bytes_str->GetChars(), bytes_str->length()); in GetBytesEnv()
/external/python/cpython3/Objects/
Dlongobject.c1578 char **bytes_str) in long_to_decimal_string_internal() argument
1663 *bytes_str = _PyBytesWriter_Prepare(bytes_writer, *bytes_str, strlen); in long_to_decimal_string_internal()
1664 if (*bytes_str == NULL) { in long_to_decimal_string_internal()
1719 char *p = *bytes_str + strlen; in long_to_decimal_string_internal()
1721 assert(p == *bytes_str); in long_to_decimal_string_internal()
1744 (*bytes_str) += strlen; in long_to_decimal_string_internal()
1770 _PyBytesWriter *bytes_writer, char **bytes_str) in long_format_binary() argument
1832 *bytes_str = _PyBytesWriter_Prepare(bytes_writer, *bytes_str, sz); in long_format_binary()
1833 if (*bytes_str == NULL) in long_format_binary()
1897 char *p = *bytes_str + sz; in long_format_binary()
[all …]
Dbytesobject.c1400 bytes_str(PyObject *op) in bytes_str() function
2840 bytes_str, /* tp_str */
/external/python/cpython3/Python/
Dast.c5138 PyObject *bytes_str = NULL; in parsestrplus() local
5184 bytes_str = s; in parsestrplus()
5186 PyBytes_ConcatAndDel(&bytes_str, s); in parsestrplus()
5187 if (!bytes_str) in parsestrplus()
5199 if (PyArena_AddPyObject(c->c_arena, bytes_str) < 0) in parsestrplus()
5201 return Bytes(bytes_str, LINENO(n), n->n_col_offset, c->c_arena); in parsestrplus()
5205 assert(bytes_str == NULL); in parsestrplus()
5210 Py_XDECREF(bytes_str); in parsestrplus()