Lines Matching defs:data
101 const void *data;
110 data = PyUnicode_DATA(w);
113 Py_UCS4 chr = PyUnicode_READ(kind, data, i);
930 assert(l->data == l->p);
941 /* Until we start allocating dynamically, p points to data. */
942 l->p = l->data;
956 if (l->p == l->data) {
958 /* We're still using the cached data. Switch to
964 /* Copy the cached data into the new buffer. */
966 l->p[i] = l->data[i];
996 if (!l->p || l->p == l->data) {