OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_Py_OPCODE
(Results
1 - 3
of
3
) sorted by null
/external/python/cpython3/Python/
peephole.c
21
(ABSOLUTE_JUMP(
_Py_OPCODE
(arr[i])) ? 0 : i+1))
37
if (
_Py_OPCODE
(codestr[i]) == LOAD_CONST) {
39
while (i > 0 &&
_Py_OPCODE
(codestr[i-1]) == EXTENDED_ARG) {
46
assert(
_Py_OPCODE
(codestr[i]) == EXTENDED_ARG);
55
while (i < codelen &&
_Py_OPCODE
(codestr[i]) == EXTENDED_ARG) {
68
if (i >= 1 &&
_Py_OPCODE
(word = codestr[i-1]) == EXTENDED_ARG) {
70
if (i >= 2 &&
_Py_OPCODE
(word = codestr[i-2]) == EXTENDED_ARG) {
72
if (i >= 3 &&
_Py_OPCODE
(word = codestr[i-3]) == EXTENDED_ARG) {
103
write_op_arg(codestr + i + 1 - curilen,
_Py_OPCODE
(codestr[i]), oparg, newilen);
147
assert(
_Py_OPCODE
(codestr[pos]) == LOAD_CONST)
[
all
...]
ceval.c
701
opcode =
_Py_OPCODE
(word); \
740
opcode =
_Py_OPCODE
(word); \
944
opcode =
_Py_OPCODE
(*next_instr);
[
all
...]
/external/python/cpython3/Include/
code.h
13
# define
_Py_OPCODE
(word) ((word) >> 8)
16
# define
_Py_OPCODE
(word) ((word) & 255)
Completed in 2197 milliseconds