Home
last modified time | relevance | path

Searched refs:load_global (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/PTX/
DPTXInstrLoadStore.td24 def load_global : PatFrag<(ops node:$ptr), (load node:$ptr), [{
209 [(set RC:$d, (load_global ADDRlocal32:$a))]>;
212 [(set RC:$d, (load_global ADDRlocal64:$a))]>;
259 defm LDg : PTX_LD_ALL<"ld.global", load_global>;
/external/python/cpython2/Lib/
Dpickle.py1093 def load_global(self): member in Unpickler
1098 dispatch[GLOBAL] = load_global
/external/python/cpython2/Doc/library/
Dpickle.rst657 single: load_global() (pickle protocol)
666 :class:`Unpickler`, overriding the :meth:`load_global` method.
667 :meth:`load_global` should read two lines from the pickle data stream where the
674 choose to accept it), would be to have :meth:`load_global` push onto the
/external/python/cpython2/Modules/
DcPickle.c4042 load_global(Unpicklerobject *self) in load_global() function
4890 if (load_global(self) < 0) in load()