HomeSort by relevance Sort by last modified time
    Searched refs:portionLen (Results 1 - 3 of 3) sorted by null

  /external/libvncserver/libvncclient/
tight.c 101 int bufferSize, rowSize, numRows, portionLen, rowsProcessed, extraBytes;
244 portionLen = ZLIB_BUFFER_SIZE;
246 portionLen = compressedLen;
248 if (!ReadFromRFBServer(client, (char*)client->zlib_buffer, portionLen))
251 compressedLen -= portionLen;
254 zs->avail_in = portionLen;
  /external/libvncserver/libvncserver/
tight.c     [all...]
  /external/libvncserver/x11vnc/misc/turbovnc/
tight.c 927 int i, portionLen;
942 portionLen = UPDATE_BUF_SIZE;
943 for (i = 0; i < compressedLen; i += portionLen) {
944 if (i + portionLen > compressedLen) {
945 portionLen = compressedLen - i;
947 if (ublen + portionLen > UPDATE_BUF_SIZE) {
951 memcpy(&updateBuf[ublen], &buf[i], portionLen);
952 ublen += portionLen;
    [all...]

Completed in 110 milliseconds