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:ma_keys
(Results
1 - 5
of
5
) sorted by relevance
/third_party/python/Objects/
H
A
D
dictobject.c
511
PyDictKeysObject *keys = mp->
ma_keys
;
in _PyDict_CheckConsistency()
746
mp->
ma_keys
= keys;
in new_dict()
787
assert(orig->
ma_keys
->dk_refcnt == 1);
in clone_combined_dict_keys()
789
Py_ssize_t keys_size = _PyDict_KeysSize(orig->
ma_keys
);
in clone_combined_dict_keys()
796
memcpy(keys, orig->
ma_keys
, keys_size);
in clone_combined_dict_keys()
803
if (DK_IS_UNICODE(orig->
ma_keys
)) {
in clone_combined_dict_keys()
892
if (dk == mp->
ma_keys
&& ep->me_key == startkey) {
in unicodekeys_lookup_generic()
981
if (dk == mp->
ma_keys
&& ep->me_key == startkey) {
in dictkeys_generic_lookup()
1048
dk = mp->
ma_keys
;
in _Py_dict_lookup()
1097
if (((PyDictObject *)dict)->
ma_keys
in _PyDict_HasOnlyStringKeys()
[all...]
H
A
D
odictobject.c
533
PyDictKeysObject *keys = ((PyDictObject *)od)->
ma_keys
;
in _odict_get_index_raw()
556
size = ONE << (((PyDictObject *)od)->
ma_keys
->dk_log2_size);
in _odict_resize()
580
od->od_resize_sentinel = ((PyDictObject *)od)->
ma_keys
;
in _odict_resize()
591
keys = ((PyDictObject *)od)->
ma_keys
;
in _odict_get_index()
/third_party/python/Include/cpython/
H
A
D
dictobject.h
21
PyDictKeysObject *
ma_keys
;
member
24
are stored in
ma_keys
.
27
keys are stored in
ma_keys
and values are stored in ma_values */
/third_party/python/Python/
H
A
D
ceval.c
1504
DEOPT_IF(dict->
ma_keys
->dk_version != read_u32(cache->version), \
1506
assert(dict->
ma_keys
->dk_kind == DICT_KEYS_UNICODE); \
1507
assert(cache->index < dict->
ma_keys
->dk_nentries); \
1508
PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(dict->
ma_keys
) + cache->index; \
3076
DEOPT_IF(dict->
ma_keys
->dk_version != version, LOAD_GLOBAL);
3077
assert(DK_IS_UNICODE(dict->
ma_keys
));
3078
PyDictUnicodeEntry *entries = DK_UNICODE_ENTRIES(dict->
ma_keys
);
3100
DEOPT_IF(mdict->
ma_keys
->dk_version != mod_version, LOAD_GLOBAL);
3101
DEOPT_IF(bdict->
ma_keys
->dk_version != bltn_version, LOAD_GLOBAL);
3102
assert(DK_IS_UNICODE(bdict->
ma_keys
));
[all...]
H
A
D
specialize.c
498
if (dict->
ma_keys
->dk_kind != DICT_KEYS_UNICODE) {
in specialize_module_load_attr()
515
uint32_t keys_version = _PyDictKeys_GetVersionForCurrentState(dict->
ma_keys
);
in specialize_module_load_attr()
986
keys = ((PyDictObject *)dict)->
ma_keys
;
in _Py_Specialize_LoadMethod()
1061
PyDictKeysObject * globals_keys = ((PyDictObject *)globals)->
ma_keys
;
in _Py_Specialize_LoadGlobal()
1087
PyDictKeysObject * builtin_keys = ((PyDictObject *)builtins)->
ma_keys
;
in _Py_Specialize_LoadGlobal()
Completed in 17 milliseconds