Lines Matching defs:op
258 #define PyUnicode_GET_SIZE(op) \ argument
267 #define PyUnicode_GET_DATA_SIZE(op) \ argument
276 #define PyUnicode_AS_UNICODE(op) \ argument
282 #define PyUnicode_AS_DATA(op) \ argument
298 #define PyUnicode_IS_ASCII(op) \ argument
305 #define PyUnicode_IS_COMPACT(op) \ argument
310 #define PyUnicode_IS_COMPACT_ASCII(op) \ argument
329 #define PyUnicode_1BYTE_DATA(op) ((Py_UCS1*)PyUnicode_DATA(op)) argument
330 #define PyUnicode_2BYTE_DATA(op) ((Py_UCS2*)PyUnicode_DATA(op)) argument
331 #define PyUnicode_4BYTE_DATA(op) ((Py_UCS4*)PyUnicode_DATA(op)) argument
334 #define PyUnicode_KIND(op) \ argument
340 #define _PyUnicode_COMPACT_DATA(op) \ argument
345 #define _PyUnicode_NONCOMPACT_DATA(op) \ argument
349 #define PyUnicode_DATA(op) \ argument
412 #define PyUnicode_GET_LENGTH(op) \ argument
421 #define PyUnicode_IS_READY(op) (((PyASCIIObject*)op)->state.ready) argument
427 #define PyUnicode_READY(op) \ argument
435 #define PyUnicode_MAX_CHAR_VALUE(op) \ argument
446 static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { in _PyUnicode_get_wstr_length()
451 #define PyUnicode_WSTR_LENGTH(op) _PyUnicode_get_wstr_length((PyObject*)op) argument