Home
last modified time | relevance | path

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

/external/python/cffi/c/
Dffi_obj.c621 size_t replace_with_len; in ffi_getctype() local
637 replace_with_len = strlen(replace_with); in ffi_getctype()
638 while (replace_with_len > 0 && isspace(replace_with[replace_with_len - 1])) in ffi_getctype()
639 replace_with_len--; in ffi_getctype()
643 add_space = (!add_paren && replace_with_len > 0 && in ffi_getctype()
646 res = _combine_type_name_l(ct, replace_with_len + add_space + 2*add_paren); in ffi_getctype()
655 memcpy(p, replace_with, replace_with_len); in ffi_getctype()
657 p[replace_with_len] = ')'; in ffi_getctype()