Searched defs:DB (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/chrome/browser/predictors/
H A Dpredictor_table_base.cc22 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
31 sql::Connection* PredictorTableBase::DB() { function in class:predictors::PredictorTableBase
32 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
37 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
42 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Ddb.h24 // Abstract handle to particular state of a DB.
41 // A DB is a persistent ordered map from keys to values.
42 // A DB is safe for concurrent access from multiple threads without
44 class DB { class in namespace:leveldb
53 DB** dbptr);
55 DB() { } function in class:leveldb::DB
56 virtual ~DB();
94 // Return a handle to the current DB state. Iterators created with
95 // this handle will all observe a stable snapshot of the current DB
104 // DB implementation
[all...]
/external/dropbear/libtomcrypt/src/pk/pkcs1/
H A Dpkcs_1_oaep_decode.c39 unsigned char *DB, *seed, *mask; local
63 /* allocate ram for DB/mask/salt of size modulus_len */
64 DB = XMALLOC(modulus_len);
67 if (DB == NULL || mask == NULL || seed == NULL) {
68 if (DB != NULL) {
69 XFREE(DB);
99 /* now read the masked DB */
100 XMEMCPY(DB, msg + x, modulus_len - hLen - 1);
104 if ((err = pkcs_1_mgf1(hash_idx, DB, modulus_len - hLen - 1, mask, hLen)) != CRYPT_OK) {
118 /* xor against DB */
[all...]
H A Dpkcs_1_oaep_encode.c40 unsigned char *DB, *seed, *mask; local
66 /* allocate ram for DB/mask/salt of size modulus_len */
67 DB = XMALLOC(modulus_len);
70 if (DB == NULL || mask == NULL || seed == NULL) {
71 if (DB != NULL) {
72 XFREE(DB);
84 /* DB == lhash || PS || 0x01 || M, PS == k - mlen - 2hlen - 2 zeroes */
87 if ((err = hash_memory(hash_idx, lparam, lparamlen, DB, &x)) != CRYPT_OK) {
91 /* can't pass hash_memory a NULL so use DB with zero length */
92 if ((err = hash_memory(hash_idx, DB,
[all...]
H A Dpkcs_1_pss_decode.c37 unsigned char *DB, *mask, *salt, *hash; local
62 /* allocate ram for DB/mask/salt/hash of size modulus_len */
63 DB = XMALLOC(modulus_len);
67 if (DB == NULL || mask == NULL || salt == NULL || hash == NULL) {
68 if (DB != NULL) {
69 XFREE(DB);
89 /* copy out the DB */
91 XMEMCPY(DB, sig + x, modulus_len - hLen - 1);
109 /* xor against DB */
111 DB[
[all...]
H A Dpkcs_1_pss_encode.c39 unsigned char *DB, *mask, *salt, *hash; local
64 /* allocate ram for DB/mask/salt/hash of size modulus_len */
65 DB = XMALLOC(modulus_len);
69 if (DB == NULL || mask == NULL || salt == NULL || hash == NULL) {
70 if (DB != NULL) {
71 XFREE(DB);
98 zeromem(DB, 8);
99 if ((err = hash_descriptor[hash_idx].process(&md, DB, 8)) != CRYPT_OK) {
112 /* generate DB = PS || 0x01 || salt, PS == modulus_len - saltlen - hLen - 2 zero bytes */
114 XMEMSET(DB
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/
H A Drsa_pss.c87 unsigned char *DB = NULL; local
136 DB = OPENSSL_malloc(maskedDBLen);
137 if (!DB)
142 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0)
145 DB[i] ^= EM[i];
147 DB[0] &= 0xFF >> (8 - MSBits);
148 for (i = 0; DB[i] == 0 && i < (maskedDBLen-1); i++) ;
149 if (DB[i++] != 0x1)
165 if (!EVP_DigestUpdate(&ctx, DB + i, maskedDBLen - i))
179 if (DB)
[all...]
/external/clang/lib/AST/
H A DTemplateName.cpp159 const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB, argument
170 return DB << NameStr;
H A DTemplateBase.cpp453 const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB, argument
459 return DB << "(null template argument)";
462 return DB << Arg.getAsType();
465 return DB << Arg.getAsDecl();
468 return DB << "nullptr";
471 return DB << Arg.getAsIntegral().toString(10);
474 return DB << Arg.getAsTemplate();
477 return DB << Arg.getAsTemplateOrTemplatePattern() << "...";
489 return DB << OS.str();
500 return DB << O
[all...]
H A DDeclCXX.cpp2061 const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB, argument
2063 return DB << getAccessName(AS);
2066 const PartialDiagnostic &clang::operator<<(const PartialDiagnostic &DB, argument
2068 return DB << getAccessName(AS);
/external/openssl/crypto/rsa/
H A Drsa_pss.c87 unsigned char *DB = NULL; local
136 DB = OPENSSL_malloc(maskedDBLen);
137 if (!DB)
142 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0)
145 DB[i] ^= EM[i];
147 DB[0] &= 0xFF >> (8 - MSBits);
148 for (i = 0; DB[i] == 0 && i < (maskedDBLen-1); i++) ;
149 if (DB[i++] != 0x1)
165 if (!EVP_DigestUpdate(&ctx, DB + i, maskedDBLen - i))
179 if (DB)
[all...]
/external/chromium_org/content/public/browser/
H A Dbrowser_thread.h65 DB, enumerator in enum:content::BrowserThread::ID
267 struct DeleteOnDBThread : public DeleteOnThread<DB> { };
/external/clang/lib/Tooling/
H A DCompilationDatabase.cpp38 if (CompilationDatabase *DB =
40 return DB;
56 if (CompilationDatabase *DB =
58 return DB;
78 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(Directory, local
81 if (!DB)
84 return DB;
92 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(AbsolutePath, local
95 if (!DB)
98 return DB;
[all...]
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h476 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, argument
478 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
480 return DB;
H A DCanonicalType.h205 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, argument
207 DB << static_cast<QualType>(T);
208 return DB;
H A DDeclarationName.h544 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, argument
546 DB.AddTaggedVal(N.getAsOpaqueInteger(),
548 return DB;
/external/clang/include/clang/Basic/
H A DPartialDiagnostic.h300 void Emit(const DiagnosticBuilder &DB) const {
308 DB.AddString(DiagStorage->DiagArgumentsStr[i]);
310 DB.AddTaggedVal(DiagStorage->DiagArgumentsVal[i],
316 DB.AddSourceRange(DiagStorage->DiagRanges[i]);
320 DB.AddFixItHint(DiagStorage->FixItHints[i]);
327 DiagnosticBuilder DB(Diags.Report(getDiagID()));
328 Emit(DB);
329 DB.FlushCounts();
331 DB.Clear();
390 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, argument
[all...]
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp690 DiagnosticBuilder DB = local
696 if (DB.hasMaxRanges())
698 DB << *Range;
706 DiagnosticBuilder DB = Diag(MacroName, diag::note_suggest_parens_for_macro);
710 if (DB.hasMaxFixItHints())
712 DB << FixItHint::CreateInsertion(ParenLocation->getBegin(), "(");
713 if (DB.hasMaxFixItHints())
715 DB << FixItHint::CreateInsertion(ParenLocation->getEnd(), ")");
/external/mksh/src/
H A Dtree.c895 #define DB(x) if (iop->flag & x) shf_puts("|" #x, shf); macro
908 DB(IOEVAL)
909 DB(IOSKIP)
910 DB(IOCLOB)
911 DB(IORDUP)
912 DB(IONAMEXP)
913 DB(IOBASH)
914 DB(IOHERESTR)
915 DB(IONDELIM)
937 #undef DB macro
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp240 DiagnosticBuilder DB local
251 DB << SourceRange(Locations[I]);
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp46 MAP(DB, 55) \
78 D8 = 3, D9 = 4, DA = 5, DB = 6, enumerator in enum:X86Local::__anon22875
1021 case X86Local::DB:
/external/harfbuzz/src/
H A Dharfbuzz-shaper.cpp47 EX->AL from DB to IB
48 SY->AL from DB to IB
49 SY->PO from DB to IB
50 SY->PR from DB to IB
51 SY->OP from DB to IB
52 AL->PR from DB to IB
53 AL->PO from DB to IB
54 PR->PR from DB to IB
55 PO->PO from DB to IB
56 PR->PO from DB t
76 #define DB macro
112 #undef DB macro
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_impl.cc277 // Ignore error from CreateDir since the creation of the DB is
438 // file-systems cause the DB::Open() to fail.
449 // file-systems cause the DB::Open() to fail.
515 s = Status::IOError("Deleting DB during memtable compaction");
619 // DB is being deleted; no more background compactions
979 status = Status::IOError("Deleting DB during compaction");
1155 return DB::Put(o, key, val);
1159 return DB::Delete(options, key);
1206 // just added may or may not show up when the DB is re-opened.
1207 // So we force the DB int
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86BaseInfo.h330 DA = 5 << Op0Shift, DB = 6 << Op0Shift, enumerator in enum:llvm::X86II::__anon22466
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1052 DIBuilder *DB)
1053 : LoadAndStorePromoter(Insts, S), AI(0), DIB(DB) {}
1051 AllocaPromoter(const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S, DIBuilder *DB) argument

Completed in 1031 milliseconds

12