• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/rxrpc/

Lines Matching refs:tmpbuf

119 	} tmpbuf __attribute__((aligned(16))); /* must all be in same page */
133 tmpbuf.x[0] = conn->epoch;
134 tmpbuf.x[1] = conn->cid;
135 tmpbuf.x[2] = 0;
136 tmpbuf.x[3] = htonl(conn->security_ix);
139 sg_set_buf(&sg[0], &tmpbuf, sizeof(tmpbuf));
140 sg_set_buf(&sg[1], &tmpbuf, sizeof(tmpbuf));
141 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
143 memcpy(&conn->csum_iv, &tmpbuf.x[2], sizeof(conn->csum_iv));
144 ASSERTCMP(conn->csum_iv.n[0], ==, tmpbuf.x[2]);
164 } tmpbuf __attribute__((aligned(8))); /* must all be in same page */
174 tmpbuf.hdr.data_size = htonl(data_size);
175 memcpy(&tmpbuf.first, sechdr + 4, sizeof(tmpbuf.first));
184 sg_set_buf(&sg[0], &tmpbuf, sizeof(tmpbuf));
185 sg_set_buf(&sg[1], &tmpbuf, sizeof(tmpbuf));
186 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
188 memcpy(sechdr, &tmpbuf, sizeof(tmpbuf));
264 } tmpbuf __attribute__((aligned(8))); /* must all be in same page */
290 tmpbuf.x[0] = sp->hdr.callNumber;
291 tmpbuf.x[1] = x;
294 sg_set_buf(&sg[0], &tmpbuf, sizeof(tmpbuf));
295 sg_set_buf(&sg[1], &tmpbuf, sizeof(tmpbuf));
296 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
298 x = ntohl(tmpbuf.x[1]);
492 } tmpbuf __attribute__((aligned(8))); /* must all be in same page */
521 tmpbuf.x[0] = call->call_id;
522 tmpbuf.x[1] = x;
525 sg_set_buf(&sg[0], &tmpbuf, sizeof(tmpbuf));
526 sg_set_buf(&sg[1], &tmpbuf, sizeof(tmpbuf));
527 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
529 x = ntohl(tmpbuf.x[1]);