Searched refs:init_off (Results 1 - 25 of 42) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/rapidio/
H A Drio-sysfs.c78 loff_t init_off = off; local
97 data[off - init_off] = val;
105 data[off - init_off] = (val >> 8) & 0xff;
106 data[off - init_off + 1] = val & 0xff;
114 data[off - init_off] = (val >> 24) & 0xff;
115 data[off - init_off + 1] = (val >> 16) & 0xff;
116 data[off - init_off + 2] = (val >> 8) & 0xff;
117 data[off - init_off + 3] = val & 0xff;
125 data[off - init_off] = (val >> 8) & 0xff;
126 data[off - init_off
150 loff_t init_off = off; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/
H A Dec_sys.c47 loff_t init_off = *off; local
59 err = ec_read(*off, &data[*off - init_off]);
76 loff_t init_off = *off; local
88 u8 byte_write = data[*off - init_off];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Ds23_pkt.c72 tot = s->init_off;
78 s->init_off = tot;
H A Dd1_both.c277 if (s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
302 if (type == SSL3_RT_HANDSHAKE && s->init_off != 0) {
308 if (s->init_off <= DTLS1_HM_HEADER_LENGTH) {
312 * Therefore |init_off| must have progressed by at least
320 * Adjust |init_off| and |init_num| to allow room for a new
323 s->init_off -= DTLS1_HM_HEADER_LENGTH;
329 * to adjust |init_off| and |init_num| as above, because
389 data[s->init_off]);
392 ret = dtls1_write_bytes(s, type, &s->init_buf->data[s->init_off],
427 (unsigned char *)&s->init_buf->data[s->init_off];
[all...]
H A Ds3_both.c135 ret = ssl3_write_bytes(s, type, &s->init_buf->data[s->init_off],
144 ssl3_finish_mac(s, (unsigned char *)&s->init_buf->data[s->init_off],
150 (size_t)(s->init_off + s->init_num), s,
154 s->init_off += ret;
313 s->init_off = 0;
H A Ds2_clnt.c591 s->init_off = 0;
697 s->init_off = 0;
719 s->init_off = 0;
819 s->init_off = 0;
869 s->init_off = 0;
H A Ds23_clnt.c482 s->init_off = 0;
587 s->init_off = 0;
593 s->init_off = 0;
H A Ds2_pkt.c681 ret = ssl2_write(s, &s->init_buf->data[s->init_off], s->init_num);
685 (size_t)(s->init_off + s->init_num), s,
691 s->init_off += ret;
H A Ds2_srvr.c833 s->init_off = 0;
919 s->init_off = 0;
942 s->init_off = 0;
971 s->init_off = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Ds23_pkt.c72 tot=s->init_off;
80 s->init_off=tot;
H A Ds3_both.c132 ret=ssl3_write_bytes(s,type,&s->init_buf->data[s->init_off],
138 ssl3_finish_mac(s,(unsigned char *)&s->init_buf->data[s->init_off],ret);
143 s->msg_callback(1, s->version, type, s->init_buf->data, (size_t)(s->init_off + s->init_num), s, s->msg_callback_arg);
146 s->init_off+=ret;
181 s->init_off=0;
258 s->init_off=0;
H A Dd1_both.c223 if ( s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
251 if ( s->init_off != 0)
253 OPENSSL_assert(s->init_off > DTLS1_HM_HEADER_LENGTH);
254 s->init_off -= DTLS1_HM_HEADER_LENGTH;
265 dtls1_write_message_header(s, (unsigned char *)&s->init_buf->data[s->init_off]);
270 ret=dtls1_write_bytes(s,type,&s->init_buf->data[s->init_off],
298 (unsigned char *)&s->init_buf->data[s->init_off +
305 (size_t)(s->init_off + s->init_num), s,
308 s->init_off = 0; /* done writing this message */
313 s->init_off
[all...]
H A Dd1_srvr.c603 s->init_off=0;
647 s->init_off=0;
726 s->init_off=0;
750 s->init_off=0;
989 s->init_off=0;
1075 s->init_off=0;
1122 s->init_off=0;
H A Ds23_clnt.c320 s->init_off=0;
390 s->init_off=0;
396 s->init_off=0;
H A Ds2_clnt.c605 s->init_off=0;
716 s->init_off=0;
740 s->init_off=0;
843 s->init_off=0;
889 s->init_off=0;
H A Ds2_pkt.c693 ret=ssl2_write(s,&s->init_buf->data[s->init_off],s->init_num);
697 s->msg_callback(1, s->version, 0, s->init_buf->data, (size_t)(s->init_off + s->init_num), s, s->msg_callback_arg);
702 s->init_off+=ret;
H A Dd1_clnt.c620 s->init_off=0;
971 s->init_off=0;
1047 s->init_off=0;
1132 s->init_off=0;
H A Ds2_srvr.c797 s->init_off=0;
889 s->init_off=0;
913 s->init_off=0;
943 s->init_off=0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Ds23_pkt.c72 tot = s->init_off;
78 s->init_off = tot;
H A Dd1_both.c277 if (s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
302 if (type == SSL3_RT_HANDSHAKE && s->init_off != 0) {
308 if (s->init_off <= DTLS1_HM_HEADER_LENGTH) {
312 * Therefore |init_off| must have progressed by at least
320 * Adjust |init_off| and |init_num| to allow room for a new
323 s->init_off -= DTLS1_HM_HEADER_LENGTH;
329 * to adjust |init_off| and |init_num| as above, because
389 data[s->init_off]);
392 ret = dtls1_write_bytes(s, type, &s->init_buf->data[s->init_off],
427 (unsigned char *)&s->init_buf->data[s->init_off];
[all...]
H A Ds3_both.c135 ret = ssl3_write_bytes(s, type, &s->init_buf->data[s->init_off],
144 ssl3_finish_mac(s, (unsigned char *)&s->init_buf->data[s->init_off],
150 (size_t)(s->init_off + s->init_num), s,
154 s->init_off += ret;
313 s->init_off = 0;
H A Ds2_clnt.c591 s->init_off = 0;
697 s->init_off = 0;
719 s->init_off = 0;
819 s->init_off = 0;
869 s->init_off = 0;
H A Ds23_clnt.c482 s->init_off = 0;
587 s->init_off = 0;
593 s->init_off = 0;
H A Ds2_pkt.c681 ret = ssl2_write(s, &s->init_buf->data[s->init_off], s->init_num);
685 (size_t)(s->init_off + s->init_num), s,
691 s->init_off += ret;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/
H A Dpci-sysfs.c367 loff_t init_off = off; local
389 data[off - init_off] = val;
397 data[off - init_off] = val & 0xff;
398 data[off - init_off + 1] = (val >> 8) & 0xff;
406 data[off - init_off] = val & 0xff;
407 data[off - init_off + 1] = (val >> 8) & 0xff;
408 data[off - init_off + 2] = (val >> 16) & 0xff;
409 data[off - init_off + 3] = (val >> 24) & 0xff;
417 data[off - init_off] = val & 0xff;
418 data[off - init_off
441 loff_t init_off = off; local
[all...]

Completed in 243 milliseconds

12