| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | dmu_os.c | 104 dmu_buf_t **dbp; in dmu_write_pages() local 113 FALSE, FTAG, &numbufs, &dbp); in dmu_write_pages() 120 dmu_buf_t *db = dbp[i]; in dmu_write_pages() 153 dmu_buf_rele_array(dbp, numbufs, FTAG); in dmu_write_pages() 164 dmu_buf_t **dbp; in dmu_read_pages() local 184 ASSERT(ISP2(dbp[i]->db_size)); in dmu_read_pages() 185 ASSERT((dbp[i]->db_offset % dbp[i]->db_size) == 0); in dmu_read_pages() 186 ASSERT3U(dbp[i]->db_size, ==, dbp[0]->db_size); in dmu_read_pages() 194 db = dbp[0]; in dmu_read_pages() 238 db = dbp[di]; in dmu_read_pages() [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | dmu.c | 170 *dbp = NULL; in dmu_buf_hold_noread_by_dnode() 174 *dbp = &db->db; in dmu_buf_hold_noread_by_dnode() 196 *dbp = NULL; in dmu_buf_hold_noread() 200 *dbp = &db->db; in dmu_buf_hold_noread() 222 *dbp = NULL; in dmu_buf_hold_by_dnode() 247 *dbp = NULL; in dmu_buf_hold() 379 *dbp = NULL; in dmu_bonus_hold_by_dnode() 427 *dbp = NULL; in dmu_spill_hold_by_dnode() 435 *dbp = NULL; in dmu_spill_hold_by_dnode() 591 *dbpp = dbp; in dmu_buf_hold_array_by_dnode() [all …]
|
| H A D | spa_history.c | 89 dmu_buf_t *dbp; in spa_history_create_obj() local 105 shpp = dbp->db_data; in spa_history_create_obj() 106 dmu_buf_will_dirty(dbp, tx); in spa_history_create_obj() 117 dmu_buf_rele(dbp, FTAG); in spa_history_create_obj() 258 dmu_buf_t *dbp; in spa_history_log_sync() local 279 shpp = dbp->db_data; in spa_history_log_sync() 351 dmu_buf_rele(dbp, FTAG); in spa_history_log_sync() 414 dmu_buf_t *dbp; in spa_history_get() local 437 shpp = dbp->db_data; in spa_history_get() 488 dmu_buf_rele(dbp, FTAG); in spa_history_get() [all …]
|
| H A D | zfs_sa.c | 86 dmu_buf_t *dbp; in zfs_sa_readlink() local 88 0, FTAG, &dbp, DMU_READ_NO_PREFETCH)) == 0) { in zfs_sa_readlink() 89 error = uiomove(dbp->db_data, in zfs_sa_readlink() 91 dmu_buf_rele(dbp, FTAG); in zfs_sa_readlink() 109 dmu_buf_t *dbp; in zfs_sa_symlink() local 112 VERIFY0(dmu_buf_hold(ZTOZSB(zp)->z_os, zp->z_id, 0, FTAG, &dbp, in zfs_sa_symlink() 115 dmu_buf_will_dirty(dbp, tx); in zfs_sa_symlink() 117 ASSERT3U(len, <=, dbp->db_size); in zfs_sa_symlink() 118 bcopy(link, dbp->db_data, len); in zfs_sa_symlink() 119 dmu_buf_rele(dbp, FTAG); in zfs_sa_symlink()
|
| H A D | spa_checkpoint.c | 409 dmu_buf_t **dbp; in spa_checkpoint_discard_thread() local 428 B_TRUE, FTAG, &numbufs, &dbp); in spa_checkpoint_discard_thread() 440 dmu_buf_rele_array(dbp, numbufs, FTAG); in spa_checkpoint_discard_thread()
|
| H A D | space_map.c | 550 maptype_t maptype, uint64_t vdev_id, uint8_t words, dmu_buf_t **dbp, in space_map_write_seg() argument 565 dmu_buf_t *db = *dbp; in space_map_write_seg() 601 *dbp = db; in space_map_write_seg()
|
| H A D | dbuf.c | 460 dmu_buf_impl_t *dbf, **dbp; in dbuf_hash_remove() local 475 dbp = &h->hash_table[idx]; in dbuf_hash_remove() 476 while ((dbf = *dbp) != db) { in dbuf_hash_remove() 477 dbp = &dbf->db_hash_next; in dbuf_hash_remove() 480 *dbp = db->db_hash_next; in dbuf_hash_remove() 3041 dmu_buf_impl_t *dbp = NULL; in dbuf_dnode_findbp() local 3049 if (dbp != NULL) in dbuf_dnode_findbp() 3050 dbuf_rele(dbp, NULL); in dbuf_dnode_findbp() 3396 void *tag, dmu_buf_impl_t **dbp) in dbuf_hold_impl() argument 3411 *dbp = NULL; in dbuf_hold_impl() [all …]
|
| /f-stack/freebsd/contrib/zstd/programs/ |
| H A D | benchzstd.c | 399 BMK_benchParams_t cbp, dbp; in BMK_benchMemAdvancedNoAlloc() local 422 dbp.benchFn = local_defaultDecompress; in BMK_benchMemAdvancedNoAlloc() 423 dbp.benchPayload = dctx; in BMK_benchMemAdvancedNoAlloc() 424 dbp.initFn = local_initDCtx; in BMK_benchMemAdvancedNoAlloc() 425 dbp.initPayload = &dctxprep; in BMK_benchMemAdvancedNoAlloc() 426 dbp.errorFn = ZSTD_isError; in BMK_benchMemAdvancedNoAlloc() 427 dbp.blockCount = nbBlocks; in BMK_benchMemAdvancedNoAlloc() 429 dbp.srcSizes = cSizes; in BMK_benchMemAdvancedNoAlloc() 430 dbp.dstBuffers = resPtrs; in BMK_benchMemAdvancedNoAlloc() 431 dbp.dstCapacities = resSizes; in BMK_benchMemAdvancedNoAlloc() [all …]
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | dmu.h | 530 int dmu_bonus_hold(objset_t *os, uint64_t object, void *tag, dmu_buf_t **dbp); 531 int dmu_bonus_hold_by_dnode(dnode_t *dn, void *tag, dmu_buf_t **dbp, 544 dmu_buf_t **dbp); 546 void *tag, dmu_buf_t **dbp); 547 int dmu_spill_hold_existing(dmu_buf_t *bonus, void *tag, dmu_buf_t **dbp); 566 void *tag, dmu_buf_t **dbp, int flags);
|
| H A D | dbuf.h | 348 void *tag, dmu_buf_impl_t **dbp);
|
| /f-stack/freebsd/contrib/device-tree/Bindings/rtc/ |
| H A D | st,stm32-rtc.yaml | 41 access control register at offset, and change the dbp (Disable Backup
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-debug.h | 425 uint64_t dbp:1; /**< Indicates that a Debug Breakpoint exception member
|
| H A D | cvmx-debug.c | 1067 …if (!cvmx_debug_active_core(state, core) && !debug_reg->s.dbp && !debug_reg->s.dss && (debug_reg->… in cvmx_debug_stop_core() 1082 …if (debug_reg->s.dss && !debug_reg->s.dib && !debug_reg->s.dbp && !debug_reg->s.ddbs && !debug_reg… in cvmx_debug_single_step_exc() 1102 if (debug_reg->s.dib || debug_reg->s.dbp || debug_reg->s.ddbs || debug_reg->s.ddbl) in cvmx_debug_may_elect_as_focus_core() 1147 if (debug_reg->s.dss || debug_reg->s.dbp || core != state.focus_core) in cvmx_debug_delay_focus_core()
|