Home
last modified time | relevance | path

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

/external/python/cffi/c/
Dlib_obj.c146 while (_CFFI_GETOP(opcodes[i]) != _CFFI_OP_FUNCTION_END) in lib_build_cpython_func()
150 while (_CFFI_GETOP(opcodes[i]) != _CFFI_OP_FUNCTION_END) { in lib_build_cpython_func()
275 switch (_CFFI_GETOP(g->type_op)) { in lib_build_and_cache_attr()
315 assert(_CFFI_GETOP(g->type_op) == _CFFI_OP_DLOPEN_CONST); in lib_build_and_cache_attr()
335 assert(_CFFI_GETOP(g->type_op) == _CFFI_OP_CONSTANT); in lib_build_and_cache_attr()
426 (int)_CFFI_GETOP(g->type_op)); in lib_build_and_cache_attr()
461 int op = _CFFI_GETOP(g[i].type_op); in _lib_dir1()
Dparse_c_type.c293 result = _CFFI_OP(_CFFI_GETOP(0), x); in parse_sequel()
313 *p_current = _CFFI_OP(_CFFI_GETOP(*p_current), tok->output_index); in parse_sequel()
338 switch (_CFFI_GETOP(tok->output[arg])) { in parse_sequel()
369 *p_current = _CFFI_OP(_CFFI_GETOP(*p_current), tok->output_index); in parse_sequel()
406 if (_CFFI_GETOP(g->type_op) == _CFFI_OP_CONSTANT_INT || in parse_sequel()
407 _CFFI_GETOP(g->type_op) == _CFFI_OP_ENUM) { in parse_sequel()
444 *p_current = _CFFI_OP(_CFFI_GETOP(*p_current), outer); in parse_sequel()
Drealize_c_type.c429 switch (_CFFI_GETOP(op)) { in realize_c_type_or_func()
576 while (_CFFI_GETOP(opcodes[base_index + num_args]) != in realize_c_type_or_func()
642 PyErr_Format(PyExc_NotImplementedError, "op=%d", (int)_CFFI_GETOP(op)); in realize_c_type_or_func()
676 assert(_CFFI_GETOP(op) == _CFFI_OP_FUNCTION); in realize_c_func_return_type()
722 switch (_CFFI_GETOP(op)) { in do_realize_lazy_struct()
736 (int)_CFFI_GETOP(op)); in do_realize_lazy_struct()
Dcdlopen.c193 if (_CFFI_GETOP(nglobs[i].type_op) == _CFFI_OP_CONSTANT_INT || in ffiobj_init()
194 _CFFI_GETOP(nglobs[i].type_op) == _CFFI_OP_ENUM) { in ffiobj_init()
268 if (_CFFI_GETOP(nfields[nf].field_type_op) != _CFFI_OP_NOOP) { in ffiobj_init()
Dcall_python.c91 if (_CFFI_GETOP(g->type_op) != _CFFI_OP_EXTERN_PYTHON) in _ffi_def_extern_decorator()
Dffi_obj.c105 switch (_CFFI_GETOP(g->type_op)) { in ffi_fetch_int_constant()
/external/python/cffi/cffi/
Dparse_c_type.h8 #define _CFFI_GETOP(cffi_opcode) ((unsigned char)(uintptr_t)cffi_opcode) macro