HomeSort by relevance Sort by last modified time
    Searched refs:LOAD_CONST (Results 1 - 25 of 28) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
peephole.c 28 /* Replace LOAD_CONST c1. LOAD_CONST c2 ... LOAD_CONST cn BUILD_TUPLE n
29 with LOAD_CONST (c1, c2, ... cn).
32 Called with codestr pointing to the first LOAD_CONST.
47 assert(codestr[i*3] == LOAD_CONST);
70 add a new LOAD_CONST newconst on top of the BUILD_TUPLE n */
72 codestr[n*3] = LOAD_CONST;
77 /* Replace LOAD_CONST c1. LOAD_CONST c2 BINOP
    [all...]
compile.c 838 case LOAD_CONST:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
peephole.c 28 /* Replace LOAD_CONST c1. LOAD_CONST c2 ... LOAD_CONST cn BUILD_TUPLE n
29 with LOAD_CONST (c1, c2, ... cn).
32 Called with codestr pointing to the first LOAD_CONST.
47 assert(codestr[i*3] == LOAD_CONST);
70 add a new LOAD_CONST newconst on top of the BUILD_TUPLE n */
72 codestr[n*3] = LOAD_CONST;
77 /* Replace LOAD_CONST c1. LOAD_CONST c2 BINOP
    [all...]
compile.c 815 case LOAD_CONST:
    [all...]
  /external/python/cpython2/Python/
peephole.c 28 /* Replace LOAD_CONST c1. LOAD_CONST c2 ... LOAD_CONST cn BUILD_TUPLE n
29 with LOAD_CONST (c1, c2, ... cn).
32 Called with codestr pointing to the first LOAD_CONST.
47 assert(codestr[i*3] == LOAD_CONST);
70 add a new LOAD_CONST newconst on top of the BUILD_TUPLE n */
72 codestr[n*3] = LOAD_CONST;
77 /* Replace LOAD_CONST c1. LOAD_CONST c2 BINO
    [all...]
compile.c 838 case LOAD_CONST:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
opcode.h 98 #define LOAD_CONST 100 /* Index in const list */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
opcode.h 98 #define LOAD_CONST 100 /* Index in const list */
  /external/python/cpython2/Include/
opcode.h 107 #define LOAD_CONST 100 /* Index in const list */
  /external/python/cpython3/Include/
opcode.h 78 #define LOAD_CONST 100
  /prebuilts/gdb/darwin-x86/include/python2.7/
opcode.h 98 #define LOAD_CONST 100 /* Index in const list */
  /prebuilts/gdb/linux-x86/include/python2.7/
opcode.h 98 #define LOAD_CONST 100 /* Index in const list */
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
opcode.h 98 #define LOAD_CONST 100 /* Index in const list */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
opcode.h 98 #define LOAD_CONST 100 /* Index in const list */
  /external/python/cpython3/Python/
peephole.c 44 assert(_Py_OPCODE(codestr[i]) == LOAD_CONST); \
71 /* Scans back N consecutive LOAD_CONST instructions, skipping NOPs,
72 returns index of the Nth last's LOAD_CONST's EXTENDED_ARG prefix.
82 if (_Py_OPCODE(codestr[i]) == LOAD_CONST) {
170 /* Replace LOAD_CONST c1, LOAD_CONST c2 ... LOAD_CONST cn, BUILD_TUPLE n
171 with LOAD_CONST (c1, c2, ... cn).
174 Called with codestr pointing to the first LOAD_CONST.
218 return copy_op_arg(codestr, c_start, LOAD_CONST, len_consts, opcode_end)
    [all...]
compile.c 979 case LOAD_CONST:
    [all...]
ceval.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
354 if c == LOAD_CONST and code[3] == IMPORT_NAME:
371 LOAD_LOAD_AND_IMPORT = LOAD_CONST + LOAD_CONST + IMPORT_NAME
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
354 if c == LOAD_CONST and code[3] == IMPORT_NAME:
371 LOAD_LOAD_AND_IMPORT = LOAD_CONST + LOAD_CONST + IMPORT_NAME
  /prebuilts/gdb/darwin-x86/lib/python2.7/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
354 if c == LOAD_CONST and code[3] == IMPORT_NAME:
371 LOAD_LOAD_AND_IMPORT = LOAD_CONST + LOAD_CONST + IMPORT_NAME
  /prebuilts/gdb/linux-x86/lib/python2.7/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
354 if c == LOAD_CONST and code[3] == IMPORT_NAME:
371 LOAD_LOAD_AND_IMPORT = LOAD_CONST + LOAD_CONST + IMPORT_NAME
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
354 if c == LOAD_CONST and code[3] == IMPORT_NAME:
371 LOAD_LOAD_AND_IMPORT = LOAD_CONST + LOAD_CONST + IMPORT_NAME
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
354 if c == LOAD_CONST and code[3] == IMPORT_NAME:
371 LOAD_LOAD_AND_IMPORT = LOAD_CONST + LOAD_CONST + IMPORT_NAME
  /external/python/cpython2/Lib/
modulefinder.py 18 LOAD_CONST = dis.opmap['LOAD_CONST']
373 and opargs[i-1][0] == LOAD_CONST):
390 and opargs[i-1][0] == opargs[i-2][0] == LOAD_CONST):
  /external/python/cpython3/Lib/
modulefinder.py 16 LOAD_CONST = dis.opmap['LOAD_CONST']
351 and opargs[i-1][0] == opargs[i-2][0] == LOAD_CONST):

Completed in 1034 milliseconds

1 2