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:overallocate
(Results
1 - 13
of
13
) sorted by relevance
/third_party/python/Objects/stringlib/
H
A
D
codecs.h
326
/* Only
overallocate
the buffer if it's not the last write */
in utf8_encoder()
327
writer->
overallocate
= (endpos < size);
in utf8_encoder()
391
writer->
overallocate
= 1;
in utf8_encoder()
400
/* Only
overallocate
the buffer if it's not the last write */
in utf8_encoder()
401
writer->
overallocate
= (newpos < size);
in utf8_encoder()
435
assert(writer->
overallocate
|| i == size);
in utf8_encoder()
H
A
D
unicode_format.h
887
writer->
overallocate
= 0;
in do_markup()
895
writer->
overallocate
= 0;
in do_markup()
924
writer.
overallocate
= 1;
in build_string()
/third_party/python/Include/cpython/
H
A
D
bytesobject.h
73
/* If non-zero,
overallocate
the buffer (default: 0).
75
int
overallocate
;
member
84
By default, the overallocation is disabled. Set the
overallocate
attribute
H
A
D
unicodeobject.h
732
/* If non-zero,
overallocate
the buffer (default: 0). */
733
unsigned char
overallocate
;
member
743
* disabled. Set min_length, min_char and
overallocate
attributes to control
/third_party/python/Objects/
H
A
D
bytesobject.c
207
writer.
overallocate
= 1;
in PyBytes_FromFormatV()
605
writer.
overallocate
= 1;
in _PyBytes_FormatEx()
810
writer.
overallocate
= 0;
in _PyBytes_FormatEx()
1037
assert(writer.
overallocate
|| fmtcnt == 0 || use_bytearray);
in _PyBytes_FormatEx()
1075
writer.
overallocate
= 1;
in _PyBytes_DecodeEscape()
2710
writer.
overallocate
= 1;
in _PyBytes_FromList()
2792
writer.
overallocate
= 1;
in _PyBytes_FromIterator()
3289
/* On Windows,
overallocate
by 50% is the best factor */
3292
/* On Linux,
overallocate
by 25% is the best factor */
3361
assert(!writer->
overallocate
);
in _PyBytesWriter_CheckConsistency()
[all...]
H
A
D
tupleobject.c
238
writer.
overallocate
= 1;
in tuplerepr()
271
writer.
overallocate
= 0;
in tuplerepr()
H
A
D
structseq.c
246
writer.
overallocate
= 1;
in structseq_repr()
H
A
D
unicodeobject.c
215
/* On Windows,
overallocate
by 50% is the best factor */
218
/* On Linux,
overallocate
by 25% is the best factor */
2871
writer->
overallocate
= 0;
in unicode_fromformat_arg()
3093
writer.
overallocate
= 1;
in PyUnicode_FromFormatV()
3124
writer.
overallocate
= 0;
in PyUnicode_FromFormatV()
4582
writer->
overallocate
= 1;
in unicode_decode_call_errorhandler_writer()
7101
/* Only
overallocate
the buffer if it's not the last write */
in unicode_encode_ucs1()
7102
writer.
overallocate
= (collend < size);
in unicode_encode_ucs1()
7165
writer.
overallocate
= 1;
in unicode_encode_ucs1()
7174
/* Only
overallocate
th
in unicode_encode_ucs1()
[all...]
H
A
D
listobject.c
71
/* Do not
overallocate
if the new size is closer to overallocated size
in list_resize()
396
writer.
overallocate
= 1;
in list_repr()
422
writer.
overallocate
= 0;
in list_repr()
H
A
D
dictobject.c
2418
writer.
overallocate
= 1;
in dict_repr()
2466
writer.
overallocate
= 0;
in dict_repr()
/third_party/python/Python/
H
A
D
ast_unparse.c
626
body_writer.
overallocate
= 1;
in build_fstring_body()
932
writer.
overallocate
= 1;
in expr_as_unicode()
/third_party/python/Modules/
H
A
D
_json.c
403
writer.
overallocate
= 1;
in scanstring_unicode()
H
A
D
_pickle.c
2597
writer.
overallocate
= 1;
in raw_unicode_escape()
Completed in 45 milliseconds