Searched refs:outpos (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/fs/jffs2/ |
D | compr_rtime.c | 37 int outpos = 0; in jffs2_rtime_compress() local 42 while (pos < (*sourcelen) && outpos <= (*dstlen)-2) { in jffs2_rtime_compress() 48 cpage_out[outpos++] = data_in[pos++]; in jffs2_rtime_compress() 58 cpage_out[outpos++] = runlen; in jffs2_rtime_compress() 61 if (outpos >= pos) { in jffs2_rtime_compress() 68 *dstlen = outpos; in jffs2_rtime_compress() 78 int outpos = 0; in jffs2_rtime_decompress() local 83 while (outpos<destlen) { in jffs2_rtime_decompress() 89 cpage_out[outpos++] = value; /* first the verbatim copied byte */ in jffs2_rtime_decompress() 93 positions[value]=outpos; in jffs2_rtime_decompress() [all …]
|
D | compr_rubin.c | 266 int outpos = 0; in rubin_do_compress() local 279 if (outpos > pos) { in rubin_do_compress() 287 outpos = (pushedbits(&rs.pp)+7)/8; in rubin_do_compress() 289 if (outpos >= pos) in rubin_do_compress() 292 *dstlen = outpos; in rubin_do_compress() 373 int outpos = 0; in rubin_do_decompress() local 379 while (outpos < destlen) in rubin_do_decompress() 380 page_out[outpos++] = in_byte(&rs); in rubin_do_decompress()
|
/Linux-v4.19/net/ceph/crush/ |
D | mapper.c | 454 int *out, int outpos, in crush_choose_firstn() argument 480 bucket->id, x, outpos, numrep, in crush_choose_firstn() 484 for (rep = stable ? 0 : outpos; rep < numrep && count > 0 ; rep++) { in crush_choose_firstn() 518 outpos); in crush_choose_firstn() 546 for (i = 0; i < outpos; i++) { in crush_choose_firstn() 566 x, stable ? 1 : outpos+1, 0, in crush_choose_firstn() 567 out2, outpos, count, in crush_choose_firstn() 576 choose_args) <= outpos) in crush_choose_firstn() 581 out2[outpos] = item; in crush_choose_firstn() 625 out[outpos] = item; in crush_choose_firstn() [all …]
|
/Linux-v4.19/drivers/net/wan/ |
D | sbni.c | 83 unsigned int inppos, outpos; /* positions in rx/tx buffers */ member 686 unsigned len = min_t(unsigned int, skb->len - nl->outpos, nl->framelen); in download_data() 688 outsb( dev->base_addr + DAT, skb->data + nl->outpos, len ); in download_data() 689 *crc_p = calc_crc32( *crc_p, skb->data + nl->outpos, len ); in download_data() 768 nl->outpos = 0; in send_complete() 783 nl->outpos += nl->framelen; in interpret_ack() 788 nl->tx_buf_p->len - nl->outpos); in interpret_ack() 850 nl->outpos = 0; in prepare_to_send() 888 nl->outpos = 0; in drop_xmit_queue() 912 if( nl->outpos == 0 ) in send_frame_header() [all …]
|