Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dpeephole.c14 #define GETARG(arr, i) ((int)((arr[i+2]<<8) + arr[i+1])) macro
22 #define GETJUMPTGT(arr, i) (GETARG(arr,i) + (ABSOLUTE_JUMP(arr[i]) ? 0 : i+3))
45 assert(GETARG(codestr, (n*3)) == n); in tuple_of_constants()
55 arg = GETARG(codestr, (i*3)); in tuple_of_constants()
100 v = PyList_GET_ITEM(consts, GETARG(codestr, 0)); in fold_binops_on_constants()
101 w = PyList_GET_ITEM(consts, GETARG(codestr, 3)); in fold_binops_on_constants()
201 v = PyList_GET_ITEM(consts, GETARG(codestr, 0)); in fold_unaryops_on_constants()
371 j = GETARG(codestr, i+1); in PyCode_Optimize()
383 j = GETARG(codestr, i); in PyCode_Optimize()
396 j = GETARG(codestr, i); in PyCode_Optimize()
[all …]