HomeSort by relevance Sort by last modified time
    Searched defs:buf_ptr (Results 1 - 2 of 2) sorted by null

  /nv-g11n/g11n/src/lib/liblcl/
lcl_qencode.c 607 char *buf, *buf_ptr; local
613 buf_ptr = buf;
625 *buf_ptr++ = (char)uc;
637 *buf_ptr++ = ' ';
639 *buf_ptr++ = *ptr;
645 if(_LclBuffer_add(out, buf, buf_ptr - buf) != 0)
lcl_bencode.c 1083 unsigned char *buf, *buf_ptr; local
1092 buf_ptr = buf;
1127 *buf_ptr++ = (c1 << 2) | ((int)(c2 & 0x30) >> 4);
1128 *buf_ptr++ = ((c2 & 0xf) << 4) | ((int)(c3 & 0x3c) >> 2);
1129 *buf_ptr++ = ((c3 & 0x03) << 6) | c4;
1134 if(_LclBuffer_add(out, (char *)buf, buf_ptr - buf - pad_char) != 0){

Completed in 3060 milliseconds