Home
last modified time | relevance | path

Searched refs:Acc (Results 1 – 25 of 30) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DtailRecursiveConditionalTypes.js11 type GetCharsRec<S, Acc> =
12 S extends `${infer Char}${infer Rest}` ? GetCharsRec<Rest, Char | Acc> : Acc;
17 type ReverseRec<T, Acc extends unknown[]> =
18 T extends [infer Head, ...infer Tail] ? ReverseRec<Tail, [Head, ...Acc]> : Acc;
24 type TupleOfRec<T, N extends number, Acc extends unknown[]> =
25 Acc["length"] extends N ? Acc : TupleOfRec<T, N, [T, ...Acc]>;
40 type GetCharsRec<S, Acc> = S extends `${infer Char}${infer Rest}` ? GetCharsRec<Rest, Char | Acc> :…
43 type ReverseRec<T, Acc extends unknown[]> = T extends [infer Head, ...infer Tail] ? ReverseRec<Tail…
47 …e TupleOfRec<T, N extends number, Acc extends unknown[]> = Acc["length"] extends N ? Acc : TupleOf…
DtailRecursiveConditionalTypes.symbols35 type GetCharsRec<S, Acc> =
38 >Acc : Symbol(Acc, Decl(tailRecursiveConditionalTypes.ts, 9, 19))
40 S extends `${infer Char}${infer Rest}` ? GetCharsRec<Rest, Char | Acc> : Acc;
47 >Acc : Symbol(Acc, Decl(tailRecursiveConditionalTypes.ts, 9, 19))
48 >Acc : Symbol(Acc, Decl(tailRecursiveConditionalTypes.ts, 9, 19))
62 type ReverseRec<T, Acc extends unknown[]> =
65 >Acc : Symbol(Acc, Decl(tailRecursiveConditionalTypes.ts, 15, 18))
67 T extends [infer Head, ...infer Tail] ? ReverseRec<Tail, [Head, ...Acc]> : Acc;
74 >Acc : Symbol(Acc, Decl(tailRecursiveConditionalTypes.ts, 15, 18))
75 >Acc : Symbol(Acc, Decl(tailRecursiveConditionalTypes.ts, 15, 18))
[all …]
DmoduleDeclarationExportStarShadowingGlobalIsNameable.symbols18 export { Account2 as Acc };
20 >Acc : Symbol(Acc, Decl(account.ts, 6, 8))
32 interface Acc {
33 >Acc : Symbol(Acc, Decl(index.ts, 3, 5))
36 >someProp : Symbol(Acc.someProp, Decl(index.ts, 4, 19))
42 export const func = (account: model.Account, acc2: model.Acc) => {};
49 >Acc : Symbol(model.Acc, Decl(account.ts, 6, 8))
DmoduleDeclarationExportStarShadowingGlobalIsNameable.types14 export { Account2 as Acc };
16 >Acc : any
26 interface Acc {
34 export const func = (account: model.Account, acc2: model.Acc) => {};
35 >func : (account: model.Account, acc2: model.Acc) => void
36 >(account: model.Account, acc2: model.Acc) => {} : (account: model.Account, acc2: model.Acc) => void
39 >acc2 : model.Acc
DtailRecursiveConditionalTypes.types18 type GetCharsRec<S, Acc> =
19 >GetCharsRec : GetCharsRec<S, Acc>
21 S extends `${infer Char}${infer Rest}` ? GetCharsRec<Rest, Char | Acc> : Acc;
29 type ReverseRec<T, Acc extends unknown[]> =
30 >ReverseRec : ReverseRec<T, Acc>
32 T extends [infer Head, ...infer Tail] ? ReverseRec<Tail, [Head, ...Acc]> : Acc;
43 type TupleOfRec<T, N extends number, Acc extends unknown[]> =
44 >TupleOfRec : TupleOfRec<T, N, Acc>
46 Acc["length"] extends N ? Acc : TupleOfRec<T, N, [T, ...Acc]>;
DmoduleDeclarationExportStarShadowingGlobalIsNameable.js13 export { Account2 as Acc };
20 interface Acc {
25 export const func = (account: model.Account, acc2: model.Acc) => {}; argument
64 export { Account2 as Acc };
72 interface Acc {
77 export declare const func: (account: model.Account, acc2: model.Acc) => void;
/third_party/typescript/tests/cases/compiler/
DtailRecursiveConditionalTypes.ts13 type GetCharsRec<S, Acc> =
14 S extends `${infer Char}${infer Rest}` ? GetCharsRec<Rest, Char | Acc> : Acc;
19 type ReverseRec<T, Acc extends unknown[]> =
20 T extends [infer Head, ...infer Tail] ? ReverseRec<Tail, [Head, ...Acc]> : Acc;
26 type TupleOfRec<T, N extends number, Acc extends unknown[]> =
27 Acc["length"] extends N ? Acc : TupleOfRec<T, N, [T, ...Acc]>;
DmoduleDeclarationExportStarShadowingGlobalIsNameable.ts12 export { Account2 as Acc };
19 interface Acc { interface
24 export const func = (account: model.Account, acc2: model.Acc) => {};
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Dxxhash.cpp57 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMParallelDSP.cpp86 Value *Acc = nullptr; member in __anon1db754740111::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/ts_extra_tests/test_ts_cases/4.5/tail_recursion_elimination_on_conditional_types/
Dtail_recursion_elimination_on_conditional_types2.ts34 type RunObtainHelper<S, Acc> = S extends `${infer Char}${infer Rest}`
35 ? RunObtainHelper<Rest, Char | Acc>
36 : Acc;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonStoreWidening.cpp400 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()
DHexagonConstPropagation.cpp2987 MachineOperand &Acc = MI.getOperand(1); in rewriteHexConstUses() local
2988 RegisterSubReg R1(Acc); in rewriteHexConstUses()
2995 .addReg(R1.Reg, getRegState(Acc), R1.SubReg); in rewriteHexConstUses()
DHexagonConstExtenders.cpp1379 [](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/
DExpandReductions.cpp123 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/rust/crates/either/src/
Dlib.rs949 fn fold<Acc, G>(self, init: Acc, f: G) -> Acc in fold() argument
951 G: FnMut(Acc, Self::Item) -> Acc, in fold() argument
1040 fn rfold<Acc, G>(self, init: Acc, f: G) -> Acc in rfold() argument
1042 G: FnMut(Acc, Self::Item) -> Acc, in rfold() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DLegalizerInfo.cpp702 [](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/
DMemorySSAUpdater.cpp586 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/
DIRBuilder.cpp329 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/
DLoopUtils.h303 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/
DGVNHoist.cpp387 const MemorySSA::AccessList *Acc = MSSA->getBlockAccesses(BB); in hasMemoryUse() local
388 if (!Acc) in hasMemoryUse()
396 for (const MemoryAccess &MA : *Acc) in hasMemoryUse()
DLICM.cpp1071 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/
DIceTargetLoweringARM32.h415 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/
DLoopUtils.cpp801 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/
DMemorySanitizer.cpp2966 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()

12