Searched refs:ct_name_position (Results 1 – 3 of 3) sorted by relevance
/external/python/cffi/c/ |
D | ffi_obj.c | 601 memcpy(p, ct->ct_name, ct->ct_name_position); in _combine_type_name_l() 602 p += ct->ct_name_position; in _combine_type_name_l() 604 memcpy(p, ct->ct_name + ct->ct_name_position, in _combine_type_name_l() 605 base_name_len - ct->ct_name_position); in _combine_type_name_l() 650 p = PyBytes_AS_STRING(res) + ct->ct_name_position; in ffi_getctype()
|
D | _cffi_backend.c | 212 int ct_name_position; /* index in ct_name of where to put a var name */ member 377 ct->ct_name_position = ct_base->ct_name_position + extra_position; in ctypedescr_new_on_top() 380 memcpy(p, ct_base->ct_name, ct_base->ct_name_position); in ctypedescr_new_on_top() 381 p += ct_base->ct_name_position; in ctypedescr_new_on_top() 384 memcpy(p, ct_base->ct_name + ct_base->ct_name_position, in ctypedescr_new_on_top() 385 base_name_len - ct_base->ct_name_position + 1); in ctypedescr_new_on_top() 4588 td->ct_name_position = strlen(td->ct_name); in new_primitive_type() 4729 td->ct_name_position = strlen("void"); in new_void_type() 4751 td->ct_name_position = namelen; in new_struct_or_union_type() 5499 fb_cat_name(fb, fresult->ct_name, fresult->ct_name_position); in fb_build_name() [all …]
|
D | realize_c_type.c | 248 char *text2 = text1 + ct->ct_name_position + 1; in unexpected_fn_type()
|