/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | xxhash.cpp | 57 static uint64_t round(uint64_t Acc, uint64_t Input) { in round() argument 58 Acc += Input * PRIME64_2; in round() 59 Acc = rotl64(Acc, 31); in round() 60 Acc *= PRIME64_1; in round() 61 return Acc; in round() 64 static uint64_t mergeRound(uint64_t Acc, uint64_t Val) { in mergeRound() argument 66 Acc ^= Val; in mergeRound() 67 Acc = Acc * PRIME64_1 + PRIME64_4; in mergeRound() 68 return Acc; in mergeRound()
|
/third_party/typescript/tests/baselines/reference/ |
D | moduleDeclarationExportStarShadowingGlobalIsNameable.symbols | 17 export { Account2 as Acc }; 19 >Acc : Symbol(Acc, Decl(account.ts, 6, 8)) 31 interface Acc { 32 >Acc : Symbol(Acc, Decl(index.ts, 3, 5)) 35 >someProp : Symbol(Acc.someProp, Decl(index.ts, 4, 19)) 41 export const func = (account: model.Account, acc2: model.Acc) => {}; 48 >Acc : Symbol(model.Acc, Decl(account.ts, 6, 8))
|
D | moduleDeclarationExportStarShadowingGlobalIsNameable.types | 13 export { Account2 as Acc }; 15 >Acc : any 25 interface Acc { 33 export const func = (account: model.Account, acc2: model.Acc) => {}; 34 >func : (account: model.Account, acc2: model.Acc) => void 35 >(account: model.Account, acc2: model.Acc) => {} : (account: model.Account, acc2: model.Acc) => void 38 >acc2 : model.Acc
|
D | moduleDeclarationExportStarShadowingGlobalIsNameable.js | 13 export { Account2 as Acc }; 20 interface Acc { 25 export const func = (account: model.Account, acc2: model.Acc) => {}; argument 60 export { Account2 as Acc }; 68 interface Acc { 73 export declare const func: (account: model.Account, acc2: model.Acc) => void;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMParallelDSP.cpp | 86 Value *Acc = nullptr; member in __anonfa5aa6930111::Reduction 121 if (Add == Acc) in InsertMuls() 134 if (Acc) in InsertAcc() 136 Acc = V; in InsertAcc() 166 Value *getAccumulator() { return Acc; } in getAccumulator() 192 LLVM_DEBUG(if (Acc) dbgs() << "Acc in: " << *Acc << "\n") in dump() 629 Value *Acc, bool Exchange, in InsertParallelMACs() 633 Value* Args[] = { WideLd0, WideLd1, Acc }; in InsertParallelMACs() 636 SMLAD = Acc->getType()->isIntegerTy(32) ? in InsertParallelMACs() 640 SMLAD = Acc->getType()->isIntegerTy(32) ? in InsertParallelMACs() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | moduleDeclarationExportStarShadowingGlobalIsNameable.ts | 12 export { Account2 as Acc }; 19 interface Acc { interface 24 export const func = (account: model.Account, acc2: model.Acc) => {};
|
/third_party/boost/boost/sort/common/ |
D | int_array.hpp | 46 uint64_t Acc = M[0]; in counter() local 47 for (uint32_t i = 1; i < NN; Acc += M[i++]) in counter() 49 return Acc; in counter()
|
/third_party/boost/libs/metaparse/example/meta_hs/ |
D | except_keywords.hpp | 29 template <class Acc, class Keyword> 32 Acc,
|
/third_party/boost/libs/metaparse/example/binary_number/ |
D | main.cpp | 41 template <class Acc, class B> 42 struct apply : plus<times<Acc, int_<2> >, B> {};
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonStoreWidening.cpp | 400 unsigned Acc = 0; // Value accumulator. in createWideStores() local 412 Acc |= Val; in createWideStores() 424 if (Acc < 0x10000) { in createWideStores() 430 int Val = (TotalSize == 2) ? int16_t(Acc) : int(Acc); in createWideStores() 447 .addImm(int(Acc)); in createWideStores()
|
D | HexagonConstPropagation.cpp | 2987 MachineOperand &Acc = MI.getOperand(1); in rewriteHexConstUses() local 2988 RegisterSubReg R1(Acc); in rewriteHexConstUses() 2995 .addReg(R1.Reg, getRegState(Acc), R1.SubReg); in rewriteHexConstUses()
|
D | HexagonConstExtenders.cpp | 1379 [](unsigned Acc, const RangeTree::Node *N) { in assignInits() argument 1380 return Acc + N->Count; in assignInits()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ExpandReductions.cpp | 123 Value *Acc = II->getArgOperand(0); in expandReductions() local 126 Rdx = getOrderedReduction(Builder, Acc, Vec, getOpcode(ID), MRK); in expandReductions() 133 Acc, Rdx, "bin.rdx"); in expandReductions()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | LegalizerInfo.cpp | 702 [](unsigned Acc, const MCOperandInfo &OpInfo) { in verify() argument 704 ? std::max(OpInfo.getGenericTypeIndex() + 1U, Acc) in verify() 705 : Acc; in verify() 709 [](unsigned Acc, const MCOperandInfo &OpInfo) { in verify() argument 711 ? std::max(OpInfo.getGenericImmIndex() + 1U, Acc) in verify() 712 : Acc; in verify()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | MemorySSAUpdater.cpp | 586 const MemorySSA::AccessList *Acc = MSSA->getBlockAccesses(BB); in cloneUsesAndDefs() local 587 if (!Acc) in cloneUsesAndDefs() 589 for (const MemoryAccess &MA : *Acc) { in cloneUsesAndDefs() 1358 if (MemorySSA::AccessList *Acc = MSSA->getWritableBlockAccesses(BB)) in removeBlocks() local 1359 for (MemoryAccess &MA : *Acc) in removeBlocks() 1365 MemorySSA::AccessList *Acc = MSSA->getWritableBlockAccesses(BB); in removeBlocks() local 1366 if (!Acc) in removeBlocks() 1368 for (auto AB = Acc->begin(), AE = Acc->end(); AB != AE;) { in removeBlocks()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | IRBuilder.cpp | 329 CallInst *IRBuilderBase::CreateFAddReduce(Value *Acc, Value *Src) { in CreateFAddReduce() argument 331 Value *Ops[] = {Acc, Src}; in CreateFAddReduce() 332 Type *Tys[] = {Acc->getType(), Src->getType()}; in CreateFAddReduce() 338 CallInst *IRBuilderBase::CreateFMulReduce(Value *Acc, Value *Src) { in CreateFMulReduce() argument 340 Value *Ops[] = {Acc, Src}; in CreateFMulReduce() 341 Type *Tys[] = {Acc->getType(), Src->getType()}; in CreateFMulReduce()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | LoopUtils.h | 303 getOrderedReduction(IRBuilder<> &Builder, Value *Acc, Value *Src, unsigned Op,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | GVNHoist.cpp | 387 const MemorySSA::AccessList *Acc = MSSA->getBlockAccesses(BB); in hasMemoryUse() local 388 if (!Acc) in hasMemoryUse() 396 for (const MemoryAccess &MA : *Acc) in hasMemoryUse()
|
D | LICM.cpp | 1071 for (const auto &Acc : *Accs) { in isOnlyMemoryAccess() 1072 if (isa<MemoryPhi>(&Acc)) in isOnlyMemoryAccess() 1074 const auto *MUD = cast<MemoryUseOrDef>(&Acc); in isOnlyMemoryAccess()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringARM32.h | 415 void _mla(Variable *Dest, Variable *Src0, Variable *Src1, Variable *Acc, 417 Context.insert<InstARM32Mla>(Dest, Src0, Src1, Acc, Pred); 419 void _mls(Variable *Dest, Variable *Src0, Variable *Src1, Variable *Acc, 421 Context.insert<InstARM32Mls>(Dest, Src0, Src1, Acc, Pred);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 801 llvm::getOrderedReduction(IRBuilder<> &Builder, Value *Acc, Value *Src, in getOrderedReduction() argument 809 Value *Result = Acc; in getOrderedReduction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 2966 Value *Acc = IRB.CreateExtractElement( in handleMaskedLoad() local 2972 Acc = IRB.CreateOr(Acc, More); in handleMaskedLoad() 2976 IRB.CreateICmpNE(Acc, Constant::getNullValue(Acc->getType())), in handleMaskedLoad()
|
/third_party/boost/libs/accumulators/doc/ |
D | accumulators.qbk | 987 In the following table, `Acc` is the type of an accumulator, `acc` and `acc2` are objects of type 988 `Acc`, and `args` is the name of an argument pack from the _parameter_ library. 993 [[`Acc::result_type`] [['implementation 994 defined]] [The type returned by `Acc::result()`.]] 995 [[`Acc acc(args)`] [none] [Construct from an argument pack.]] 996 [[`Acc acc(acc2)`] [none] [Post: `acc.result(args)` is equivalent 1000 [[`acc.result(args)`] [`Acc::result_type`] []]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | IRBuilder.h | 657 CallInst *CreateFAddReduce(Value *Acc, Value *Src); 661 CallInst *CreateFMulReduce(Value *Acc, Value *Src);
|
/third_party/gstreamer/gstreamer/po/ |
D | fr.po | 216 msgstr "Accès à la ressource interdit."
|