Searched refs:dbuf (Results 26 - 50 of 103) sorted by relevance

12345

/freebsd-current/contrib/arm-optimized-routines/string/test/
H A Dstpcpy.c43 static char *dbuf; variable
57 char *dst = alignup (dbuf);
108 dbuf = mte_mmap (LEN + 3 * ALIGN);
H A Dstrcpy.c41 static char *dbuf; variable
55 char *dst = alignup (dbuf);
106 dbuf = mte_mmap (LEN + 3 * ALIGN);
H A Dmemmove.c45 static unsigned char *dbuf; variable
59 unsigned char *dst = alignup (dbuf);
143 dbuf = mte_mmap (LEN + 2 * A);
/freebsd-current/sbin/ipf/ipsend/
H A Dsnit.c117 struct strbuf cbuf, *cp = &cbuf, dbuf, *dp = &dbuf; variable in typeref:struct:
H A Dsdlpi.c129 struct strbuf dbuf, *dp = &dbuf, *cp = NULL; variable in typeref:struct:strbuf
/freebsd-current/usr.sbin/dconschat/
H A Ddconschat.c360 struct dcons_buf dbuf; local
372 if (dread(dc, &dbuf, DCONS_HEADER_SIZE, dc->paddr) < 0) {
376 if (dbuf.magic != htonl(DCONS_MAGIC)) {
379 snprintf(ebuf, sizeof(ebuf), "wrong magic 0x%08x", dbuf.magic);
383 if (ntohl(dbuf.version) != DCONS_VERSION) {
386 ntohl(dbuf.version), DCONS_VERSION);
398 newbuf = dc->paddr + ntohl(dbuf.ooffset[j]);
399 o->size = ntohl(dbuf.osize[j]);
404 o->gen = ntohl(dbuf.optr[j]) >> DCONS_GEN_SHIFT;
405 o->pos = ntohl(dbuf
[all...]
/freebsd-current/sys/dev/xdma/controller/
H A Dpl330.c480 uint8_t dbuf[6]; local
547 emit_go(dbuf, chan->index, chan->ibuf_phys, 0);
549 reg = (dbuf[1] << 24) | (dbuf[0] << 16);
551 reg = (dbuf[5] << 24) | (dbuf[4] << 16) | (dbuf[3] << 8) | dbuf[2];
/freebsd-current/usr.sbin/watch/
H A Dwatch.c253 ask_dev(char *dbuf, const char *msg) argument
263 if (dbuf)
264 printf("Enter device name [%s]:", dbuf);
273 strcpy(dbuf, buf);
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_indirect_mapping.c326 dmu_buf_t *dbuf; local
329 VERIFY0(dmu_bonus_hold(os, object, FTAG, &dbuf));
330 dmu_buf_will_dirty(dbuf, tx);
331 vimp = dbuf->db_data;
336 dmu_buf_rele(dbuf, FTAG);
H A Ddmu.c38 #include <sys/dbuf.h>
350 * has not yet been allocated a new bonus dbuf a will be allocated.
383 * Wait to drop dn_struct_rwlock until after adding the bonus dbuf's
384 * hold and incrementing the dbuf count to ensure that dnode_move() sees
385 * a dnode hold for every dbuf.
420 * This interface will allocate a blank spill dbuf when a spill blk
1296 * If the caller already has a dbuf in the target object
1397 * If the caller already has a dbuf in the target object
1495 * When possible directly assign passed loaned arc buffer to a dbuf.
1518 * same size as the dbuf
1542 dmu_buf_impl_t *dbuf = (dmu_buf_impl_t *)handle; local
2221 dmu_buf_t **dbp, *dbuf; local
2317 dmu_buf_t **dbp, *dbuf; local
[all...]
H A Ddsl_dir.c175 dmu_buf_t *dbuf; local
182 err = dmu_bonus_hold(dp->dp_meta_objset, ddobj, tag, &dbuf);
185 dd = dmu_buf_get_user(dbuf);
187 dmu_object_info_from_db(dbuf, &doi);
196 dd->dd_dbuf = dbuf;
293 winner = dmu_buf_set_user_ie(dbuf, &dd->dd_dbu);
322 ASSERT3P(dd->dd_dbuf, ==, dbuf);
336 dmu_buf_rele(dbuf, tag);
961 dmu_buf_t *dbuf; local
973 VERIFY0(dmu_bonus_hold(mos, ddobj, FTAG, &dbuf));
[all...]
H A Ddsl_dataset.c554 dmu_buf_t *dbuf = ds->ds_dbuf; local
557 if (dbuf != NULL && dmu_buf_try_add_ref(dbuf, dp->dp_meta_objset,
560 if (ds == dmu_buf_get_user(dbuf))
563 dmu_buf_rele(dbuf, tag);
574 dmu_buf_t *dbuf; local
581 err = dmu_bonus_hold(mos, dsobj, tag, &dbuf);
586 dmu_object_info_from_db(dbuf, &doi);
588 dmu_buf_rele(dbuf, tag);
592 ds = dmu_buf_get_user(dbuf);
1147 dmu_buf_t *dbuf; local
1695 dmu_buf_t *dbuf; local
[all...]
H A Ddsl_bookmark.c37 #include <sys/dbuf.h>
1256 dmu_buf_t *dbuf, *spill_dbuf; local
1262 err = dmu_bonus_hold(mos, rlobj, tag, &dbuf);
1266 rl = dmu_buf_get_user(dbuf);
1271 rl->rl_bonus = dbuf;
1272 if (dmu_spill_hold_existing(dbuf, tag, &spill_dbuf) == 0) {
1275 rl->rl_dbuf = dbuf;
1283 if ((winner = dmu_buf_set_user_ie(dbuf, &rl->rl_dbu)) != NULL) {
/freebsd-current/usr.bin/mail/
H A Dcollect.c709 FILE *dbuf; local
717 dbuf = Fopen(cp, "a");
719 if (dbuf == NULL)
722 (void)putc(c, dbuf);
723 (void)Fclose(dbuf);
/freebsd-current/contrib/mandoc/
H A Dmdoc_argv.c601 char dbuf[DELIMSZ]; local
607 dbuf[j] = buf[i];
612 dbuf[j] = '\0';
613 if (DELIM_CLOSE != mdoc_isdelim(dbuf))
624 dbuf[j++] = buf[i++];
629 dbuf[j] = '\0';
630 d = mdoc_isdelim(dbuf);
/freebsd-current/sys/contrib/openzfs/lib/libzdb/
H A Dlibzdb.c25 #include <sys/dbuf.h>
/freebsd-current/sys/dev/qlxge/
H A Dqls_dbg.c152 qls_dump_buf8(qla_host_t *ha, const char *msg, void *dbuf, uint32_t len) argument
159 buf = dbuf;
/freebsd-current/sys/dev/qlxgb/
H A Dqla_dbg.c147 void qla_dump_buf8(qla_host_t *ha, char *msg, void *dbuf, uint32_t len) argument
154 buf = dbuf;
/freebsd-current/sys/dev/qlxgbe/
H A Dql_dbg.c144 void ql_dump_buf8(qla_host_t *ha, const char *msg, void *dbuf, uint32_t len) argument
151 buf = dbuf;
/freebsd-current/usr.sbin/i2c/
H A Di2c.c549 uint8_t dbuf[BUFSIZ]; local
651 dbuf[i2c_opt.count] = digittoint(*cmd++) << 4;
663 dbuf[i2c_opt.count++] |= digittoint(*cmd++);
679 error = i2c_rdwr_transfer(fd, i2c_opt, dbuf);
685 printf("%02x", dbuf[u]);
/freebsd-current/contrib/libedit/
H A Dkeymacro.c650 wchar_t dbuf[VISUAL_WIDTH_MAX]; local
651 wchar_t *p2 = dbuf;
652 ssize_t l = ct_visual_char(dbuf, VISUAL_WIDTH_MAX, *p);
/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/
H A DMakefile.files74 dbuf.o \
/freebsd-current/sbin/fsck_ffs/
H A Ddir.c199 char dbuf[DIRBLKSIZ]; local
214 if (dsize > sizeof(dbuf))
215 dsize = sizeof(dbuf);
216 memmove(dbuf, dp, (size_t)dsize);
217 idesc->id_dirp = (struct direct *)dbuf;
222 memmove(bp->b_un.b_buf + idesc->id_loc - dsize, dbuf,
/freebsd-current/libexec/pppoed/
H A Dpppoed.c661 char *dbuf, *ptr; local
663 ptr = dbuf = alloca(sz * 2 + 1);
667 syslog(LOG_INFO, "Got %d bytes of data: %s", sz, dbuf);
/freebsd-current/cddl/lib/libzpool/
H A DMakefile68 dbuf.c \
296 CFLAGS.dbuf.c= ${NO_WUSE_AFTER_FREE}

Completed in 327 milliseconds

12345