Home
last modified time | relevance | path

Searched refs:DB (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/freebsd-14.2/lib/libc/db/test/btree.tests/
H A Dmain.c121 DB *db;
187 DB *db; in user()
271 DB *db; in append()
301 DB *db; in cursor()
328 DB *db; in delcur()
341 DB *db; in delete()
368 DB *db; in dump()
376 DB *db; in first()
399 DB *db; in get()
428 DB *db; in help()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.h1347 DB << V;
1390 return DB;
1396 return DB;
1403 return DB;
1409 return DB;
1415 return DB;
1421 return DB;
1431 return DB;
1437 return DB;
1443 return DB;
[all …]
H A DPartialDiagnostic.h59 const StreamingDiagnostic &DB = *this; variable
60 DB << V;
70 const StreamingDiagnostic &DB = *this; variable
71 DB << std::move(V);
144 void Emit(const DiagnosticBuilder &DB) const { in Emit() argument
160 DB.AddSourceRange(Range); in Emit()
164 DB.AddFixItHint(Fix); in Emit()
172 Emit(DB); in EmitToString()
174 DB.Clear(); in EmitToString()
199 PD.Emit(DB);
[all …]
/freebsd-14.2/lib/libc/db/btree/
H A Dextern.h34 int __bt_close(DB *);
39 int __bt_delete(const DB *, const DBT *, u_int);
41 int __bt_fd(const DB *);
43 int __bt_get(const DB *, const DBT *, DBT *, u_int);
48 int __bt_put(const DB *dbp, DBT *, const DBT *, u_int);
51 int __bt_seq(const DB *, DBT *, DBT *, u_int);
55 int __bt_sync(const DB *, u_int);
62 void __bt_dnpage(DB *, pgno_t);
64 void __bt_dump(DB *);
67 void __bt_stat(DB *);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DBDCE.cpp41 static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) { in clearAssumptionsOfUsers() argument
53 !DB.getDemandedBits(J).isAllOnes()) { in clearAssumptionsOfUsers()
84 !DB.getDemandedBits(K).isAllOnes()) in clearAssumptionsOfUsers()
90 static bool bitTrackingDCE(Function &F, DemandedBits &DB) { in bitTrackingDCE() argument
102 if (DB.isInstructionDead(&I) || in bitTrackingDCE()
112 APInt Demanded = DB.getDemandedBits(SE); in bitTrackingDCE()
117 clearAssumptionsOfUsers(SE, DB); in bitTrackingDCE()
136 if (!DB.isUseDead(&U)) in bitTrackingDCE()
141 clearAssumptionsOfUsers(&I, DB); in bitTrackingDCE()
165 auto &DB = AM.getResult<DemandedBitsAnalysis>(F); in run() local
[all …]
/freebsd-14.2/contrib/blocklist/bin/
H A Dstate.h53 DB *state_open(const char *, int, mode_t);
54 int state_close(DB *);
55 int state_get(DB *, const struct conf *, struct dbinfo *);
56 int state_put(DB *, const struct conf *, const struct dbinfo *);
57 int state_del(DB *, const struct conf *);
58 int state_iterate(DB *, struct conf *, struct dbinfo *, unsigned int);
59 int state_sync(DB *);
H A Dstate.c63 state_close(DB *db) in state_close()
74 DB *
77 DB *db; in state_open()
114 state_del(DB *db, const struct conf *c) in state_del()
140 state_get(DB *db, const struct conf *c, struct dbinfo *dbi) in state_get()
168 state_put(DB *db, const struct conf *c, const struct dbinfo *dbi) in state_put()
198 state_iterate(DB *db, struct conf *c, struct dbinfo *dbi, unsigned int first) in state_iterate()
232 state_sync(DB *db) in state_sync()
/freebsd-14.2/lib/libc/db/recno/
H A Dextern.h36 int __rec_close(DB *);
37 int __rec_delete(const DB *, const DBT *, u_int);
39 int __rec_fd(const DB *);
43 int __rec_get(const DB *, const DBT *, DBT *, u_int);
45 int __rec_put(const DB *dbp, DBT *, const DBT *, u_int);
48 int __rec_seq(const DB *, DBT *, DBT *, u_int);
49 int __rec_sync(const DB *, u_int);
/freebsd-14.2/contrib/ncurses/include/
H A Dhashed_db.h61 extern NCURSES_EXPORT(DB *) _nc_db_open(const char * /* path */, bool /* modify */);
64 extern NCURSES_EXPORT(int) _nc_db_close(DB * /* db */);
65 extern NCURSES_EXPORT(int) _nc_db_first(DB * /* db */, DBT * /* key */, DBT * /* data */);
66 extern NCURSES_EXPORT(int) _nc_db_next(DB * /* db */, DBT * /* key */, DBT * /* data */);
67 extern NCURSES_EXPORT(int) _nc_db_get(DB * /* db */, DBT * /* key */, DBT * /* data */);
68 extern NCURSES_EXPORT(int) _nc_db_put(DB * /* db */, DBT * /* key */, DBT * /* data */);
/freebsd-14.2/contrib/ncurses/ncurses/tinfo/
H A Dhashed_db.c48 DB *db;
63 static DB *
66 DB *result = 0; in find_connection()
80 drop_connection(DB * db) in drop_connection()
118 NCURSES_EXPORT(DB *)
121 DB *result = 0; in _nc_db_open()
183 _nc_db_close(DB * db) in _nc_db_close()
205 _nc_db_put(DB * db, DBT * key, DBT * data) in _nc_db_put()
224 _nc_db_get(DB * db, DBT * key, DBT * data) in _nc_db_get()
243 _nc_db_first(DB * db, DBT * key, DBT * data) in _nc_db_first()
[all …]
/freebsd-14.2/crypto/heimdal/lib/kadm5/
H A Dcheck-cracklib.pl64 my %DB;
73 dbmopen(%DB,$historydb,0600) or die "Internal: Could not open $historydb";
74 if (!$DB{$key} || ($timenow - $DB{$key} < $reusetime)) {
76 $DB{$key}=$timenow;
78 dbmclose(%DB) or die "Internal: Could not close $historydb";
/freebsd-14.2/tools/tools/commitsdb/
H A Dquery_commit_db19 open DB, "< $dbname" or die "$!\n";
21 while (<DB>) {
31 close DB;
47 open DB, "< $dbname" or die "$!\n";
48 while (<DB>) {
56 close DB;
/freebsd-14.2/crypto/heimdal/lib/hdb/
H A Ddb.c47 DB *d = (DB*)db->hdb_db; in DB_close()
66 DB *d = (DB*)db->hdb_db; in DB_lock()
79 DB *d = (DB*)db->hdb_db; in DB_unlock()
94 DB *d = (DB*)db->hdb_db; in DB_seq()
178 DB *d = (DB*)db->hdb_db; in DB__get()
208 DB *d = (DB*)db->hdb_db; in DB__put()
237 DB *d = (DB*)db->hdb_db; in DB__del()
H A Ddb3.c53 DB *d = (DB*)db->hdb_db; in DB_close()
76 DB *d = (DB*)db->hdb_db; in DB_lock()
86 DB *d = (DB*)db->hdb_db; in DB_unlock()
175 DB *d = (DB*)db->hdb_db; in DB__get()
201 DB *d = (DB*)db->hdb_db; in DB__put()
227 DB *d = (DB*)db->hdb_db; in DB__del()
252 DB *d; in DB_open()
/freebsd-14.2/usr.sbin/ypserv/
H A Dyp_extern.h76 extern int yp_get_record(DB *, const DBT *, DBT *, int);
80 extern int yp_first_record(const DB *, DBT *, DBT *, int);
81 extern int yp_next_record(const DB *, DBT *, DBT *, int, int);
90 extern DB *yp_open_db(const char *, const char *);
91 extern DB *yp_open_db_cache(const char *, const char *, const char *, int);
H A Dyp_dblookup.c73 DB *dbp;
202 yp_setflags(DB *dbp) in yp_setflags()
260 yp_cache_db(DB *dbp, char *name, int size) in yp_cache_db()
318 static DB *
350 DB *
354 DB *dbp = NULL; in yp_open_db_cache()
384 DB *
387 DB *dbp = NULL; in yp_open_db()
452 yp_get_record(DB *dbp, const DBT *key, DBT *data, int allow) in yp_get_record()
460 DB *dbp; in yp_get_record()
[all …]
/freebsd-14.2/contrib/netbsd-tests/lib/libc/db/
H A Dh_db.c67 static void get(DB *, DBT *);
70 static void rem(DB *, DBT *);
72 static void synk(DB *);
78 static void unlinkpg(DB *);
87 extern void __bt_stat(DB *);
108 DB *dbp; in main()
376 get(DB *dbp, DBT *kp) in get()
434 rem(DB *dbp, DBT *kp) in rem()
459 synk(DB *dbp) in synk()
471 seq(DB *dbp, DBT *kp) in seq()
[all …]
H A Dt_db_hash_seq.c92 state_close(DB *db) in state_close()
101 static DB *
104 DB *db; in state_open()
125 state_del(DB *db, const struct conf *c) in state_del()
152 state_get(DB *db, const struct conf *c, struct dbinfo *dbi)
181 state_put(DB *db, const struct conf *c, const struct dbinfo *dbi) in state_put()
210 state_iterate(DB *db, struct conf *c, struct dbinfo *dbi, unsigned int first) in state_iterate()
247 DB *db; in testdb()
/freebsd-14.2/usr.bin/fortune/datfiles/
H A DMakefile3 DB= freebsd-tips macro
5 BLDS= ${DB:S/$/.dat/}
6 FILES= ${DB} ${BLDS}
11 .for f in ${DB}
/freebsd-14.2/include/
H A Ddb.h108 } DB; typedef
208 DB *dbopen(const char *, int, int, DBTYPE, const void *);
212 DB *__bt_open(const char *, int, int, const BTREEINFO *, int);
213 DB *__hash_open(const char *, int, int, const HASHINFO *, int);
214 DB *__rec_open(const char *, int, int, const RECNOINFO *, int);
215 void __dbpanic(DB *dbp);
/freebsd-14.2/crypto/openssl/crypto/rsa/
H A Drsa_pss.c46 unsigned char *DB = NULL; in RSA_verify_PKCS1_PSS_mgf1() local
99 DB = OPENSSL_malloc(maskedDBLen); in RSA_verify_PKCS1_PSS_mgf1()
100 if (DB == NULL) { in RSA_verify_PKCS1_PSS_mgf1()
104 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0) in RSA_verify_PKCS1_PSS_mgf1()
107 DB[i] ^= EM[i]; in RSA_verify_PKCS1_PSS_mgf1()
109 DB[0] &= 0xFF >> (8 - MSBits); in RSA_verify_PKCS1_PSS_mgf1()
110 for (i = 0; DB[i] == 0 && i < (maskedDBLen - 1); i++) ; in RSA_verify_PKCS1_PSS_mgf1()
111 if (DB[i++] != 0x1) { in RSA_verify_PKCS1_PSS_mgf1()
126 if (!EVP_DigestUpdate(ctx, DB + i, maskedDBLen - i)) in RSA_verify_PKCS1_PSS_mgf1()
139 OPENSSL_free(DB); in RSA_verify_PKCS1_PSS_mgf1()
/freebsd-14.2/sys/contrib/device-tree/Bindings/reserved-memory/
H A Dqcom,cmd-db.txt1 Command DB
4 Command DB is a database that provides a mapping between resource key and the
13 The bindings for Command DB is specified in the reserved-memory section in
14 devicetree. The devicetree representation of the command DB driver should be:
26 the Command DB in memory.
/freebsd-14.2/lib/libc/db/test/
H A Ddbtest.c59 void dump(DB *, int);
61 void get(DB *, DBT *);
66 void synk(DB *);
91 DB *dbp;
358 DB *dbp; in get()
386 DB *dbp; in getdata()
403 DB *dbp; in put()
420 DB *dbp; in rem()
446 DB *dbp; in synk()
459 DB *dbp; in seq()
[all …]
/freebsd-14.2/contrib/sendmail/libsmdb/
H A Dsmdb1.c24 DB *smdb1_db;
172 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
190 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
204 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
231 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
258 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
281 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
328 DB *db = db1->smdb1_db;
344 DB *db = db1->smdb1_db;
372 DB *db = db1->smdb1_db;
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp71 if (std::unique_ptr<CompilationDatabase> DB = in loadFromDirectory() local
73 return DB; in loadFromDirectory()
87 if (std::unique_ptr<CompilationDatabase> DB = in findCompilationDatabaseFromDirectory() local
89 return DB; in findCompilationDatabaseFromDirectory()
109 std::unique_ptr<CompilationDatabase> DB = in autoDetectFromSource() local
112 if (!DB) in autoDetectFromSource()
115 return DB; in autoDetectFromSource()
123 std::unique_ptr<CompilationDatabase> DB = in autoDetectFromDirectory() local
126 if (!DB) in autoDetectFromDirectory()
129 return DB; in autoDetectFromDirectory()

12345678910>>...12