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

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
code.h 16 PyObject *co_code; /* instruction opcodes */ member in struct:__anon4310
87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
88 ((co)->co_code, 0, (void **)(pp)))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
code.h 16 PyObject *co_code; /* instruction opcodes */ member in struct:__anon4617
87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
88 ((co)->co_code, 0, (void **)(pp)))
  /prebuilts/gdb/darwin-x86/include/python2.7/
code.h 16 PyObject *co_code; /* instruction opcodes */ member in struct:__anon66449
87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
88 ((co)->co_code, 0, (void **)(pp)))
  /prebuilts/gdb/linux-x86/include/python2.7/
code.h 16 PyObject *co_code; /* instruction opcodes */ member in struct:__anon66571
87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
88 ((co)->co_code, 0, (void **)(pp)))
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
code.h 16 PyObject *co_code; /* instruction opcodes */ member in struct:__anon964
87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
88 ((co)->co_code, 0, (void **)(pp)))
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
code.h 16 PyObject *co_code; /* instruction opcodes */ member in struct:__anon1087
87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
88 ((co)->co_code, 0, (void **)(pp)))
  /external/python/cpython2/Include/
code.h 16 PyObject *co_code; /* instruction opcodes */ member in struct:__anon32558
87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
88 ((co)->co_code, 0, (void **)(pp)))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
codeobject.c 87 co->co_code = code;
165 {"co_code", T_OBJECT, OFF(co_code), READONLY},
307 Py_XDECREF(co->co_code);
357 cmp = PyObject_Compare(co->co_code, cp->co_code);
414 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
452 h1 = PyObject_Hash(co->co_code);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
codeobject.c 87 co->co_code = code;
165 {"co_code", T_OBJECT, OFF(co_code), READONLY},
307 Py_XDECREF(co->co_code);
357 cmp = PyObject_Compare(co->co_code, cp->co_code);
414 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
452 h1 = PyObject_Hash(co->co_code);
  /external/python/cpython2/Objects/
codeobject.c 127 co->co_code = code;
205 {"co_code", T_OBJECT, OFF(co_code), READONLY},
347 Py_XDECREF(co->co_code);
397 cmp = PyObject_Compare(co->co_code, cp->co_code);
583 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
634 h1 = PyObject_Hash(co->co_code);
  /external/python/cpython3/Include/
code.h 29 PyObject *co_code; /* instruction opcodes */ member in struct:__anon33120
  /external/python/cpython3/Lib/
dis.py 59 elif hasattr(x, 'co_code'): # Code object
119 if hasattr(x, 'co_code'): # Code object
247 return _get_instructions_bytes(co.co_code, co.co_varnames, co.co_names,
334 _disassemble_bytes(co.co_code, lasti, co.co_varnames, co.co_names,
439 return _get_instructions_bytes(co.co_code, co.co_varnames, co.co_names,
467 _disassemble_bytes(co.co_code, varnames=co.co_varnames,
  /external/python/cpython3/Objects/
codeobject.c 182 co->co_code = code;
263 {"co_code", T_OBJECT, OFF(co_code), READONLY},
428 Py_XDECREF(co->co_code);
628 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
679 h1 = PyObject_Hash(co->co_code);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
dis.py 42 elif hasattr(x, 'co_code'):
63 code = co.co_code
inspect.py 214 co_code string of raw compiled bytecode
763 while step < len(co.co_code):
764 op = ord(co.co_code[step])
768 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
    [all...]
modulefinder.py 344 code = co.co_code
368 code = co.co_code
396 code = co.co_code
604 co.co_flags, co.co_code, tuple(consts), co.co_names,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dis.py 42 elif hasattr(x, 'co_code'):
63 code = co.co_code
inspect.py 214 co_code string of raw compiled bytecode
760 while step < len(co.co_code):
761 op = ord(co.co_code[step])
765 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
    [all...]
modulefinder.py 344 code = co.co_code
368 code = co.co_code
396 code = co.co_code
602 co.co_flags, co.co_code, tuple(consts), co.co_names,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_new.py 115 codestring = c.co_code
  /external/python/cpython2/Lib/
dis.py 42 elif hasattr(x, 'co_code'):
63 code = co.co_code
inspect.py 213 co_code string of raw compiled bytecode
762 while step < len(co.co_code):
763 op = ord(co.co_code[step])
767 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
    [all...]
modulefinder.py 363 code = co.co_code
380 code = co.co_code
402 code = co.co_code
610 co.co_flags, co.co_code, tuple(consts), co.co_names,
  /external/python/cpython2/Lib/test/
test_new.py 115 codestring = c.co_code
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dis.py 42 elif hasattr(x, 'co_code'):
63 code = co.co_code

Completed in 577 milliseconds

1 2 3