Home | History | Annotate | Download | only in input

Lines Matching full:heapsize

5710     uint32_t heapSize = 0;
5726 heap[heapSize].currentPointerIndex = currentPointerIndex;
5727 heap[heapSize].lastPointerIndex = lastPointerIndex;
5728 heap[heapSize].distance = distance;
5729 heapSize += 1;
5735 for (uint32_t startIndex = heapSize / 2; startIndex != 0; ) {
5739 if (childIndex >= heapSize) {
5743 if (childIndex + 1 < heapSize
5758 ALOGD("assignPointerIds - initial distance min-heap: size=%d", heapSize);
5759 for (size_t i = 0; i < heapSize; i++) {
5774 for (uint32_t i = min(currentPointerCount, lastPointerCount); heapSize > 0 && i > 0; i--) {
5775 while (heapSize > 0) {
5783 heap[0] = heap[heapSize];
5786 if (childIndex >= heapSize) {
5790 if (childIndex + 1 < heapSize
5804 ALOGD("assignPointerIds - reduced distance min-heap: size=%d", heapSize);
5805 for (size_t i = 0; i < heapSize; i++) {
5813 heapSize -= 1;