Searched refs:dbm (Results 1 - 19 of 19) sorted by relevance

/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Ddma-buf-map.h18 dma_buf_map_incr(struct dma_buf_map *dbm, size_t n) argument
20 if (dbm->is_iomem)
21 dbm->vaddr_iomem += n;
23 dbm->vaddr += n;
27 dma_buf_map_memcpy_to(struct dma_buf_map *dbm, const void *src, size_t len) argument
29 if (dbm->is_iomem)
30 memcpy_toio(dbm->vaddr_iomem, src, len);
32 memcpy(dbm->vaddr, src, len);
36 dma_buf_map_is_null(const struct dma_buf_map *dbm) argument
38 if (dbm
45 dma_buf_map_is_set(const struct dma_buf_map *dbm) argument
67 dma_buf_map_clear(struct dma_buf_map *dbm) argument
78 dma_buf_map_set_vaddr_iomem(struct dma_buf_map *dbm, void *addr) argument
85 dma_buf_map_set_vaddr(struct dma_buf_map *dbm, void *addr) argument
[all...]
/freebsd-current/lib/libc/db/man/
H A DMakefile.inc4 MAN+= btree.3 dbm.3 dbopen.3 hash.3 mpool.3 recno.3
6 MLINKS+= dbm.3 dbm_clearerr.3
7 MLINKS+= dbm.3 dbm_close.3
8 MLINKS+= dbm.3 dbm_delete.3
9 MLINKS+= dbm.3 dbm_dirfno.3
10 MLINKS+= dbm.3 dbm_error.3
11 MLINKS+= dbm.3 dbm_fetch.3
12 MLINKS+= dbm.3 dbm_firstkey.3
13 MLINKS+= dbm.3 dbm_nextkey.3
14 MLINKS+= dbm
[all...]
/freebsd-current/contrib/sendmail/libsmdb/
H A Dsmndbm.c94 DBM *dbm = ((SMDB_DBM_DATABASE *) database->smdb_impl)->smndbm_dbm; local
96 dbm_close(dbm);
113 DBM *dbm = ((SMDB_DBM_DATABASE *) database->smdb_impl)->smndbm_dbm; local
121 result = dbm_delete(dbm, dbkey);
126 if (dbm_error(dbm))
142 DBM *dbm = ((SMDB_DBM_DATABASE *) database->smdb_impl)->smndbm_dbm; local
144 *fd = dbm_dirfno(dbm);
167 DBM *dbm = ((SMDB_DBM_DATABASE *) database->smdb_impl)->smndbm_dbm; local
176 dbdata = dbm_fetch(dbm, dbkey);
181 if (dbm_error(dbm))
203 DBM *dbm = ((SMDB_DBM_DATABASE *) database->smdb_impl)->smndbm_dbm; local
247 DBM *dbm = ((SMDB_DBM_DATABASE *) database->smdb_impl)->smndbm_dbm; local
302 DBM *dbm = db->smndbm_dbm; local
330 DBM *dbm = db->smndbm_dbm; local
393 DBM *dbm = db->smndbm_dbm; local
504 DBM *dbm = NULL; local
[all...]
/freebsd-current/contrib/mandoc/
H A DMakefile.depend27 dba_read.o: dba_read.c config.h mandoc_aux.h mansearch.h dba_array.h dba.h dbm.h
29 dbm.o: dbm.c config.h mansearch.h dbm_map.h dbm.h
30 dbm_map.o: dbm_map.c config.h mansearch.h dbm_map.h dbm.h
51 mansearch.o: mansearch.c config.h mandoc_aux.h mandoc_ohash.h compat_ohash.h manconf.h mansearch.h dbm.h
H A DMakefile87 dbm.c \
160 dbm.h \
294 DBM_OBJS = dbm.o \
/freebsd-current/usr.bin/mandoc/
H A DMakefile77 DBM_SRCS= dbm.c \
/freebsd-current/usr.sbin/uhsoctl/
H A Duhsoctl.c127 int dbm; member in struct:ctx
821 * So, dbm = (rssi * 2) - 113
833 ctx->dbm = 0;
835 ctx->dbm = (rssi * 2) - 113;
1384 ctx.dbm = 0;
1537 if (ctx.dbm < 0)
1538 printf(", signal: %d dBm", ctx.dbm);
/freebsd-current/tools/tools/net80211/stumbler/
H A Dstumbler.c747 int dbm = 0; local
799 dbm = 1;
822 if (dbm) {
/freebsd-current/sys/dev/bwi/
H A Dbwirf.c1047 int32_t m1, m2, f, dbm; local
1072 dbm = _bwi_adjust_devide(m1 * f, 8192);
1073 if (dbm < -127)
1074 dbm = -127;
1075 else if (dbm > 128)
1076 dbm = 128;
1078 *txpwr = dbm;
/freebsd-current/sys/dev/ral/
H A Drt2661.c2495 int lo, hi, dbm; local
2512 if (dbm >= -35) {
2514 } else if (dbm >= -58) {
2516 } else if (dbm >= -66) {
2518 } else if (dbm >= -74) {
2525 hi -= 2 * (-74 - dbm);
/freebsd-current/crypto/heimdal/lib/hdb/
H A Dndbm.c45 #include <dbm.h>
/freebsd-current/contrib/sqlite3/
H A Dshell.c12078 sqlite3 *dbm; /* In-memory db for this analysis */ member in struct:sqlite3expert
12796 ** Search database dbm for an index compatible with the one idxCreateFromCons()
12805 sqlite3* dbm, /* Database to search */
12819 rc = idxPrintfPrepareStmt(dbm, &pIdxList, 0, "PRAGMA index_list=%Q", zTbl);
12830 rc = idxPrintfPrepareStmt(dbm, &pInfo, 0, "PRAGMA index_xInfo=%Q", zIdx);
12890 sqlite3 *dbm = p->dbm; local
12892 if( (pEq || pTail) && 0==idxFindCompatible(&rc, dbm, pScan, pEq, pTail) ){
12927 rc = sqlite3_exec(dbm, zFind, countNonzeros, &i, 0);
12951 rc = sqlite3_exec(dbm, zId
12803 idxFindCompatible( int *pRc, sqlite3* dbm, IdxScan *pScan, IdxConstraint *pEq, IdxConstraint *pTail ) argument
13113 sqlite3 *dbm = p->dbm; local
[all...]
/freebsd-current/sys/contrib/dev/mediatek/mt76/
H A Dmac80211.c1525 int *dbm)
1531 *dbm = DIV_ROUND_UP(phy->txpower_cur + delta, 2);
1549 /* SAR specifies power limitaton in 0.25dbm */
1524 mt76_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif, int *dbm) argument
H A Dmt76.h1345 int *dbm);
/freebsd-current/contrib/sendmail/src/
H A Dmap.c1684 register DBM *dbm; local
1710 syserr("dbm map \"%s\": map file %s name too long",
1747 syserr("dbm map \"%s\": %s map file %s",
1838 dbm = dbm_open(map->map_file, mode, DBMMODE);
1839 if (dbm == NULL)
1854 dfd = dbm_dirfno(dbm);
1855 pfd = dbm_pagfno(dbm);
1859 dbm_close(dbm);
1865 syserr("dbm map \"%s\": cannot support GDBM",
1874 dbm_close(dbm);
[all...]
/freebsd-current/sys/contrib/dev/rtw89/
H A Drtw8852c_rfk.c2212 enum rtw89_rf_path path, u8 dbm, bool set_from_bb)
2215 dbm = clamp_t(u8, dbm, 7, 24);
2216 rtw89_debug(rtwdev, RTW89_DBG_RFK, "[DPK] set S%d txagc to %ddBm\n", path, dbm);
2217 rtw89_phy_write32_mask(rtwdev, R_TXPWRB + (path << 13), B_TXPWRB_VAL, dbm << 2);
2211 _dpk_kip_set_txagc(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy, enum rtw89_rf_path path, u8 dbm, bool set_from_bb) argument
H A Drtw8851b_rfk.c1985 enum rtw89_rf_path path, u8 dbm,
1989 dbm = clamp_t(u8, dbm, 7, 24);
1992 "[DPK] set S%d txagc to %ddBm\n", path, dbm);
1994 B_TXPWRB_VAL, dbm << 2);
1984 _dpk_kip_set_txagc(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy, enum rtw89_rf_path path, u8 dbm, bool set_from_bb) argument
/freebsd-current/sys/contrib/dev/athk/ath11k/
H A Dmac.c9026 int *dbm)
9063 *dbm = pdev->chan_tx_power / 2;
9069 pdev->chan_tx_power, *dbm);
9075 *dbm = vif->bss_conf.txpower;
9077 *dbm);
9024 ath11k_mac_op_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif, int *dbm) argument
/freebsd-current/crypto/heimdal/
H A Dconfigure14689 DBM *dbm;
14793 dbm.h \
14837 #include <dbm.h>
14839 DBM *dbm;
14977 DBM *dbm;
15090 #include <dbm.h>

Completed in 404 milliseconds