Home
last modified time | relevance | path

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

/external/python/cffi/cffi/
Dparse_c_type.h8 #define _CFFI_GETOP(cffi_opcode) ((unsigned char)(uintptr_t)cffi_opcode) argument
9 #define _CFFI_GETARG(cffi_opcode) (((intptr_t)cffi_opcode) >> 8) argument
Drecompiler.py4 from .cffi_opcode import *
/external/python/cffi/testing/cffi1/
Dtest_parse_c_type.py3 from cffi import cffi_opcode
13 cffi_dir = os.path.dirname(cffi_opcode.__file__)
94 cffi_opcode.OP_CONSTANT_INT if _i != 1
95 else cffi_opcode.OP_ENUM)
332 assert getattr(cffi_opcode, name[6:]) == getattr(lib, name)
333 assert sorted(cffi_opcode.PRIMITIVE_TO_INDEX.keys()) == (
Dtest_realize_c_type.py2 from cffi import cffi_opcode
47 for name in cffi_opcode.PRIMITIVE_TO_INDEX:
Dtest_new_ffi_1.py8 from cffi.cffi_opcode import PRIMITIVE_TO_INDEX