Searched refs:itemlen (Results 1 – 3 of 3) sorted by relevance
559 size_t itemlen;589 itemlen = (lh << 8) | ll;591 if (itemlen < 2) {596 mSections[mSectionsRead].Size = itemlen;598 Data = (unsigned char *)malloc(itemlen);609 if (pos+itemlen-2 > buffer_size) {614 memcpy(Data+2, buffer+pos, itemlen-2); // Read the whole section.615 pos += itemlen-2;
5706 Py_ssize_t itemlen; in PyUnicode_Join() local5727 itemlen = PyUnicode_GET_SIZE(item); in PyUnicode_Join()5728 new_res_used = res_used + itemlen; in PyUnicode_Join()5751 Py_UNICODE_COPY(res_p, PyUnicode_AS_UNICODE(item), itemlen); in PyUnicode_Join()5752 res_p += itemlen; in PyUnicode_Join()
5611 Py_ssize_t itemlen; in PyUnicode_Join() local5632 itemlen = PyUnicode_GET_SIZE(item); in PyUnicode_Join()5633 new_res_used = res_used + itemlen; in PyUnicode_Join()5656 Py_UNICODE_COPY(res_p, PyUnicode_AS_UNICODE(item), itemlen); in PyUnicode_Join()5657 res_p += itemlen; in PyUnicode_Join()