OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dictsize
(Results
1 - 4
of
4
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
setobject.c
942
Py_ssize_t
dictsize
= PyDict_Size(other);
local
948
if (
dictsize
== -1)
950
if ((so->fill +
dictsize
)*3 >= (so->mask+1)*2) {
951
if (set_table_resize(so, (so->used +
dictsize
)*2) != 0)
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
setobject.c
943
Py_ssize_t
dictsize
= PyDict_Size(other);
local
949
if (
dictsize
== -1)
951
if ((so->fill +
dictsize
)*3 >= (so->mask+1)*2) {
952
if (set_table_resize(so, (so->used +
dictsize
)*2) != 0)
[
all
...]
/external/python/cpython2/Objects/
setobject.c
939
Py_ssize_t
dictsize
= PyDict_Size(other);
local
945
if (
dictsize
== -1)
947
if ((so->fill +
dictsize
)*3 >= (so->mask+1)*2) {
948
if (set_table_resize(so, (so->used +
dictsize
)*2) != 0)
[
all
...]
/external/python/cpython3/Objects/
setobject.c
984
Py_ssize_t
dictsize
= PyDict_Size(other);
local
990
if (
dictsize
< 0)
992
if ((so->fill +
dictsize
)*3 >= so->mask*2) {
993
if (set_table_resize(so, so->used +
dictsize
) != 0)
[
all
...]
Completed in 178 milliseconds