Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:ob_sval
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Objects/
H
A
D
bytesobject.c
33
#define PyBytesObject_SIZE (offsetof(PyBytesObject,
ob_sval
) + 1)
113
op->
ob_sval
[size] = '\0';
in _PyBytes_FromSize()
142
memcpy(op->
ob_sval
, str, size);
in PyBytes_FromStringAndSize()
179
memcpy(op->
ob_sval
, str, size+1);
in PyBytes_FromString()
1231
return ((PyBytesObject *)op)->
ob_sval
;
in PyBytes_AsString()
1313
s = (const unsigned char*)op->
ob_sval
;
in PyBytes_Repr()
1346
unsigned char c = op->
ob_sval
[i];
in PyBytes_Repr()
1481
op->
ob_sval
[size] = '\0';
in bytes_repeat()
1483
_PyBytes_Repeat(op->
ob_sval
, size, a->
ob_sval
, Py_SIZ
in bytes_repeat()
[all...]
/third_party/python/Include/cpython/
H
A
D
bytesobject.h
8
char
ob_sval
[1];
member
11
*
ob_sval
contains space for 'ob_size+1' elements.
12
*
ob_sval
[ob_size] == 0.
37
return _PyBytes_CAST(op)->
ob_sval
;
in PyBytes_AS_STRING()
/third_party/python/Modules/
H
A
D
_testclinic.c
619
void *bytes_obj_buf = ((PyBytesObject *)bytes_obj)->
ob_sval
;
in bytes_from_buffer()
/third_party/python/Include/internal/
H
A
D
pycore_runtime_init.h
89
.
ob_sval
= { CH }, \
Completed in 6 milliseconds