Lines Matching defs:JOIN_OBJ
48 JOIN_OBJ. see comments in the ElementObject definition for more
51 #define JOIN_SET(p, flag) ((void*) ((uintptr_t) (JOIN_OBJ(p)) | (flag)))
52 #define JOIN_OBJ(p) ((PyObject*) ((uintptr_t) (p) & ~(uintptr_t)1))
58 PyObject *tmp = JOIN_OBJ(*p);
190 use JOIN_OBJ to get the object pointer. the join flag is used
198 pointer; use JOIN_OBJ to get the object pointer. */
541 res = JOIN_OBJ(res);
563 res = JOIN_OBJ(res);
626 Py_VISIT(JOIN_OBJ(self->text));
627 Py_VISIT(JOIN_OBJ(self->tail));
728 Py_INCREF(JOIN_OBJ(self->text));
731 Py_INCREF(JOIN_OBJ(self->tail));
798 text = deepcopy(JOIN_OBJ(self->text), memo);
803 tail = deepcopy(JOIN_OBJ(self->tail), memo);
966 PICKLED_TEXT, JOIN_OBJ(self->text),
967 PICKLED_TAIL, JOIN_OBJ(self->tail));
990 Py_INCREF(JOIN_OBJ(text));
994 Py_INCREF(JOIN_OBJ(tail));
2552 PyObject *dest_obj = JOIN_OBJ(*dest);