HomeSort by: relevance | last modified time | path
    Searched defs:DB (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Vectorize/
SLPVectorizer.h 71 DemandedBits *DB = nullptr;
LoopVectorize.h 148 DemandedBits *DB;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CodeMoverUtils.cpp 104 DomTreeNode *DB = DT->getNode(InstB->getParent());
105 return DA->getLevel() < DB->getLevel();
  /src/external/gpl2/gmake/dist/
debug.h 38 #define DB(_l,_x) do{ if(ISDB(_l)) {printf _x; fflush (stdout);} }while(0)
  /src/external/gpl2/mkhybrid/dist/
desktop.c 2 ** make_desktop: create "Desktop DB" and "Desktop DF" files.
10 ** Desktop DB: Initial size == volume's clump size
31 #define DB "Desktop DB"
62 /* clear the DB file */
69 /* create "Desktop DB" (if it doesn't exist) */
70 if(hfs_create(vol, DB, ent.type, ent.creator) == 0)
72 /* DB file size from hce_mem info */
73 /* set up "Desktop DB" data - following found by od'ing
74 the "Desktop DB" file *
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
rsa_pss.c 40 unsigned char *DB = NULL;
93 DB = OPENSSL_malloc(maskedDBLen);
94 if (DB == NULL) {
98 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0)
101 DB[i] ^= EM[i];
103 DB[0] &= 0xFF >> (8 - MSBits);
104 for (i = 0; DB[i] == 0 && i < (maskedDBLen - 1); i++) ;
105 if (DB[i++] != 0x1) {
118 if (!EVP_DigestUpdate(ctx, DB + i, maskedDBLen - i))
131 OPENSSL_free(DB);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
PartialDiagnostic.h 62 const StreamingDiagnostic &DB = *this;
63 DB << V;
73 const StreamingDiagnostic &DB = *this;
74 DB << std::move(V);
147 void Emit(const DiagnosticBuilder &DB) const {
155 DB.AddString(DiagStorage->DiagArgumentsStr[i]);
157 DB.AddTaggedVal(DiagStorage->DiagArgumentsVal[i],
163 DB.AddSourceRange(Range);
167 DB.AddFixItHint(Fix);
174 DiagnosticBuilder DB(Diags.Report(getDiagID()))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DemandedBits.h 101 mutable Optional<DemandedBits> DB;
114 DemandedBits &getDemandedBits() { return *DB; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
BDCE.cpp 44 static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) {
56 !DB.getDemandedBits(J).isAllOnesValue()) {
87 !DB.getDemandedBits(K).isAllOnesValue())
93 static bool bitTrackingDCE(Function &F, DemandedBits &DB) {
105 if (DB.isInstructionDead(&I) ||
107 DB.getDemandedBits(&I).isNullValue() &&
118 APInt Demanded = DB.getDemandedBits(SE);
123 clearAssumptionsOfUsers(SE, DB);
142 if (!DB.isUseDead(&U))
147 clearAssumptionsOfUsers(&I, DB);
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_pss.c 54 unsigned char *DB = NULL;
108 DB = OPENSSL_malloc(maskedDBLen);
109 if (DB == NULL)
111 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0)
114 DB[i] ^= EM[i];
116 DB[0] &= 0xFF >> (8 - MSBits);
117 for (i = 0; DB[i] == 0 && i < (maskedDBLen - 1); i++)
119 if (DB[i++] != 0x1) {
138 if (!EVP_DigestUpdate(ctx, DB + i, sLen))
152 OPENSSL_free(DB);
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/rsa/
rsa_pss.c 46 unsigned char *DB = NULL;
99 DB = OPENSSL_malloc(maskedDBLen);
100 if (DB == NULL) {
104 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0)
107 DB[i] ^= EM[i];
109 DB[0] &= 0xFF >> (8 - MSBits);
110 for (i = 0; DB[i] == 0 && i < (maskedDBLen - 1); i++) ;
111 if (DB[i++] != 0x1) {
126 if (!EVP_DigestUpdate(ctx, DB + i, maskedDBLen - i))
139 OPENSSL_free(DB);
    [all...]
  /src/external/bsd/nvi/usr.bin/nvi/
compat.h 5 * some system's db.h files protect them with __BIT_TYPES_DEFINED__.
126 * "DB" isn't always portable, and we want the private information.
128 #define DB L__DB
port.h 5 * some system's db.h files protect them with __BIT_TYPES_DEFINED__.
127 * "DB" isn't always portable, and we want the private information.
129 #define DB L__DB
  /src/external/gpl3/gcc/dist/gcc/config/arm/
arm-ldmstm.ml 32 type amode = IA | IB | DA | DB
43 | DB -> "db"
49 | DB -> "db"
56 | DB -> -4 * nregs
63 | DB -> -4 * nregs
169 | DB, false -> "TARGET_32BIT"
205 if addrmode == IA || addrmode == DB then
309 let addrmodes = [ IA; IB; DA; DB ] i
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/arm/
arm-ldmstm.ml 32 type amode = IA | IB | DA | DB
43 | DB -> "db"
49 | DB -> "db"
56 | DB -> -4 * nregs
63 | DB -> -4 * nregs
169 | DB, false -> "TARGET_32BIT"
205 if addrmode == IA || addrmode == DB then
309 let addrmodes = [ IA; IB; DA; DB ] i
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
CompilationDatabase.cpp 71 if (std::unique_ptr<CompilationDatabase> DB =
73 return DB;
87 if (std::unique_ptr<CompilationDatabase> DB =
89 return DB;
109 std::unique_ptr<CompilationDatabase> DB =
112 if (!DB)
115 return DB;
123 std::unique_ptr<CompilationDatabase> DB =
126 if (!DB)
129 return DB;
    [all...]
  /src/external/bsd/nvi/dist/cl/
cl.h 14 #undef DB
  /src/external/gpl3/binutils/dist/opcodes/
rl78-decode.c 122 #define DB(b) set_bit (rl78->op, b)
123 #define DCY() DR(PSW); DB(0)
3392 ID(mov); DM(None, IMMU(2)); DB(bit); SC(1);
3417 ID(mov); DM(None, SADDR); DB(bit); SCY();
3442 ID(mov); DM(None, SADDR); DB(bit); SC(1);
3469 ID(mov); DM(None, SADDR); DB(bit); SC(0);
3605 ID(mov); DM(None, IMMU(2)); DB(bit); SC(0);
3630 ID(mov); DM(None, SFR); DB(bit); SCY();
3658 ID(mov); DM(None, op0); DB(bit); SC(1);
3686 ID(mov); DM(None, op0); DB(bit); SC(0)
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
rl78-decode.c 122 #define DB(b) set_bit (rl78->op, b)
123 #define DCY() DR(PSW); DB(0)
3392 ID(mov); DM(None, IMMU(2)); DB(bit); SC(1);
3417 ID(mov); DM(None, SADDR); DB(bit); SCY();
3442 ID(mov); DM(None, SADDR); DB(bit); SC(1);
3469 ID(mov); DM(None, SADDR); DB(bit); SC(0);
3605 ID(mov); DM(None, IMMU(2)); DB(bit); SC(0);
3630 ID(mov); DM(None, SFR); DB(bit); SCY();
3658 ID(mov); DM(None, op0); DB(bit); SC(1);
3686 ID(mov); DM(None, op0); DB(bit); SC(0)
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
rl78-decode.c 122 #define DB(b) set_bit (rl78->op, b)
123 #define DCY() DR(PSW); DB(0)
3392 ID(mov); DM(None, IMMU(2)); DB(bit); SC(1);
3417 ID(mov); DM(None, SADDR); DB(bit); SCY();
3442 ID(mov); DM(None, SADDR); DB(bit); SC(1);
3469 ID(mov); DM(None, SADDR); DB(bit); SC(0);
3605 ID(mov); DM(None, IMMU(2)); DB(bit); SC(0);
3630 ID(mov); DM(None, SFR); DB(bit); SCY();
3658 ID(mov); DM(None, op0); DB(bit); SC(1);
3686 ID(mov); DM(None, op0); DB(bit); SC(0)
    [all...]
  /src/external/gpl3/gdb.old/dist/opcodes/
rl78-decode.c 122 #define DB(b) set_bit (rl78->op, b)
123 #define DCY() DR(PSW); DB(0)
3392 ID(mov); DM(None, IMMU(2)); DB(bit); SC(1);
3417 ID(mov); DM(None, SADDR); DB(bit); SCY();
3442 ID(mov); DM(None, SADDR); DB(bit); SC(1);
3469 ID(mov); DM(None, SADDR); DB(bit); SC(0);
3605 ID(mov); DM(None, IMMU(2)); DB(bit); SC(0);
3630 ID(mov); DM(None, SFR); DB(bit); SCY();
3658 ID(mov); DM(None, op0); DB(bit); SC(1);
3686 ID(mov); DM(None, op0); DB(bit); SC(0)
    [all...]
  /src/include/
db.h 1 /* $NetBSD: db.h,v 1.27 2016/09/24 20:11:43 christos Exp $ */
31 * @(#)db.h 8.7 (Berkeley) 6/16/94
116 DBTYPE type; /* Underlying db type. */
125 } DB;
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 *);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPMacroExpansion.cpp 936 DiagnosticBuilder DB =
940 DB << Range;
947 DiagnosticBuilder DB = Diag(MacroName, diag::note_suggest_parens_for_macro);
949 DB << FixItHint::CreateInsertion(ParenLocation.getBegin(), "(");
950 DB << FixItHint::CreateInsertion(ParenLocation.getEnd(), ")");
  /src/external/bsd/nvi/dist/common/
vi_db.h 3 #include <db.h>
21 #define db_open(db,file,type,flags,mode) \
22 (db)->open(db, file, NULL, type, flags, mode)
23 #define db_get_low(db,key,data,flags) \
24 (db)->get(db, key, data, flags)
25 #define db_close(db) \
26 (db)->close(db)
168 DB *db; member in struct:__dbc_new
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 440 auto DB = Diag(AlignPackStack.CurrentPragmaLocation,
447 DB << FixItHint::CreateInsertion(FixItLoc, "pop");

Completed in 49 milliseconds

1 2