Home
last modified time | relevance | path

Searched refs:MEMOIZE (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/
Dpickle.py188 MEMOIZE = b'\x94' # store top of the stack in memo variable
516 return MEMOIZE
1658 dispatch[MEMOIZE[0]] = load_memoize
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/
DC.stg228 #undef MEMOIZE
269 #define MEMOIZE(ri,si) RECOGNIZER->memoize(RECOGNIZER, ri, si)
338 #undef MEMOIZE
372 #define MEMOIZE(ri,si) RECOGNIZER->memoize(RECOGNIZER, ri, si)
866 /* Override the normal MEMOIZE and HAVEALREADYPARSED macros as this is a filtering
873 #undef MEMOIZE
874 #define MEMOIZE(ri,si) if (BACKTRACKING>1) { RECOGNIZER->memoize(RECOGNIZER, ri, si) }
1806 if ( BACKTRACKING>0 ) { MEMOIZE(<ruleDescriptor.index>, <ruleDescriptor.name>_StartIndex); }
/external/python/cpython3/Modules/
D_pickle.c106 MEMOIZE = '\x94', enumerator
1758 const char memoize_op = MEMOIZE; in memo_put()
6974 OP(MEMOIZE, load_memoize) in load()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst1196 pickletools.optimize() now aware of the MEMOIZE opcode, can produce more
1198 MEMOIZE opcodes together with PUT or BINPUT opcodes.
D3.6.0a1.rst2677 pickletools.dis() now outputs implicit memo index for the MEMOIZE opcode.
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Cpp/
DCpp.stg551 /* Override the normal MEMOIZE and HAVEALREADYPARSED macros as this is a filtering
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1320 ``MEMOIZE`` opcode.
/external/python/cpython3/Misc/
DHISTORY1081 - Issue #19858: pickletools.optimize() now aware of the MEMOIZE opcode, can
1083 data contains MEMOIZE opcodes together with PUT or BINPUT opcodes.