HomeSort by relevance Sort by last modified time
    Searched refs:fast_memo (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 353 PyObject *fast_memo; member in struct:Picklerobject
951 if (self->fast_memo == NULL) {
952 self->fast_memo = PyDict_New();
953 if (self->fast_memo == NULL) {
961 if (PyDict_GetItem(self->fast_memo, key)) {
970 if (PyDict_SetItem(self->fast_memo, key, Py_None) < 0) {
987 if (PyDict_DelItem(self->fast_memo, key) < 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 355 PyObject *fast_memo; member in struct:Picklerobject
920 if (self->fast_memo == NULL) {
921 self->fast_memo = PyDict_New();
922 if (self->fast_memo == NULL) {
930 if (PyDict_GetItem(self->fast_memo, key)) {
939 if (PyDict_SetItem(self->fast_memo, key, Py_None) < 0) {
956 if (PyDict_DelItem(self->fast_memo, key) < 0) {
    [all...]

Completed in 597 milliseconds