/third_party/ffmpeg/libavutil/ |
D | cast5.c | 32 #define IC(x) (((x) >> 8) & 0xff) macro 40 … f = ((S1[IA(I)] + S2[IB(I)]) ^ S3[IC(I)]) - S4[ID(I)]; \ 47 … f = ((S1[IA(I)] - S2[IB(I)]) + S3[IC(I)]) ^ S4[ID(I)]; \ 54 … f = ((S1[IA(I)] ^ S2[IB(I)]) - S3[IC(I)]) + S4[ID(I)]; \ 60 … z[0] = x[0] ^ S5[IB(x[3])] ^ S6[ID(x[3])] ^ S7[IA(x[3])] ^ S8[IC(x[3])] ^ S7[IA(x[2])]; \ 61 … z[1] = x[2] ^ S5[IA(z[0])] ^ S6[IC(z[0])] ^ S7[IB(z[0])] ^ S8[ID(z[0])] ^ S8[IC(x[2])]; \ 62 … z[2] = x[3] ^ S5[ID(z[1])] ^ S6[IC(z[1])] ^ S7[IB(z[1])] ^ S8[IA(z[1])] ^ S5[IB(x[2])]; \ 63 … z[3] = x[1] ^ S5[IC(z[2])] ^ S6[IB(z[2])] ^ S7[ID(z[2])] ^ S8[IA(z[2])] ^ S6[ID(x[2])]; \ 68 … x[0] = z[2] ^ S5[IB(z[1])] ^ S6[ID(z[1])] ^ S7[IA(z[1])] ^ S8[IC(z[1])] ^ S7[IA(z[0])]; \ 69 … x[1] = z[0] ^ S5[IA(x[0])] ^ S6[IC(x[0])] ^ S7[IB(x[0])] ^ S8[ID(x[0])] ^ S8[IC(z[0])]; \ [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | iterator.h | 261 template <typename VT, bool IC> 262 inline UptrVectorIterator<VT, IC>& UptrVectorIterator<VT, IC>::operator++() { 267 template <typename VT, bool IC> 268 inline UptrVectorIterator<VT, IC> UptrVectorIterator<VT, IC>::operator++(int) { 274 template <typename VT, bool IC> 275 inline UptrVectorIterator<VT, IC>& UptrVectorIterator<VT, IC>::operator--() { 280 template <typename VT, bool IC> 281 inline UptrVectorIterator<VT, IC> UptrVectorIterator<VT, IC>::operator--(int) { 287 template <typename VT, bool IC> 288 inline bool UptrVectorIterator<VT, IC>::operator==( [all …]
|
/third_party/spirv-tools/source/opt/ |
D | iterator.h | 261 template <typename VT, bool IC> 262 inline UptrVectorIterator<VT, IC>& UptrVectorIterator<VT, IC>::operator++() { 267 template <typename VT, bool IC> 268 inline UptrVectorIterator<VT, IC> UptrVectorIterator<VT, IC>::operator++(int) { 274 template <typename VT, bool IC> 275 inline UptrVectorIterator<VT, IC>& UptrVectorIterator<VT, IC>::operator--() { 280 template <typename VT, bool IC> 281 inline UptrVectorIterator<VT, IC> UptrVectorIterator<VT, IC>::operator--(int) { 287 template <typename VT, bool IC> 288 inline bool UptrVectorIterator<VT, IC>::operator==( [all …]
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | iterator.h | 261 template <typename VT, bool IC> 262 inline UptrVectorIterator<VT, IC>& UptrVectorIterator<VT, IC>::operator++() { 267 template <typename VT, bool IC> 268 inline UptrVectorIterator<VT, IC> UptrVectorIterator<VT, IC>::operator++(int) { 274 template <typename VT, bool IC> 275 inline UptrVectorIterator<VT, IC>& UptrVectorIterator<VT, IC>::operator--() { 280 template <typename VT, bool IC> 281 inline UptrVectorIterator<VT, IC> UptrVectorIterator<VT, IC>::operator--(int) { 287 template <typename VT, bool IC> 288 inline bool UptrVectorIterator<VT, IC>::operator==( [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 182 static Instruction *simplifyAllocaArraySize(InstCombiner &IC, AllocaInst &AI) { in simplifyAllocaArraySize() argument 190 Value *V = IC.Builder.getInt32(1); in simplifyAllocaArraySize() 199 AllocaInst *New = IC.Builder.CreateAlloca(NewTy, nullptr, AI.getName()); in simplifyAllocaArraySize() 212 Type *IdxTy = IC.getDataLayout().getIntPtrType(AI.getType()); in simplifyAllocaArraySize() 217 IC.InsertNewInstBefore(GEP, *It); in simplifyAllocaArraySize() 221 return IC.replaceInstUsesWith(AI, GEP); in simplifyAllocaArraySize() 226 return IC.replaceInstUsesWith(AI, Constant::getNullValue(AI.getType())); in simplifyAllocaArraySize() 230 Type *IntPtrTy = IC.getDataLayout().getIntPtrType(AI.getType()); in simplifyAllocaArraySize() 232 Value *V = IC.Builder.CreateIntCast(AI.getArraySize(), IntPtrTy, false); in simplifyAllocaArraySize() 253 PointerReplacer(InstCombiner &IC) : IC(IC) {} in PointerReplacer() argument [all …]
|
D | InstCombineCasts.cpp | 342 static bool canEvaluateTruncated(Value *V, Type *Ty, InstCombiner &IC, in canEvaluateTruncated() argument 359 return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI) && in canEvaluateTruncated() 360 canEvaluateTruncated(I->getOperand(1), Ty, IC, CxtI); in canEvaluateTruncated() 369 if (IC.MaskedValueIsZero(I->getOperand(0), Mask, 0, CxtI) && in canEvaluateTruncated() 370 IC.MaskedValueIsZero(I->getOperand(1), Mask, 0, CxtI)) { in canEvaluateTruncated() 371 return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI) && in canEvaluateTruncated() 372 canEvaluateTruncated(I->getOperand(1), Ty, IC, CxtI); in canEvaluateTruncated() 383 return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI); in canEvaluateTruncated() 396 IC.MaskedValueIsZero(I->getOperand(0), in canEvaluateTruncated() 398 return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI); in canEvaluateTruncated() [all …]
|
D | InstCombineShifts.cpp | 424 Instruction *InnerShift, InstCombiner &IC, in canEvaluateShiftedShift() argument 458 if (IC.MaskedValueIsZero(InnerShift->getOperand(0), Mask, 0, CxtI)) in canEvaluateShiftedShift() 476 InstCombiner &IC, Instruction *CxtI) { in canEvaluateShifted() argument 519 return canEvaluateShifted(I->getOperand(0), NumBits, IsLeftShift, IC, I) && in canEvaluateShifted() 520 canEvaluateShifted(I->getOperand(1), NumBits, IsLeftShift, IC, I); in canEvaluateShifted() 524 return canEvaluateShiftedShift(NumBits, IsLeftShift, I, IC, CxtI); in canEvaluateShifted() 530 return canEvaluateShifted(TrueVal, NumBits, IsLeftShift, IC, SI) && in canEvaluateShifted() 531 canEvaluateShifted(FalseVal, NumBits, IsLeftShift, IC, SI); in canEvaluateShifted() 539 if (!canEvaluateShifted(IncValue, NumBits, IsLeftShift, IC, PN)) in canEvaluateShifted() 612 InstCombiner &IC, const DataLayout &DL) { in getShiftedValue() argument [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | classAbstractMergedDeclaration.js | 11 interface IC {} 12 abstract class IC {} 35 new IC; 59 var IC = /** @class */ (function () { class 60 function IC() { class in IC 62 return IC; 87 new IC;
|
D | classAbstractMergedDeclaration.types | 16 interface IC {} 17 abstract class IC {} 18 >IC : IC 65 new IC; 66 >new IC : any 67 >IC : typeof IC
|
D | classAbstractMergedDeclaration.symbols | 20 interface IC {} 21 >IC : Symbol(IC, Decl(classAbstractMergedDeclaration.ts, 7, 15), Decl(classAbstractMergedDeclaratio… 23 abstract class IC {} 24 >IC : Symbol(IC, Decl(classAbstractMergedDeclaration.ts, 7, 15), Decl(classAbstractMergedDeclaratio… 71 new IC; 72 >IC : Symbol(IC, Decl(classAbstractMergedDeclaration.ts, 7, 15), Decl(classAbstractMergedDeclaratio…
|
D | genericTypeWithMultipleBases3.types | 18 interface IC<T> extends IA<T>, IB<T> { } 20 var c: IC<number>; 21 >c : IC<number> 26 >c : IC<number> 32 >c : IC<number>
|
D | genericTypeWithMultipleBases3.symbols | 26 interface IC<T> extends IA<T>, IB<T> { } 27 >IC : Symbol(IC, Decl(genericTypeWithMultipleBases3.ts, 10, 1)) 34 var c: IC<number>; 36 >IC : Symbol(IC, Decl(genericTypeWithMultipleBases3.ts, 10, 1))
|
D | genericTypeWithMultipleBases3.js | 14 interface IC<T> extends IA<T>, IB<T> { } 16 var c: IC<number>;
|
D | classAbstractMergedDeclaration.errors.txt | 29 interface IC {} 30 abstract class IC {} 75 new IC;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | Inliner.cpp | 307 shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC, in shouldBeDeferred() argument 316 if (IC.getCost() <= 0) in shouldBeDeferred() 336 int CandidateCost = IC.getCost() - 1; in shouldBeDeferred() 346 if (!ApplyLastCallBonus && TotalSecondaryCost >= IC.getCost()) in shouldBeDeferred() 382 if (inliningPreventsSomeOuterInline && TotalSecondaryCost < IC.getCost()) in shouldBeDeferred() 394 RemarkT &operator<<(RemarkT &&R, const InlineCost &IC) { in operator <<() argument 396 if (IC.isAlways()) { in operator <<() 398 } else if (IC.isNever()) { in operator <<() 401 R << "(cost=" << ore::NV("Cost", IC.getCost()) in operator <<() 402 << ", threshold=" << ore::NV("Threshold", IC.getThreshold()) << ")"; in operator <<() [all …]
|
D | PartialInlining.cpp | 780 InlineCost IC = getInlineCost(cast<CallBase>(*Call), getInlineParams(), in shouldPartialInline() local 784 if (IC.isAlways()) { in shouldPartialInline() 793 if (IC.isNever()) { in shouldPartialInline() 803 if (!IC) { in shouldPartialInline() 808 << NV("Cost", IC.getCost()) << ", threshold=" in shouldPartialInline() 809 << NV("Threshold", IC.getCostDelta() + IC.getCost()) << ")"; in shouldPartialInline() 839 << NV("Caller", Caller) << " with cost=" << NV("Cost", IC.getCost()) in shouldPartialInline() 841 << NV("Threshold", IC.getCostDelta() + IC.getCost()) << ")"; in shouldPartialInline()
|
/third_party/node/deps/v8/src/ic/ |
D | ic.h | 27 class IC { 34 IC(Isolate* isolate, Handle<FeedbackVector> vector, FeedbackSlot slot, 36 virtual ~IC() = default; 85 bool ConfigureVectorState(IC::State new_state, Handle<Object> key); 97 char TransitionMarkFromState(IC::State state); 178 DISALLOW_IMPLICIT_CONSTRUCTORS(IC); 181 class LoadIC : public IC { 185 : IC(isolate, vector, slot, kind) { in LoadIC() 210 friend class IC; variable 242 friend class IC; [all …]
|
D | ic-inl.h | 19 void IC::update_lookup_start_object_map(Handle<Object> object) { in update_lookup_start_object_map() 28 bool IC::IsHandler(MaybeObject object) { in IsHandler() 37 bool IC::vector_needs_update() { in vector_needs_update()
|
D | ic.cc | 66 char IC::TransitionMarkFromState(IC::State state) { in TransitionMarkFromState() 111 void IC::TraceIC(const char* type, Handle<Object> name) { in TraceIC() 118 void IC::TraceIC(const char* type, Handle<Object> name, State old_state, in TraceIC() 193 IC::IC(Isolate* isolate, Handle<FeedbackVector> vector, FeedbackSlot slot, in IC() function in v8::internal::IC 241 bool IC::ShouldRecomputeHandler(Handle<String> name) { in ShouldRecomputeHandler() 269 bool IC::RecomputeHandlerForName(Handle<Object> name) { in RecomputeHandlerForName() 280 void IC::UpdateState(Handle<Object> lookup_start_object, Handle<Object> name) { in UpdateState() 295 MaybeHandle<Object> IC::TypeError(MessageTemplate index, Handle<Object> object, in TypeError() 301 MaybeHandle<Object> IC::ReferenceError(Handle<Name> name) { in ReferenceError() 307 void IC::OnFeedbackChanged(const char* reason) { in OnFeedbackChanged() [all …]
|
/third_party/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/ |
D | classAbstractMergedDeclaration.ts | 10 interface IC {} interface 11 abstract class IC {} class 34 new IC;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | GuardWidening.cpp | 595 auto *IC = dyn_cast<ICmpInst>(CheckCond); in parseRangeChecks() local 596 if (!IC || !IC->getOperand(0)->getType()->isIntegerTy() || in parseRangeChecks() 597 (IC->getPredicate() != ICmpInst::ICMP_ULT && in parseRangeChecks() 598 IC->getPredicate() != ICmpInst::ICMP_UGT)) in parseRangeChecks() 601 const Value *CmpLHS = IC->getOperand(0), *CmpRHS = IC->getOperand(1); in parseRangeChecks() 602 if (IC->getPredicate() == ICmpInst::ICMP_UGT) in parseRangeChecks() 605 auto &DL = IC->getModule()->getDataLayout(); in parseRangeChecks() 609 CmpRHS, IC); in parseRangeChecks()
|
D | LoopSink.cpp | 230 Instruction *IC = I.clone(); in sinkInstruction() local 231 IC->setName(I.getName()); in sinkInstruction() 232 IC->insertBefore(&*N->getFirstInsertionPt()); in sinkInstruction() 234 I.replaceUsesWithIf(IC, [N](Use &U) { in sinkInstruction() 238 replaceDominatedUsesWith(&I, IC, DT, N); in sinkInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUInline.cpp | 217 auto IC = llvm::getInlineCost(cast<CallBase>(*CS.getInstruction()), Callee, in getInlineCost() local 221 if (IC && !IC.isAlways() && !Callee->hasFnAttribute(Attribute::InlineHint)) { in getInlineCost() 227 return IC; in getInlineCost()
|
/third_party/typescript/tests/cases/compiler/ |
D | genericTypeWithMultipleBases3.ts | 13 interface IC<T> extends IA<T>, IB<T> { } interface 15 var c: IC<number>;
|
/third_party/zlib/old/ |
D | Makefile.riscos | 6 CCflags = -c -depend !Depend -IC: -g -throwback -DRISCOS -fah 7 C++flags = -c -depend !Depend -IC: -throwback
|