Home
last modified time | relevance | path

Searched refs:boff (Results 1 – 18 of 18) sorted by relevance

/openbmc/qemu/hw/block/
H A Dpflash_cfi02.c310 hwaddr boff; in pflash_read() local
319 boff = offset & 0xFF; in pflash_read()
321 boff = boff >> 1; in pflash_read()
323 boff = boff >> 2; in pflash_read()
347 switch (boff) { in pflash_read()
350 ret = boff & 0x01 ? pfl->ident1 : pfl->ident0; in pflash_read()
357 ret = boff & 0x01 ? pfl->ident3 : pfl->ident2; in pflash_read()
365 trace_pflash_read_done(pfl->name, boff, ret); in pflash_read()
381 if (boff < sizeof(pfl->cfi_table)) { in pflash_read()
382 ret = pfl->cfi_table[boff]; in pflash_read()
[all …]
H A Dpflash_cfi01.c142 hwaddr boff; in pflash_cfi_query() local
155 boff = offset >> (ctz32(pfl->bank_width) + in pflash_cfi_query()
158 if (boff >= sizeof(pfl->cfi_table)) { in pflash_cfi_query()
167 resp = pfl->cfi_table[boff]; in pflash_cfi_query()
181 resp = deposit32(resp, 8 * i, 8, pfl->cfi_table[boff]); in pflash_cfi_query()
202 hwaddr boff; in pflash_devid_query() local
215 boff = offset >> (ctz32(pfl->bank_width) + in pflash_devid_query()
223 switch (boff & 0xFF) { in pflash_devid_query()
266 hwaddr boff; in pflash_read() local
316 boff = offset & 0xFF; in pflash_read()
[all …]
/openbmc/linux/drivers/pinctrl/sunplus/
H A Dsppctl.h57 .boff = bo, \
67 .boff = bo, \
153 const u8 boff; /* bit offset */ member
H A Dsppctl.c718 sppctl_gmx_set(pctl, f->roff, f->boff, f->blen, f->grps[g2fpm.g_idx].gval); in sppctl_set_mux()
955 sppctl_gmx_set(pctl, f->roff, f->boff, f->blen, 0); in sppctl_dt_node_to_map()
/openbmc/linux/fs/affs/
H A Dfile.c532 size_t bidx, boff, bsize; in affs_do_read_folio_ofs() local
541 boff = tmp % bsize; in affs_do_read_folio_ofs()
547 tmp = min(bsize - boff, to - pos); in affs_do_read_folio_ofs()
549 memcpy_to_folio(folio, pos, AFFS_DATA(bh) + boff, tmp); in affs_do_read_folio_ofs()
553 boff = 0; in affs_do_read_folio_ofs()
563 u32 bidx, boff; in affs_extent_file_ofs() local
572 boff = size % bsize; in affs_extent_file_ofs()
573 if (boff) { in affs_extent_file_ofs()
577 tmp = min(bsize - boff, newsize - size); in affs_extent_file_ofs()
578 BUG_ON(boff + tmp > bsize || tmp > bsize); in affs_extent_file_ofs()
[all …]
/openbmc/qemu/target/arm/tcg/
H A Dt32.decode728 # All these BF insns have boff != 0b0000; we NOP them all
729 BF 1111 0 boff:4 ------- 1100 - ---------- 1 # BFL
730 BF 1111 0 boff:4 0 ------ 1110 - ---------- 1 # BFCSEL
731 BF 1111 0 boff:4 10 ----- 1110 - ---------- 1 # BF
732 BF 1111 0 boff:4 11 ----- 1110 0 0000000000 1 # BFX, BFLX
H A Dtranslate.c6632 if (a->boff == 0) { in trans_BF()
/openbmc/linux/fs/xfs/
H A Dxfs_buf.c1725 size_t boff, in xfs_buf_zero() argument
1730 bend = boff + bsize; in xfs_buf_zero()
1731 while (boff < bend) { in xfs_buf_zero()
1735 page_index = (boff + bp->b_offset) >> PAGE_SHIFT; in xfs_buf_zero()
1736 page_offset = (boff + bp->b_offset) & ~PAGE_MASK; in xfs_buf_zero()
1739 BBTOB(bp->b_length) - boff); in xfs_buf_zero()
1745 boff += csize; in xfs_buf_zero()
H A Dxfs_buf.h310 void xfs_buf_zero(struct xfs_buf *bp, size_t boff, size_t bsize);
/openbmc/linux/drivers/media/v4l2-core/
H A Dvideobuf-core.c330 b->m.offset = vb->boff; in videobuf_status()
338 b->m.offset = vb->boff; in videobuf_status()
409 q->bufs[i]->boff = PAGE_ALIGN(bsize) * i; in __videobuf_mmap_setup()
596 buf->boff = b->m.offset; in videobuf_qbuf()
1189 buf->boff == (vma->vm_pgoff << PAGE_SHIFT)) { in videobuf_mmap_mapper()
H A Dvideobuf-dma-sg.c552 bus = (dma_addr_t)(unsigned long)fbuf->base + vb->boff; in __videobuf_iolock()
/openbmc/linux/fs/ocfs2/
H A Dextent_map.c664 u64 boff = 0; in ocfs2_extent_map_get_blocks() local
679 boff = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster); in ocfs2_extent_map_get_blocks()
680 boff += (v_blkno & (u64)(bpc - 1)); in ocfs2_extent_map_get_blocks()
683 *p_blkno = boff; in ocfs2_extent_map_get_blocks()
/openbmc/linux/include/media/
H A Dvideobuf-core.h89 size_t boff; member
/openbmc/linux/fs/gfs2/
H A Dquota.c733 unsigned bsize = sdp->sd_sb.sb_bsize, bnum = 0, boff = 0; in gfs2_write_buf_to_page() local
737 boff = off % bsize; in gfs2_write_buf_to_page()
769 if (to_write > (bsize - boff)) { in gfs2_write_buf_to_page()
770 pg_off += (bsize - boff); in gfs2_write_buf_to_page()
771 to_write -= (bsize - boff); in gfs2_write_buf_to_page()
772 boff = pg_off % bsize; in gfs2_write_buf_to_page()
/openbmc/linux/drivers/s390/net/
H A Dctcm_mpc.c135 char boff[12]; in ctcmpc_dumpit() local
149 scnprintf(boff, sizeof(boff), "%4.4X", (__u32)ct); in ctcmpc_dumpit()
180 addr, boff, bhex, basc); in ctcmpc_dumpit()
205 addr, boff, bhex, basc); in ctcmpc_dumpit()
214 addr, boff, bhex, basc); in ctcmpc_dumpit()
/openbmc/linux/fs/ceph/
H A Dinode.c2295 int boff = attr->ia_size % CEPH_FSCRYPT_BLOCK_SIZE; in fill_fscrypt_truncate() local
2384 boff, CEPH_FSCRYPT_BLOCK_SIZE); in fill_fscrypt_truncate()
2387 memset(iov.iov_base + boff, 0, PAGE_SIZE - boff); in fill_fscrypt_truncate()
/openbmc/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py2945 boff = query.value(2)
2949 tot = bsym_start + boff + 1 - sym_start - off
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch9163 + uint32_t boff = (ptr_from_index(buffer, bcount/8 + 1) - (buffer + bcount/8 + 1)) * 8 + bcount;
9176 + boff += 24;
9205 + boff += offset * 8;
9213 + fill_slice_params(h, &rd->dec, rd->slice_params + n, size * 8, boff);
9215 + fill_slice_params(h, rd->slice_params + n, size * 8, boff);