/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | DiagnosticBuilderWrappers.cpp | 19 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, in operator <<() argument 21 DB.AddString(getArchitectureName(Arch)); in operator <<() 22 return DB; in operator <<() 25 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, in operator <<() argument 27 DB.AddString(std::string(ArchSet)); in operator <<() 28 return DB; in operator <<() 31 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, in operator <<() argument 33 DB.AddString(getPlatformName(Platform)); in operator <<() 34 return DB; in operator <<() 37 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, in operator <<() argument [all …]
|
H A D | DiagnosticBuilderWrappers.h | 25 const clang::DiagnosticBuilder &operator<<(const clang::DiagnosticBuilder &DB, 28 const clang::DiagnosticBuilder &operator<<(const clang::DiagnosticBuilder &DB, 31 const clang::DiagnosticBuilder &operator<<(const clang::DiagnosticBuilder &DB, 34 const clang::DiagnosticBuilder &operator<<(const clang::DiagnosticBuilder &DB, 37 const clang::DiagnosticBuilder &operator<<(const clang::DiagnosticBuilder &DB, 40 const clang::DiagnosticBuilder &operator<<(const clang::DiagnosticBuilder &DB, 44 operator<<(const clang::DiagnosticBuilder &DB,
|
/freebsd/lib/libc/db/test/btree.tests/ |
H A D | main.c | 49 void (*func)(DB *, char **); 54 DB *globaldb; 56 void append(DB *, char **); 57 void bstat(DB *, char **); 58 void cursor(DB *, char **); 59 void delcur(DB *, char **); 60 void delete(DB *, char **); 61 void dump(DB *, char **); 62 void first(DB *, char **); 63 void get(DB *, char **); [all …]
|
/freebsd/lib/libc/db/btree/ |
H A D | extern.h | 32 int __bt_close(DB *); 37 int __bt_delete(const DB *, const DBT *, u_int); 39 int __bt_fd(const DB *); 41 int __bt_get(const DB *, const DBT *, DBT *, u_int); 46 int __bt_put(const DB *dbp, DBT *, const DBT *, u_int); 49 int __bt_seq(const DB *, DBT *, DBT *, u_int); 53 int __bt_sync(const DB *, u_int); 60 void __bt_dnpage(DB *, pgno_t); 62 void __bt_dump(DB *); 65 void __bt_stat(DB *);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | BDCE.cpp | 44 static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) { in clearAssumptionsOfUsers() argument 50 if (DB.getDemandedBits(I).isAllOnes()) in clearAssumptionsOfUsers() 85 if (DB.getDemandedBits(J).isAllOnes()) in clearAssumptionsOfUsers() 96 static bool bitTrackingDCE(Function &F, DemandedBits &DB) { in bitTrackingDCE() argument 108 if (DB.isInstructionDead(&I) || in bitTrackingDCE() 109 (I.getType()->isIntOrIntVectorTy() && DB.getDemandedBits(&I).isZero() && in bitTrackingDCE() 118 APInt Demanded = DB.getDemandedBits(SE); in bitTrackingDCE() 123 clearAssumptionsOfUsers(SE, DB); in bitTrackingDCE() 136 APInt Demanded = DB.getDemandedBits(BO); in bitTrackingDCE() 155 clearAssumptionsOfUsers(BO, DB); in bitTrackingDCE() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | PartialDiagnostic.h | 59 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 152 DB.AddString(DiagStorage->DiagArgumentsStr[i]); in Emit() 154 DB.AddTaggedVal(DiagStorage->DiagArgumentsVal[i], in Emit() 160 DB.AddSourceRange(Range); in Emit() 164 DB.AddFixItHint(Fix); in Emit() 171 DiagnosticBuilder DB(Diags.Report(getDiagID())); in EmitToString() [all …]
|
/freebsd/contrib/blocklist/bin/ |
H A D | state.h | 53 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 D | state.c | 63 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/lib/libc/db/recno/ |
H A D | extern.h | 34 int __rec_close(DB *); 35 int __rec_delete(const DB *, const DBT *, u_int); 37 int __rec_fd(const DB *); 41 int __rec_get(const DB *, const DBT *, DBT *, u_int); 43 int __rec_put(const DB *dbp, DBT *, const DBT *, u_int); 46 int __rec_seq(const DB *, DBT *, DBT *, u_int); 47 int __rec_sync(const DB *, u_int);
|
/freebsd/contrib/ncurses/include/ |
H A D | hashed_db.h | 61 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/contrib/ncurses/ncurses/tinfo/ |
H A D | hashed_db.c | 48 DB *db; 63 static DB * 66 DB *result = 0; in find_connection() 80 drop_connection(DB * db) in drop_connection() 98 make_connection(DB * db, const char *path, bool modify) in make_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() [all …]
|
/freebsd/crypto/heimdal/lib/kadm5/ |
H A D | check-cracklib.pl | 64 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/tools/tools/commitsdb/ |
H A D | query_commit_db | 19 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/crypto/heimdal/lib/hdb/ |
H A D | db.c | 47 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 D | db3.c | 53 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/contrib/netbsd-tests/lib/libc/db/ |
H A D | h_db.c | 66 static void dump(DB *, int, int); 67 static void get(DB *, DBT *); 68 static void getdata(DB *, DBT *, DBT *); 69 static void put(DB *, DBT *, DBT *); 70 static void rem(DB *, DBT *); 72 static void synk(DB *); 74 static void seq(DB *, DBT *); 78 static void unlinkpg(DB *); 87 extern void __bt_stat(DB *); 99 static DB *XXdbp; /* Global for gdb. */ [all …]
|
H A D | t_db_hash_seq.c | 92 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/usr.sbin/ypserv/ |
H A D | yp_extern.h | 76 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 D | yp_dblookup.c | 73 DB *dbp; 196 yp_setflags(DB *dbp) in yp_setflags() 254 yp_cache_db(DB *dbp, char *name, int size) in yp_cache_db() 312 static DB * 344 DB * 348 DB *dbp = NULL; in yp_open_db_cache() 378 DB * 381 DB *dbp = NULL; in yp_open_db() 446 yp_get_record(DB *dbp, const DBT *key, DBT *data, int allow) in yp_get_record() 454 DB *dbp; in yp_get_record() [all …]
|
/freebsd/include/ |
H A D | db.h | 106 } DB; typedef 206 DB *dbopen(const char *, int, int, DBTYPE, const void *); 210 DB *__bt_open(const char *, int, int, const BTREEINFO *, int); 211 DB *__hash_open(const char *, int, int, const HASHINFO *, int); 212 DB *__rec_open(const char *, int, int, const RECNOINFO *, int); 213 void __dbpanic(DB *dbp);
|
/freebsd/usr.bin/fortune/datfiles/ |
H A D | Makefile | 1 DB= freebsd-tips macro 3 BLDS= ${DB:S/$/.dat/} 4 FILES= ${DB} ${BLDS} 9 .for f in ${DB}
|
/freebsd/crypto/openssl/crypto/rsa/ |
H A D | rsa_pss.c | 46 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/lib/libc/db/test/ |
H A D | dbtest.c | 50 void dump(DB *, int); 52 void get(DB *, DBT *); 53 void getdata(DB *, DBT *, DBT *); 54 void put(DB *, DBT *, DBT *); 55 void rem(DB *, DBT *); 57 void synk(DB *); 59 void seq(DB *, DBT *); 71 DB *XXdbp; /* Global for gdb. */ 82 DB *dbp; 349 DB *dbp; in get() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/reserved-memory/ |
H A D | qcom,cmd-db.txt | 1 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/contrib/sendmail/libsmdb/ |
H A D | smdb1.c | 24 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; 300 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db; 328 DB *db = db1->smdb1_db; 344 DB *db = db1->smdb1_db; [all …]
|