Home
last modified time | relevance | path

Searched refs:lastlen (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/tftp-hpa/files/
H A Dtftp-0.49-cmd_arg.patch87 + long dirlen, namelen, lastlen=0;
107 + if (namelen > lastlen) {
110 + lastlen = namelen;
/openbmc/linux/net/ceph/
H A Dmessenger.c978 cursor->lastlen = 0; in ceph_msg_data_iter_cursor_init()
989 if (cursor->lastlen) in ceph_msg_data_iter_next()
990 iov_iter_revert(&cursor->iov_iter, cursor->lastlen); in ceph_msg_data_iter_next()
996 cursor->lastlen = len; in ceph_msg_data_iter_next()
1018 if (bytes < cursor->lastlen) { in ceph_msg_data_iter_advance()
1019 cursor->lastlen -= bytes; in ceph_msg_data_iter_advance()
1021 iov_iter_advance(&cursor->iov_iter, bytes - cursor->lastlen); in ceph_msg_data_iter_advance()
1022 cursor->lastlen = 0; in ceph_msg_data_iter_advance()
/openbmc/linux/drivers/crypto/intel/ixp4xx/
H A Dixp4xx_crypto.c1107 unsigned int lastlen; in aead_perform() local
1147 lastlen = buf->buf_len; in aead_perform()
1148 if (lastlen >= authsize) in aead_perform()
1169 lastlen = buf->buf_len; in aead_perform()
1170 if (lastlen >= authsize) in aead_perform()
1176 if (unlikely(lastlen < authsize)) { in aead_perform()
/openbmc/linux/drivers/scsi/csiostor/
H A Dcsio_wr.c1053 uint32_t bufsz, len, lastlen = 0; in csio_wr_process_fl() local
1081 lastlen = min(bufsz, len); in csio_wr_process_fl()
1082 fbuf->len = lastlen; in csio_wr_process_fl()
1084 len -= lastlen; in csio_wr_process_fl()
1096 flq->un.fl.offset += ALIGN(lastlen, sge->csio_fl_align); in csio_wr_process_fl()
/openbmc/linux/include/linux/ceph/
H A Dmessenger.h255 unsigned int lastlen; member