Symbol: write_offset
crypto/openssl/crypto/bio/bss_bio.c
307
size_t write_offset;
crypto/openssl/crypto/bio/bss_bio.c
312
write_offset = b->offset + b->len;
crypto/openssl/crypto/bio/bss_bio.c
313
if (write_offset >= b->size)
crypto/openssl/crypto/bio/bss_bio.c
314
write_offset -= b->size;
crypto/openssl/crypto/bio/bss_bio.c
317
if (write_offset + rest <= b->size)
crypto/openssl/crypto/bio/bss_bio.c
321
chunk = b->size - write_offset;
crypto/openssl/crypto/bio/bss_bio.c
323
memcpy(b->buf + write_offset, buf, chunk);
crypto/openssl/crypto/bio/bss_bio.c
347
size_t write_offset;
crypto/openssl/crypto/bio/bss_bio.c
373
write_offset = b->offset + b->len;
crypto/openssl/crypto/bio/bss_bio.c
374
if (write_offset >= b->size)
crypto/openssl/crypto/bio/bss_bio.c
375
write_offset -= b->size;
crypto/openssl/crypto/bio/bss_bio.c
376
if (write_offset + num > b->size)
crypto/openssl/crypto/bio/bss_bio.c
382
num = b->size - write_offset;
crypto/openssl/crypto/bio/bss_bio.c
385
*buf = b->buf + write_offset;
crypto/openssl/crypto/bio/bss_bio.c
386
assert(write_offset + num <= b->size);
sys/dev/oce/oce_hw.h
1643
uint32_t write_offset;
sys/dev/oce/oce_mbox.c
1616
fwcmd->params.req.write_offset = data_offset;
sys/dev/ocs_fc/sli4.c
2627
wr_obj->write_offset = offset;
sys/dev/ocs_fc/sli4.h
2447
uint32_t write_offset;
sys/dev/sfxge/common/ef10_tx.c
341
uint32_t write_offset;
sys/dev/sfxge/common/ef10_tx.c
361
write_offset = etp->et_pio_write_offset + offset;
sys/dev/sfxge/common/ef10_tx.c
362
write_offset_limit = write_offset + length;
sys/dev/sfxge/common/ef10_tx.c
364
while (write_offset < write_offset_limit) {
sys/dev/sfxge/common/ef10_tx.c
365
EFSYS_BAR_WC_WRITEQ(esbp, write_offset, eqp);
sys/dev/sfxge/common/ef10_tx.c
367
write_offset += sizeof (efx_qword_t);
usr.sbin/i2c/i2c.c
340
if (write_offset(fd, i2c_opt, &cmd))
usr.sbin/i2c/i2c.c
360
if (write_offset(fd, i2c_opt, &cmd))
usr.sbin/i2c/i2c.c
410
if (write_offset(fd, i2c_opt, &cmd))