Lines Matching refs:outbuf
1090 char *outbuf) in ntfs_compress_block() argument
1127 ptag = &outbuf[xout++]; in ntfs_compress_block()
1161 outbuf[xout++] = q & 255; in ntfs_compress_block()
1162 outbuf[xout++] = (q >> 8) & 255; in ntfs_compress_block()
1203 outbuf[xout++] = inbuf[i++]; in ntfs_compress_block()
1212 outbuf[xout++] = q & 255; in ntfs_compress_block()
1213 outbuf[xout++] = (q >> 8) & 255; in ntfs_compress_block()
1232 outbuf[xout++] = inbuf[i++]; in ntfs_compress_block()
1240 ptag = &outbuf[xout++]; in ntfs_compress_block()
1254 outbuf[0] = (xout - 3) & 255; in ntfs_compress_block()
1255 outbuf[1] = 0xb0 + (((xout - 3) >> 8) & 15); in ntfs_compress_block()
1258 memcpy(&outbuf[2], inbuf, bufsize); in ntfs_compress_block()
1260 memset(&outbuf[bufsize + 2], 0, NTFS_SB_SIZE - bufsize); in ntfs_compress_block()
1261 outbuf[0] = 0xff; in ntfs_compress_block()
1262 outbuf[1] = 0x3f; in ntfs_compress_block()
1278 char *outbuf = NULL, *pbuf, *inbuf; in ntfs_write_cb() local
1322 outbuf = vmap(pages_disk, pages_count, VM_MAP, PAGE_KERNEL); in ntfs_write_cb()
1323 if (!outbuf) { in ntfs_write_cb()
1335 pbuf = &outbuf[compsz]; in ntfs_write_cb()
1364 outbuf[compsz++] = 0; in ntfs_write_cb()
1365 outbuf[compsz++] = 0; in ntfs_write_cb()
1367 memset(&outbuf[compsz], 0, rounded - compsz); in ntfs_write_cb()
1450 vunmap(outbuf); in ntfs_write_cb()