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:minused
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Include/cpython/
H
A
D
dictobject.h
52
PyAPI_FUNC(PyObject *) _PyDict_NewPresized(Py_ssize_t
minused
);
variable
/third_party/python/Lib/test/
H
A
D
test_sys.py
1500
minused
= len(sample)
variable in SizeofTest.test_objecttypes.C
1501
if
minused
== 0: tmp = 1
1502
# the computation of
minused
is actually a bit more complicated
1504
minused
=
minused
*2
variable in SizeofTest.test_objecttypes.C
1506
while newsize <=
minused
:
/third_party/python/Objects/
H
A
D
setobject.c
232
set_table_resize(PySetObject *so, Py_ssize_t
minused
)
in set_table_resize()
argument
240
assert(
minused
>= 0);
in set_table_resize()
242
/* Find the smallest table size >
minused
. */
in set_table_resize()
245
while (newsize <= (size_t)
minused
) {
in set_table_resize()
H
A
D
dictobject.c
1567
dict_new_presized(Py_ssize_t
minused
, bool unicode)
in dict_new_presized()
argument
1574
if (
minused
<= USABLE_FRACTION(PyDict_MINSIZE)) {
in dict_new_presized()
1577
/* There are no strict guarantee that returned dict can contain
minused
in dict_new_presized()
1581
if (
minused
> USABLE_FRACTION(max_presize)) {
in dict_new_presized()
1585
log2_newsize = estimate_log2_keysize(
minused
);
in dict_new_presized()
1595
_PyDict_NewPresized(Py_ssize_t
minused
)
in _PyDict_NewPresized()
argument
1597
return dict_new_presized(
minused
, false);
in _PyDict_NewPresized()
Completed in 13 milliseconds