Home
last modified time | relevance | path

Searched refs:itemlen (Results 1 – 3 of 3) sorted by relevance

/device/google/marlin/camera/QCamera2/HAL/test/
Dqcamera_test.cpp559 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;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dunicodeobject.c5706 Py_ssize_t itemlen; in PyUnicode_Join() local
5727 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()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dunicodeobject.c5611 Py_ssize_t itemlen; in PyUnicode_Join() local
5632 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()