Home
last modified time | relevance | path

Searched refs:byteoff (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/crypto/external/bsd/openssl/dist/crypto/whrlpool/
Dwp_dgst.c121 unsigned int byteoff = bitoff / 8; in WHIRLPOOL_BitUpdate() local
127 memcpy(c->data + byteoff, inp, bitrem); in WHIRLPOOL_BitUpdate()
132 memcpy(c->data + byteoff, inp, bits / 8); in WHIRLPOOL_BitUpdate()
155 unsigned int byteoff = bitoff / 8; in WHIRLPOOL_BitUpdate() local
160 c->data[byteoff++] |= inp[0] & (0xff >> inpgap); in WHIRLPOOL_BitUpdate()
179 c->data[byteoff++] |= b >> bitrem; in WHIRLPOOL_BitUpdate()
181 c->data[byteoff++] = b; in WHIRLPOOL_BitUpdate()
187 byteoff = 0; in WHIRLPOOL_BitUpdate()
191 c->data[byteoff] = b << (8 - bitrem); in WHIRLPOOL_BitUpdate()
196 c->data[byteoff++] |= b >> bitrem; in WHIRLPOOL_BitUpdate()
[all …]
/netbsd/src/sys/uvm/
Duvm_swap.c1362 off_t byteoff; in sw_reg_strategy() local
1384 byteoff = dbtob((uint64_t)bn); in sw_reg_strategy()
1397 error = VOP_BMAP(sdp->swd_vp, byteoff / sdp->swd_bsize, in sw_reg_strategy()
1431 off = byteoff % sdp->swd_bsize; in sw_reg_strategy()
1438 (uintptr_t)sdp->swd_vp, (uintptr_t)vp, byteoff, nbn); in sw_reg_strategy()
1486 byteoff += sz; in sw_reg_strategy()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dgimple-ssa-sprintf.cc2320 unsigned HOST_WIDE_INT byteoff = idx * elbytes; in get_origin_and_offset_r() local
2322 if (byteoff < HOST_WIDE_INT_MAX in get_origin_and_offset_r()
2324 && (elbytes == 0 || byteoff / elbytes == idx)) in get_origin_and_offset_r()
2330 *off += byteoff; in get_origin_and_offset_r()
2332 *fldoff += byteoff; in get_origin_and_offset_r()
Dbuiltins.cc605 tree byteoff; in c_strlen() local
608 src = string_constant (src, &byteoff, &memsize, &decl); in c_strlen()
634 if (byteoff && TREE_CODE (byteoff) != INTEGER_CST) in c_strlen()
654 data->off = byteoff; in c_strlen()
668 tree offsave = TREE_SIDE_EFFECTS (byteoff) ? save_expr (byteoff) in c_strlen()
669 : byteoff; in c_strlen()
685 if (byteoff == 0) in c_strlen()
687 else if (! tree_fits_uhwi_p (byteoff) || tree_to_uhwi (byteoff) % eltsize) in c_strlen()
690 eltoff = tree_to_uhwi (byteoff) / eltsize; in c_strlen()
730 data->off = byteoff; in c_strlen()