HomeSort by: relevance | last modified time | path
    Searched defs:bpos (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/nfs/
nfs_srvcache.c 243 char *bpos; local in function:nfsrv_getcache
266 0, (u_quad_t *)0, repp, &mb, &bpos);
nfs_vfsops.c 167 char *bpos, *dpos, *cp2; local in function:nfs_statvfs
255 char *bpos, *dpos, *cp2; local in function:nfs_fsinfo
nfs_socket.c 559 char *bpos; local in function:nfs_rephead
576 bpos = ((char *)tl) + mreq->m_len;
585 bpos -= NFSX_UNSIGNED;
678 *bposp = bpos;
nfs_subs.c 583 char *bpos; local in function:nfsm_reqh
590 bpos = mtod(mb, void *);
593 *bposp = bpos;
611 char *bpos; local in function:nfsm_rpchead
628 bpos = mtod(mb, void *);
677 bpos = mtod(mb, void *);
680 memcpy(bpos, auth_str, i);
683 bpos += i;
688 *bpos++ = '\0';
712 bpos = mtod(mb, void *)
1635 char *bpos = *bposp; local in function:nfsm_srvwcc
1659 char *bpos = *bposp; local in function:nfsm_srvpostopattr
    [all...]
nfs_serv.c 173 char *bpos; local in function:nfsrv3_access
238 char *bpos; local in function:nfsrv_getattr
279 char *bpos; local in function:nfsrv_setattr
407 char *bpos; local in function:nfsrv_lookup
535 char *bpos; local in function:nfsrv_readlink
633 char *bpos; local in function:nfsrv_read
860 char *bpos; local in function:nfsrv_write
1075 char *bpos, *dpos; local in function:nfsrv_writegather
1433 char *bpos; local in function:nfsrv_create
1673 char *bpos; local in function:nfsrv_mknod
1827 char *bpos; local in function:nfsrv_remove
1907 char *bpos; local in function:nfsrv_rename
2176 char *bpos; local in function:nfsrv_link
2277 char *bpos, *pathcp = NULL, *cp2; local in function:nfsrv_symlink
2422 char *bpos; local in function:nfsrv_mkdir
2543 char *bpos; local in function:nfsrv_rmdir
2680 char *bpos; local in function:nfsrv_readdir
2943 char *bpos; local in function:nfsrv_readdirplus
3273 char *bpos; local in function:nfsrv_commit
3330 char *bpos; local in function:nfsrv_statfs
3399 char *bpos; local in function:nfsrv_fsinfo
3469 char *bpos; local in function:nfsrv_pathconf
3526 char *bpos; local in function:nfsrv_null
3545 char *bpos; local in function:nfsrv_noop
    [all...]
nfs_vnops.c 254 char *bpos, *dpos; local in function:nfs_null
284 char *bpos, *dpos, *cp2; local in function:nfs_access
524 char *bpos, *dpos; local in function:nfs_getattr
667 char *bpos, *dpos; local in function:nfs_setattrrpc
740 char *bpos, *dpos, *cp2; local in function:nfs_lookup
1070 char *bpos, *dpos, *cp2; local in function:nfs_readlinkrpc
1123 char *bpos, *dpos, *cp2; local in function:nfs_readrpc
1225 char *bpos, *dpos; local in function:nfs_writerpc
1311 * no need to maintain mb and bpos here
1316 bpos = mtod(void *, mb) + mb->m_len
1449 char *bpos, *dpos; local in function:nfs_mknodrpc
1564 char *bpos, *dpos, *cp2; local in function:nfs_create
1774 char *bpos, *dpos; local in function:nfs_removerpc
1903 char *bpos, *dpos; local in function:nfs_renamerpc
1956 char *bpos, *dpos; local in function:nfs_linkrpc
2060 char *bpos, *dpos, *cp2; local in function:nfs_symlink
2151 char *bpos, *dpos, *cp2; local in function:nfs_mkdir
2240 char *bpos, *dpos; local in function:nfs_rmdir
2375 char *bpos, *dpos, *cp2; local in function:nfs_readdirrpc
2600 char *bpos, *dpos, *cp2; local in function:nfs_readdirplusrpc
2903 char *bpos, *dpos, *cp2; local in function:nfs_lookitup
2992 char *bpos, *dpos, *cp2; local in function:nfs_commit
3160 char *bpos, *dpos, *cp, *cp2; local in function:nfs_pathconf
    [all...]
  /src/sys/fs/udf/
udf_strat_direct.c 244 uint32_t buf_offset, rbuflen, bpos; local in function:udf_queue_buf_direct
324 bpos = 0;
329 fidblk = (uint8_t *) buf->b_data + bpos;
332 bpos += len;
udf_strat_sequential.c 381 uint32_t sectornr, bpos; local in function:udf_issue_buf
459 bpos = 0;
464 fidblk = (uint8_t *) buf->b_data + bpos;
467 bpos += len;
udf_strat_rmw.c 779 uint32_t bpos; local in function:udf_queuebuf_rmw
817 bpos = 0;
830 dst = (uint8_t *) buf->b_data + bpos;
838 eccline->bufs_bpos[eccsect] = bpos;
841 bpos += sector_size;
867 bpos = 0;
887 src = (uint8_t *) buf->b_data + bpos;
897 bpos += sector_size;
935 bpos = 0;
940 fidblk = (uint8_t *) buf->b_data + bpos;
    [all...]
udf_allocation.c 169 uint8_t *bpos;
197 bpos = bitmap->bits + lb_num/8;
202 lb_num, bpos, bit));
203 KASSERT(bitmap->bits + lb_num/8 == bpos);
204 if (*bpos & bitval) {
212 bpos++;
884 uint8_t *bpos; local in function:udf_bitmap_allocate
904 bpos = bitmap->bits + offset/8;
905 bit = ffs(*bpos); /* returns 0 or 1..8 */
918 offset + bit -1, bpos, bit-1))
940 uint8_t *bpos; local in function:udf_bitmap_free
989 uint8_t *bpos; local in function:udf_bitmap_check_trunc_free
    [all...]
udf_subr.c 2489 uint8_t *bpos, *data; local in function:udf_extattr_insert_internal
2557 bpos = data + udf_rw32(*l_eap);
2570 memcpy(bpos, extattr, a_l);
4678 uint8_t *bpos; local in function:udf_create_new_fe
4727 bpos = (uint8_t *) fe->data + udf_rw32(fe->l_ea);
4731 (struct fileid_desc *) bpos, parent_icb,
4760 uint8_t *bpos; local in function:udf_create_new_efe
4795 bpos = (uint8_t *) efe->data + udf_rw32(efe->l_ea);
4799 (struct fileid_desc *) bpos, parent_icb,
  /src/games/adventure/
save.c 299 size_t pos, bpos; local in function:savefile_binwrite
304 bpos = 0;
307 buf[bpos++] = writeletter(byte >> 4);
308 buf[bpos++] = writeletter(byte & 0xf);
309 if (bpos >= sizeof(buf)) {
310 if (savefile_bintextwrite(sf, buf, bpos)) {
313 bpos = 0;
316 if (savefile_bintextwrite(sf, buf, bpos)) {
  /src/sys/fs/hfs/
libhfs.c 2331 uint8_t apos, bpos; /* current character indices */ local in function:hfslib_compare_catalog_keys_cf
2350 apos = bpos = 0;
2365 for (lc = 0; lc == 0 && bpos < b->name.length; bpos++) {
2366 bc = b->name.unicode[bpos];
  /src/sys/arch/x86/include/
bootinfo.h 215 uint8_t bpos; member in struct:btinfo_framebuffer
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
vc4_drm.h 312 __u32 bpoa, bpos; member in struct:drm_vc4_get_hang_state
  /src/sbin/newfs_udf/
udf_core.c 1707 uint8_t *bpos; local in function:udf_mark_allocated
1732 bpos = &dscr->sbd.data[cnt / 8];
1735 if ((*bpos & (1 << bit)))
1737 *bpos &= ~(1<< bit);
1763 uint32_t sector_size, blockingnr, bpos; local in function:udf_surface_check
1778 for (bpos = 0; bpos < block_bytes; bpos++)
1779 buffer[bpos] = 0x00;
2106 uint8_t *bpos, *data local in function:udf_append_parentfid
2316 uint8_t *bpos, *data; local in function:udf_extattr_insert_internal
2617 uintptr_t bpos; local in function:udf_append_meta_mapping_part_to_efe
2890 uint8_t *bpos, *extattr; local in function:udf_create_VAT
4024 uint8_t *bpos; local in function:udf_read_phys
4044 uint8_t *bpos; local in function:udf_write_phys
    [all...]
  /src/sbin/fsck_udf/
main.c 330 uint8_t *bpos; local in function:udf_wipe_and_reallocate
341 bpos = (uint8_t *) fe->data + l_ea;
347 bpos = (uint8_t *) efe->data + l_ea;
361 memset(bpos, 0, context.sector_size - bpos_start);
364 short_adp = (struct short_ad *) bpos;
369 long_adp = (struct long_ad *) bpos;
615 uint8_t *bpos; local in function:udf_check_if_allocated
640 bpos = &dscr->sbd.data[cnt / 8];
643 if ((*bpos & (1 << bit)) == 0)
758 uint8_t *bpos, *piece local in function:udf_process_ad
947 uint8_t *bpos; local in function:udf_process_file
3446 uint8_t *bpos; local in function:udf_process_node_pass1
3569 uint8_t *bpos; local in function:udf_node_pass3_repairdir
    [all...]

Completed in 30 milliseconds