Lines Matching refs:scratch
45 u8 *scratch = *per_cpu_ptr(ipcomp_scratches, cpu);
47 int err = crypto_comp_decompress(tfm, start, plen, scratch, &dlen);
65 skb_copy_to_linear_data(skb, scratch, len);
67 while ((scratch += len, dlen -= len) > 0) {
90 memcpy(skb_frag_address(frag), scratch, len);
141 u8 *scratch;
145 scratch = *this_cpu_ptr(ipcomp_scratches);
147 err = crypto_comp_compress(tfm, start, plen, scratch, &dlen);
156 memcpy(start + sizeof(struct ip_comp_hdr), scratch, dlen);
233 void *scratch;
235 scratch = vmalloc_node(IPCOMP_SCRATCH_SIZE, cpu_to_node(i));
236 if (!scratch)
238 *per_cpu_ptr(scratches, i) = scratch;