/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | BDCE.cpp | 40 static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) { in clearAssumptionsOfUsers() argument 52 !DB.getDemandedBits(J).isAllOnesValue()) { in clearAssumptionsOfUsers() 83 !DB.getDemandedBits(K).isAllOnesValue()) in clearAssumptionsOfUsers() 89 static bool bitTrackingDCE(Function &F, DemandedBits &DB) { in bitTrackingDCE() argument 101 if (DB.isInstructionDead(&I) || in bitTrackingDCE() 103 DB.getDemandedBits(&I).isNullValue() && in bitTrackingDCE() 120 if (!DB.isUseDead(&U)) in bitTrackingDCE() 125 clearAssumptionsOfUsers(&I, DB); in bitTrackingDCE() 145 auto &DB = AM.getResult<DemandedBitsAnalysis>(F); in run() local 146 if (!bitTrackingDCE(F, DB)) in run() [all...] |
/third_party/lame/libmp3lame/i386/ |
H A D | nasm.h | 227 times (1 & ge2(($$-%%here) & 15) & ~ge3(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 08Bh,0C0h 228 times (1 & ge3(($$-%%here) & 15) & ~ge4(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 08Dh,004h,020h 229 times (1 & ge4(($$-%%here) & 15) & ~ge5(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 08Dh,044h,020h,000h 230 times (1 & ge5(($$-%%here) & 15) & ~ge6(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 08Dh,044h,020h,000h,090h 231 times (1 & ge6(($$-%%here) & 15) & ~ge7(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 08Dh,080h,0,0,0,0 232 times (1 & ge7(($$-%%here) & 15) & ~ge8(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 08Dh,004h,005h,0,0,0,0 233 times (1 & ge8(($$-%%here) & 15) & ~ge9(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 08Dh,004h,005h,0,0,0,0,90h 234 times (1 & ge9(($$-%%here) & 15) & ~ge10(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 0EBh,007h,90h,90h,90h,90h,90h,90h,90h 235 times (1 & ge10(($$-%%here) & 15) & ~ge11(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB 0EBh,008h,90h,90h,90h,90h,90h,90h,90h,90h 236 times (1 & ge11(($$-%%here) & 15) & ~ge12(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) DB [all...] |
/third_party/node/deps/openssl/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() [all...] |
/third_party/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() [all...] |
/third_party/node/deps/npm/node_modules/jsbn/ |
H A D | index.js | 86 BigInteger.prototype.DB = dbits; 153 else if(sh+k > this.DB) { 154 this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<<sh; 155 this[this.t++] = (x>>(this.DB-sh)); 160 if(sh >= this.DB) sh -= this.DB; 164 if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)<<sh; 187 var p = this.DB-(i*this.DB)%k; 189 if(p < this.DB [all...] |
/third_party/optimized-routines/math/ |
H A D | erf.c | 18 #define DB __erf_data.erf_ratio_D_B macro 95 r1d = fma (a, DB[0], 1.0); in erf() 99 r2d = fma (a, DB[2], DB[1]); in erf() 101 r3d = fma (a, DB[4], DB[3]); in erf() 103 r4d = DB[5]; in erf()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | IVDescriptors.cpp | 112 DemandedBits *DB, in computeRecurrenceType() 119 if (DB) { in computeRecurrenceType() 125 auto Mask = DB->getDemandedBits(Exit); in computeRecurrenceType() 192 DemandedBits *DB, in AddReductionVar() 426 computeRecurrenceType(ExitInstruction, DB, AC, DT); in AddReductionVar() 612 DemandedBits *DB, AssumptionCache *AC, in isReductionPHI() 620 if (AddReductionVar(Phi, RK_IntegerAdd, TheLoop, HasFunNoNaNAttr, RedDes, DB, in isReductionPHI() 625 if (AddReductionVar(Phi, RK_IntegerMult, TheLoop, HasFunNoNaNAttr, RedDes, DB, in isReductionPHI() 630 if (AddReductionVar(Phi, RK_IntegerOr, TheLoop, HasFunNoNaNAttr, RedDes, DB, in isReductionPHI() 635 if (AddReductionVar(Phi, RK_IntegerAnd, TheLoop, HasFunNoNaNAttr, RedDes, DB, in isReductionPHI() 111 computeRecurrenceType(Instruction *Exit, DemandedBits *DB, AssumptionCache *AC, DominatorTree *DT) computeRecurrenceType() argument 189 AddReductionVar(PHINode *Phi, RecurrenceKind Kind, Loop *TheLoop, bool HasFunNoNaNAttr, RecurrenceDescriptor &RedDes, DemandedBits *DB, AssumptionCache *AC, DominatorTree *DT) AddReductionVar() argument 610 isReductionPHI(PHINode *Phi, Loop *TheLoop, RecurrenceDescriptor &RedDes, DemandedBits *DB, AssumptionCache *AC, DominatorTree *DT) isReductionPHI() argument [all...] |
H A D | OrderedInstructions.cpp | 48 DomTreeNode *DB = DT->getNode(InstB->getParent()); in dfsBefore() local 49 return DA->getDFSNumIn() < DB->getDFSNumIn(); in dfsBefore()
|
H A D | DemandedBits.cpp | 78 DB->print(OS); in print() 299 DB.emplace(F, AC, DT); in runOnFunction() 304 DB.reset(); in releaseMemory()
|
H A D | VectorUtils.cpp | 369 llvm::computeMinimumValueSizes(ArrayRef<BasicBlock *> Blocks, DemandedBits &DB, in computeMinimumValueSizes() argument 426 if (DB.getDemandedBits(I).getBitWidth() > 64) in computeMinimumValueSizes() 429 uint64_t V = DB.getDemandedBits(I).getZExtValue(); in computeMinimumValueSizes()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Vectorize/ |
H A D | LoopVectorizationLegality.h | 204 LoopVectorizationRequirements *R, LoopVectorizeHints *H, DemandedBits *DB, in LoopVectorizationLegality() 207 GetLAA(GetLAA), ORE(ORE), Requirements(R), Hints(H), DB(DB), AC(AC) {} in LoopVectorizationLegality() 462 DemandedBits *DB; member in llvm::LoopVectorizationLegality 199 LoopVectorizationLegality( Loop *L, PredicatedScalarEvolution &PSE, DominatorTree *DT, TargetTransformInfo *TTI, TargetLibraryInfo *TLI, AliasAnalysis *AA, Function *F, std::function<const LoopAccessInfo &(Loop &)> *GetLAA, LoopInfo *LI, OptimizationRemarkEmitter *ORE, LoopVectorizationRequirements *R, LoopVectorizeHints *H, DemandedBits *DB, AssumptionCache *AC) LoopVectorizationLegality() argument
|
H A D | LoopVectorize.h | 139 DemandedBits *DB; member
|
H A D | SLPVectorizer.h | 73 DemandedBits *DB = nullptr; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DemandedBits.h | 87 mutable Optional<DemandedBits> DB; member in llvm::DemandedBitsWrapperPass 100 DemandedBits &getDemandedBits() { return *DB; } in getDemandedBits()
|
H A D | IVDescriptors.h | 167 /// RecurrenceDescriptor. If either \p DB is non-null or \p AC and \p DT are 173 DemandedBits *DB = nullptr, 178 /// is returned in RedDes. If either \p DB is non-null or \p AC and \p DT are 183 DemandedBits *DB = nullptr,
|
/third_party/elfutils/tests/ |
H A D | run-debuginfod-find.sh | 32 DB=${PWD}/.debuginfod_tmp.sqlite 33 tempfiles $DB 126 env LD_LIBRARY_PATH=$ldpath DEBUGINFOD_URLS= ${abs_builddir}/../debuginfod/debuginfod $VERBOSE -F -R -d $DB -p $PORT1 -t0 -g0 --fdcache-fds 1 --fdcache-mbs 2 --fdcache-mintmp 0 -Z .tar.xz -Z .tar.bz2=bzcat -v R F Z L > vlog$PORT1 2>&1 & 474 env LD_LIBRARY_PATH=$ldpath ${abs_builddir}/../debuginfod/debuginfod $VERBOSE -F -U -d ${DB}_2 -p $PORT2 -L L D > vlog$PORT2 2>&1 & 478 tempfiles ${DB}_2 586 ls -al $DB 587 dd if=/dev/zero of=$DB bs=1 count=1 588 ls -al $DB
|
/third_party/mksh/ |
H A D | tree.c | 953 #define DB(x) if (iop->ioflag & x) shf_puts("|" #x, shf); in dumpioact() macro 966 DB(IOEVAL) in dumpioact() 967 DB(IOSKIP) in dumpioact() 968 DB(IOCLOB) in dumpioact() 969 DB(IORDUP) in dumpioact() 970 DB(IONAMEXP) in dumpioact() 971 DB(IOBASH) in dumpioact() 972 DB(IOHERESTR) in dumpioact() 973 DB(IONDELIM) in dumpioact() 995 #undef DB in dumpioact() macro [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineOutliner.cpp | 1164 DIBuilder DB(M, true, CU); in createOutlinedFunction() 1172 DISubprogram *OutlinedSP = DB.createFunction( in createOutlinedFunction() 1176 DB.createSubroutineType(DB.getOrCreateTypeArray(None)), /* void type */ in createOutlinedFunction() 1183 DB.finalizeSubprogram(OutlinedSP); in createOutlinedFunction() 1188 DB.finalize(); in createOutlinedFunction()
|
/third_party/mesa3d/src/amd/common/ |
H A D | ac_perfcounter.h | 72 DB = 0xD, enumerator
|
H A D | ac_perfcounter.c | 146 .gpu_block = DB, 147 .name = "DB", 641 .gpu_block = DB, 642 .name = "DB", 1197 !strcmp(block->b->b->name, "DB") || in ac_init_perfcounters()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | sse-instr.h | 29 V(pand, 66, 0F, DB) \
|
/third_party/skia/infra/bots/task_drivers/canary/ |
H A D | canary.go | 72 // Instantiate firestore DB. 125 func waitForCanaryRoll(parentCtx context.Context, manualRollDB manual.DB, rollId, stepName string) error {
|
/third_party/mbedtls/library/ |
H A D | aes.c | 158 V(79, DE, DE, A7), V(E2, 5E, 5E, BC), V(1D, 0B, 0B, 16), V(76, DB, DB, AD), \ 159 V(3B, E0, E0, DB), V(56, 32, 32, 64), V(4E, 3A, 3A, 74), V(1E, 0A, 0A, 14), \ 160 V(DB, 49, 49, 92), V(0A, 06, 06, 0C), V(6C, 24, 24, 48), V(E4, 5C, 5C, B8), \ 269 V(BD, 42, E8, B0), V(88, 8B, 89, 07), V(38, 5B, 19, E7), V(DB, EE, C8, 79), \ 291 V(3B, 99, AC, C8), V(A7, 7D, 18, 10), V(6E, 63, 9C, E8), V(7B, BB, 3B, DB), \ 301 V(5A, 1D, 67, B3), V(52, D2, DB, 92), V(33, 56, 10, E9), V(13, 47, D6, 6D), \ 305 V(EA, CD, F7, 53), V(5B, AA, FD, 5F), V(14, 6F, 3D, DF), V(86, DB, 44, 78), \
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | sse-instr.h | 79 V(pand, 66, 0F, DB) \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | OrcRemoteTargetRPCAPI.h | 265 : public rpc::Function<WriteMem, void(remote::DirectBufferWriter DB)> {
|