| /netbsd-src/usr.sbin/netgroup_mkdb/ |
| H A D | netgroup_mkdb.c | 71 static DB *ng_insert(DB *, const char *); 72 static void ng_reventry(DB *, DB *, struct nentry *, char *, 75 static void ng_rprint(DB *, struct string *); 76 static DB *ng_reverse(DB *, size_t); 77 static DB *ng_load(const char *); 78 static void ng_write(DB *, DB *, int); 79 static void ng_rwrite(DB *, DB *, int); 84 static void ng_dump(DB *); 85 static void ng_rdump(DB *); 98 DB *db, *ndb, *hdb, *udb; in main() [all …]
|
| /netbsd-src/external/bsd/nvi/dist/common/ |
| H A D | vi_db.h | 64 extern int (*nvi_db_create) __P((DB **, DB_ENV *, u_int32_t)); 121 typedef DB DB_old; 122 #undef DB 123 #define DB DB_new macro 124 typedef struct __db_new DB; typedef 139 int (*close)(DB *, u_int32_t); 142 int (*open)(DB *, const char *, const char *, DBTYPE, u_int32_t, int); 146 int (*sync)(DB *, u_int32_t); 147 int (*get)(DB *, DB_TXN *, DBT *, DBT *, u_int32_t); 148 int (*put)(DB *, DB_TXN *, DBT *, DBT *, u_int32_t); [all …]
|
| H A D | db1.c | 81 static int db1_db_close(DB *, u_int32_t); 82 static int db1_db_open(DB *, const char *, const char *, DBTYPE, u_int32_t, int); 83 static int db1_db_sync(DB *, u_int32_t); 84 static int db1_db_get(DB *, DB_TXN *, DBT *, DBT *, u_int32_t); 85 static int db1_db_put(DB *, DB_TXN *, DBT *, DBT *, u_int32_t); 86 static int db1_db_del(DB *, DB_TXN *, DBT *, u_int32_t); 87 static int db1_db_set_flags(DB *, u_int32_t); 88 static int db1_db_set_pagesize(DB *, u_int32_t); 89 static int db1_db_set_re_delim(DB *, int); 90 static int db1_db_set_re_source(DB *, const char *); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | Diagnostic.h | 1336 const StreamingDiagnostic &DB = *this; variable 1337 DB << V; 1348 const StreamingDiagnostic &DB = *this; variable 1349 DB << std::move(V); 1377 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, 1379 DB.addFlagValue(V.Val); 1380 return DB; 1383 inline const StreamingDiagnostic &operator<<(const StreamingDiagnostic &DB, 1385 DB.AddString(S); 1386 return DB; [all …]
|
| H A D | PartialDiagnostic.h | 62 const StreamingDiagnostic &DB = *this; variable 63 DB << V; 73 const StreamingDiagnostic &DB = *this; variable 74 DB << std::move(V); 147 void Emit(const DiagnosticBuilder &DB) const { in Emit() argument 155 DB.AddString(DiagStorage->DiagArgumentsStr[i]); in Emit() 157 DB.AddTaggedVal(DiagStorage->DiagArgumentsVal[i], in Emit() 163 DB.AddSourceRange(Range); in Emit() 167 DB.AddFixItHint(Fix); in Emit() 174 DiagnosticBuilder DB(Diags.Report(getDiagID())); in EmitToString() [all …]
|
| /netbsd-src/lib/libc/db/btree/ |
| H A D | extern.h | 36 int __bt_close(DB *); 41 int __bt_delete(const DB *, const DBT *, unsigned int); 43 int __bt_fd(const DB *); 45 int __bt_get(const DB *, const DBT *, DBT *, unsigned int); 50 int __bt_put(const DB *dbp, DBT *, const DBT *, unsigned int); 54 int __bt_seq(const DB *, DBT *, DBT *, unsigned int); 58 int __bt_sync(const DB *, unsigned int); 66 void __bt_dnpage(DB *, pgno_t); 68 void __bt_dump(DB *); 71 void __bt_stat(DB *);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | BDCE.cpp | 44 static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) { in clearAssumptionsOfUsers() argument 56 !DB.getDemandedBits(J).isAllOnesValue()) { in clearAssumptionsOfUsers() 87 !DB.getDemandedBits(K).isAllOnesValue()) in clearAssumptionsOfUsers() 93 static bool bitTrackingDCE(Function &F, DemandedBits &DB) { in bitTrackingDCE() argument 105 if (DB.isInstructionDead(&I) || in bitTrackingDCE() 107 DB.getDemandedBits(&I).isNullValue() && in bitTrackingDCE() 118 APInt Demanded = DB.getDemandedBits(SE); in bitTrackingDCE() 123 clearAssumptionsOfUsers(SE, DB); in bitTrackingDCE() 142 if (!DB.isUseDead(&U)) in bitTrackingDCE() 147 clearAssumptionsOfUsers(&I, DB); in bitTrackingDCE() [all …]
|
| /netbsd-src/lib/libc/db/db/ |
| H A D | db.c | 48 static int __dberr(const DB *, ...); 58 DB * in __weak_alias() 86 __dberr(const DB *dbp, ...) in __dberr() 98 __dbpanic(DB *dbp) in __dbpanic() 101 dbp->del = (int (*)(const DB *, const DBT *, u_int))__dberr; in __dbpanic() 102 dbp->fd = (int (*)(const DB *))__dberr; in __dbpanic() 103 dbp->get = (int (*)(const DB *, const DBT *, DBT *, u_int))__dberr; in __dbpanic() 104 dbp->put = (int (*)(const DB *, DBT *, const DBT *, u_int))__dberr; in __dbpanic() 105 dbp->seq = (int (*)(const DB *, DBT *, DBT *, u_int))__dberr; in __dbpanic() 106 dbp->sync = (int (*)(const DB *, u_int))__dberr; in __dbpanic()
|
| /netbsd-src/sys/arch/luna68k/dev/xplx/ |
| H A D | xplx.asm | 401 DEBUG0:: .DB 0 402 DEBUG1:: .DB 0 403 DEBUG2:: .DB 0 404 DEBUG3:: .DB 0 405 DEBUG4:: .DB 0 406 DEBUG5:: .DB 0 407 DEBUG6:: .DB 0 408 DEBUG7:: .DB 0 409 DEBUG8:: .DB 0 410 DEBUG9:: .DB 0 [all …]
|
| /netbsd-src/external/bsd/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()
|
| /netbsd-src/lib/libc/db/recno/ |
| H A D | extern.h | 36 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);
|
| /netbsd-src/usr.sbin/kvm_mkdb/ |
| H A D | extern.h | 100 void create_knlist(const char *, DB *); 105 int create_knlist_aout(const char *, DB *); 108 int create_knlist_coff(const char *, DB *); 111 int create_knlist_ecoff(const char *, DB *); 114 int create_knlist_elf32(const char *, DB *); 117 int create_knlist_elf64(const char *, DB *);
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/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";
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rsa/ |
| H A D | rsa_pss.c | 40 unsigned char *DB = NULL; in RSA_verify_PKCS1_PSS_mgf1() local 93 DB = OPENSSL_malloc(maskedDBLen); in RSA_verify_PKCS1_PSS_mgf1() 94 if (DB == NULL) { in RSA_verify_PKCS1_PSS_mgf1() 98 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0) in RSA_verify_PKCS1_PSS_mgf1() 101 DB[i] ^= EM[i]; in RSA_verify_PKCS1_PSS_mgf1() 103 DB[0] &= 0xFF >> (8 - MSBits); in RSA_verify_PKCS1_PSS_mgf1() 104 for (i = 0; DB[i] == 0 && i < (maskedDBLen - 1); i++) ; in RSA_verify_PKCS1_PSS_mgf1() 105 if (DB[i++] != 0x1) { in RSA_verify_PKCS1_PSS_mgf1() 118 if (!EVP_DigestUpdate(ctx, DB + i, maskedDBLen - i)) in RSA_verify_PKCS1_PSS_mgf1() 131 OPENSSL_free(DB); in RSA_verify_PKCS1_PSS_mgf1()
|
| /netbsd-src/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 *); 77 static void unlinkpg(DB *); 85 extern void __bt_stat(DB *); 95 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() 126 state_del(DB *db, const struct conf *c) in state_del() 153 state_get(DB *db, const struct conf *c, struct dbinfo *dbi) 182 state_put(DB *db, const struct conf *c, const struct dbinfo *dbi) in state_put() 211 state_iterate(DB *db, struct conf *c, struct dbinfo *dbi, unsigned int first) in state_iterate() 248 DB *db; in testdb()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hdb/ |
| H A D | db.c | 56 DB *d = (DB*)db->hdb_db; in DB_close() 86 DB *d = (DB*)db->hdb_db; in DB_set_sync() 120 DB *d = (DB*)db->hdb_db; in DB_seq() 202 DB *d = (DB*)db->hdb_db; in DB__get() 229 DB *d = (DB*)db->hdb_db; in DB__put() 256 DB *d = (DB*)db->hdb_db; in DB__del() 274 static DB *
|
| H A D | db3.c | 67 DB *d = (DB*)db->hdb_db; in DB_close() 101 DB *d = (DB*)db->hdb_db; in DB_set_sync() 229 DB *d = (DB*)db->hdb_db; in DB__get() 253 DB *d = (DB*)db->hdb_db; in DB__put() 301 DB *d = (DB*)db->hdb_db; in DB__del() 331 _open_db(DB *d, char *fn, int myflags, int flags, mode_t mode, int *fd) in _open_db() 379 DB *d; in DB_open()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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()
|
| /netbsd-src/include/ |
| H A D | db.h | 125 } DB; typedef 230 DB *dbopen(const char *, int, mode_t, DBTYPE, const void *); 236 DB *__bt_open(const char *, int, mode_t, const BTREEINFO *, int); 237 DB *__hash_open(const char *, int, mode_t, const HASHINFO *, int); 238 DB *__rec_open(const char *, int, mode_t, const RECNOINFO *, int); 239 void __dbpanic(DB *);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| H A D | CompilationDatabase.cpp | 71 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()
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/geoip2/data/ |
| H A D | README.md | 20 [https://github.com/maxmind/MaxMind-DB](https://github.com/maxmind/MaxMind-DB). 21 It depends on the MaxMind:DB:Writer module, which can be found in 23 [https://github.com/maxmind/MaxMind-DB-Writer-perl](https://github.com/maxmind/MaxMind-DB-Writer-pe…
|
| H A D | write-test-data.pl | 25 use MaxMind::DB::Writer::Serializer 0.100004; 26 use MaxMind::DB::Writer::Tree 0.100004; 27 use MaxMind::DB::Writer::Util qw( key_for_data ); 29 use Test::MaxMind::DB::Common::Util qw( standard_test_metadata ); 134 my $writer = MaxMind::DB::Writer::Tree->new(
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 540 static const T &DiagTemplateArg(const T &DB, const TemplateArgument &Arg) { in DiagTemplateArg() argument 545 return DB << "(null template argument)"; in DiagTemplateArg() 548 return DB << Arg.getAsType(); in DiagTemplateArg() 551 return DB << Arg.getAsDecl(); in DiagTemplateArg() 554 return DB << "nullptr"; in DiagTemplateArg() 557 return DB << Arg.getAsIntegral().toString(10); in DiagTemplateArg() 560 return DB << Arg.getAsTemplate(); in DiagTemplateArg() 563 return DB << Arg.getAsTemplateOrTemplatePattern() << "..."; in DiagTemplateArg() 575 return DB << OS.str(); in DiagTemplateArg() 586 return DB << OS.str(); in DiagTemplateArg() [all …]
|