Home
last modified time | relevance | path

Searched refs:_CFFI_OP (Results 1 – 4 of 4) sorted by relevance

/external/python/cffi/demo/
Dmanual.c25 _CFFI_OP(_CFFI_OP_FUNCTION, 1),
26 _CFFI_OP(_CFFI_OP_PRIMITIVE, _CFFI_PRIM_INT),
27 _CFFI_OP(_CFFI_OP_POINTER, 1),
28 _CFFI_OP(_CFFI_OP_FUNCTION_END, 0),
29 _CFFI_OP(_CFFI_OP_FUNCTION, 1),
30 _CFFI_OP(_CFFI_OP_PRIMITIVE, _CFFI_PRIM_INT),
31 _CFFI_OP(_CFFI_OP_FUNCTION_END, 0),
32 _CFFI_OP(_CFFI_OP_STRUCT_UNION, 0),
117 { "AA", &_cffi_const_AA, _CFFI_OP(_CFFI_OP_CONSTANT_INT, 0) },
118 { "BB", &_cffi_const_BB, _CFFI_OP(_CFFI_OP_CONSTANT, 2) },
[all …]
/external/python/cffi/c/
Dparse_c_type.c242 outer = write_ds(tok, _CFFI_OP(_CFFI_OP_POINTER, outer)); in parse_sequel()
290 write_ds(tok, _CFFI_OP(_CFFI_OP_NOOP, 0)); in parse_sequel()
293 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()
316 base_index = write_ds(tok, _CFFI_OP(_CFFI_OP_FUNCTION, 0)); in parse_sequel()
322 if (write_ds(tok, _CFFI_OP(0, 0)) < 0) in parse_sequel()
344 oarg = _CFFI_OP(_CFFI_OP_POINTER, arg); in parse_sequel()
347 oarg = _CFFI_OP(_CFFI_OP_NOOP, arg); in parse_sequel()
357 tok->output[arg_next] = _CFFI_OP(_CFFI_OP_FUNCTION_END, flags); in parse_sequel()
369 *p_current = _CFFI_OP(_CFFI_GETOP(*p_current), tok->output_index); in parse_sequel()
[all …]
Drealize_c_type.c519 _CFFI_OP(_CFFI_OP_ENUM, -1)); in realize_c_type_or_func()
/external/python/cffi/cffi/
Dparse_c_type.h7 #define _CFFI_OP(opcode, arg) (_cffi_opcode_t)(opcode | (((uintptr_t)(arg)) << 8)) macro