Lines Matching refs:ww
2832 Py_buffer *ww = NULL; in memory_richcompare() local
2853 ww = VIEW_ADDR(w); in memory_richcompare()
2860 ww = &wbuf; in memory_richcompare()
2863 if (!equiv_shape(vv, ww)) { in memory_richcompare()
2872 if (get_native_fmtchar(&wfmt, ww->format) < 0) in memory_richcompare()
2885 unpack_w = struct_get_unpacker(ww->format, ww->itemsize); in memory_richcompare()
2893 equal = unpack_cmp(vv->buf, ww->buf, in memory_richcompare()
2897 equal = cmp_base(vv->buf, ww->buf, vv->shape, in memory_richcompare()
2899 ww->strides, ww->suboffsets, in memory_richcompare()
2903 equal = cmp_rec(vv->buf, ww->buf, vv->ndim, vv->shape, in memory_richcompare()
2905 ww->strides, ww->suboffsets, in memory_richcompare()
2921 if (ww == &wbuf) in memory_richcompare()
2922 PyBuffer_Release(ww); in memory_richcompare()