Lines Matching refs:size

60 	u64 data_version, size;
113 size = (u64)ntohl(xdr->size_lo);
114 size |= (u64)ntohl(xdr->size_hi) << 32;
115 status->size = size;
205 *bp++ = 0; /* segment size */
305 unsigned int size;
343 size = PAGE_SIZE - req->offset;
345 size = req->remain;
346 call->bvec[0].bv_len = size;
349 iov_iter_bvec(&call->def_iter, READ, call->bvec, 1, size);
350 ASSERTCMP(size, <=, PAGE_SIZE);
405 req->file_size = vp->scb.status.size;
587 *bp++ = 0; /* segment size */
640 *bp++ = 0; /* segment size */
935 *bp++ = 0; /* segment size */
1083 loff_t pos, loff_t size, loff_t i_size)
1112 *bp++ = 0; /* segment size */
1116 *bp++ = htonl(upper_32_bits(size));
1117 *bp++ = htonl(lower_32_bits(size));
1132 loff_t size, pos, i_size;
1138 size = (loff_t)op->store.last_to - (loff_t)op->store.first_offset;
1140 size += (loff_t)(op->store.last - op->store.first) << PAGE_SHIFT;
1145 if (pos + size > i_size)
1146 i_size = size + pos;
1148 _debug("size %llx, at %llx, i_size %llx",
1149 (unsigned long long) size, (unsigned long long) pos,
1152 if (upper_32_bits(pos) || upper_32_bits(i_size) || upper_32_bits(size) ||
1153 upper_32_bits(pos + size))
1154 return afs_fs_store_data64(op, pos, size, i_size);
1176 *bp++ = 0; /* segment size */
1179 *bp++ = htonl(lower_32_bits(size));
1212 * FS.StoreStatus so as to alter the file size also
1243 *bp++ = 0; /* size of write */
1254 * so as to alter the file size also
1286 *bp++ = 0; /* size of write */
1295 * size, and FS.StoreStatus otherwise
1337 u32 size;
1371 size = (call->count + 3) & ~3; /* It's padded */
1372 afs_extract_to_buf(call, size);
1400 size = (call->count + 3) & ~3; /* It's padded */
1401 afs_extract_to_buf(call, size);
1430 size = (call->count + 3) & ~3; /* It's padded */
1431 afs_extract_to_buf(call, size);
1968 unsigned int size;
1985 size = call->count2 = ntohl(call->tmp);
1986 size = round_up(size, 4);
1988 acl = kmalloc(struct_size(acl, data, size), GFP_KERNEL);
1992 acl->size = call->count2;
1993 afs_extract_begin(call, acl->data, size);
2081 size_t size;
2087 size = round_up(acl->size, 4);
2089 5 * 4 + size, (21 + 6) * 4);
2099 bp[4] = htonl(acl->size);
2100 memcpy(&bp[5], acl->data, acl->size);
2101 if (acl->size != size)
2102 memset((void *)&bp[5] + acl->size, 0, size - acl->size);