Searched refs:TUPLE3 (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | pickle.py | 156 TUPLE3 = '\x87' # build 3-tuple from three topmost stack items variable 162 _tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3] 1018 dispatch[TUPLE3] = load_tuple3
|
/external/v8/src/ |
D | objects-definitions.h | 314 V(TUPLE3, Tuple3, tuple3) \
|
/external/python/cpython3/Lib/ |
D | pickle.py | 156 TUPLE3 = b'\x87' # build 3-tuple from three topmost stack items variable 162 _tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3] 1293 dispatch[TUPLE3[0]] = load_tuple3
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 82 #define TUPLE3 '\x87' /* build 3-tuple from three topmost stack items */ macro 1531 static char len2opcode[] = {EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3}; in save_tuple() 4830 case TUPLE3: in load() 5247 case TUPLE3: in noload()
|
/external/python/cpython3/Lib/test/ |
D | pickletester.py | 1657 (2, 3): pickle.TUPLE3, 1663 (3, 3): pickle.TUPLE3,
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 82 TUPLE3 = '\x87', enumerator 2493 const char len2opcode[] = {EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3}; in save_tuple() 6446 OP_ARG(TUPLE3, load_counted_tuple, 3) in load()
|
/external/python/cpython2/Lib/test/ |
D | pickletester.py | 1208 (2, 3): pickle.TUPLE3,
|