Home
last modified time | relevance | path

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

/external/python/cffi/cffi/
Dbackend_ctypes.py115 v_is_ptr = not isinstance(self, CTypesGenericPrimitive)
118 if v_is_ptr and w_is_ptr:
121 elif v_is_ptr or w_is_ptr:
/external/python/cffi/c/
D_cffi_backend.c2240 int v_is_ptr, w_is_ptr; in cdata_richcompare() local
2256 v_is_ptr = !(((CDataObject *)v)->c_type->ct_flags & CT_PRIMITIVE_ANY); in cdata_richcompare()
2260 if (v_is_ptr && w_is_ptr) { in cdata_richcompare()
2276 else if (v_is_ptr || w_is_ptr) { in cdata_richcompare()