/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | CallPromotionUtils.cpp | 161 static void createRetBitCast(CallSite CS, Type *RetTy, CastInst **RetBitCast) { in createRetBitCast() argument 166 for (User *U : CS.getInstruction()->users()) in createRetBitCast() 172 if (auto *Invoke = dyn_cast<InvokeInst>(CS.getInstruction())) in createRetBitCast() 176 InsertBefore = &*std::next(CS.getInstruction()->getIterator()); in createRetBitCast() 179 auto *Cast = CastInst::CreateBitOrPointerCast(CS.getInstruction(), RetTy, "", in createRetBitCast() 186 U->replaceUsesOfWith(CS.getInstruction(), Cast); in createRetBitCast() 256 static Instruction *versionCallSite(CallSite CS, Value *Callee, in versionCallSite() argument 259 IRBuilder<> Builder(CS.getInstruction()); in versionCallSite() 260 Instruction *OrigInst = CS.getInstruction(); in versionCallSite() 265 if (CS in versionCallSite() 319 isLegalToPromote(CallSite CS, Function *Callee, const char **FailureReason) isLegalToPromote() argument 365 promoteCall(CallSite CS, Function *Callee, CastInst **RetBitCast) promoteCall() argument 449 promoteCallWithIfThenElse(CallSite CS, Function *Callee, MDNode *BranchWeights) promoteCallWithIfThenElse() argument [all...] |
H A D | InlineFunction.cpp | 770 static void PropagateParallelLoopAccessMetadata(CallSite CS, in PropagateParallelLoopAccessMetadata() argument 773 CS.getInstruction()->getMetadata(LLVMContext::MD_mem_parallel_loop_access); in PropagateParallelLoopAccessMetadata() 775 CS.getInstruction()->getMetadata(LLVMContext::MD_access_group); in PropagateParallelLoopAccessMetadata() 813 static void CloneAliasScopeMetadata(CallSite CS, ValueToValueMapTy &VMap) { in CloneAliasScopeMetadata() argument 814 const Function *CalledFunc = CS.getCalledFunction(); in CloneAliasScopeMetadata() 890 CS.getInstruction()->getMetadata(LLVMContext::MD_alias_scope)) in CloneAliasScopeMetadata() 895 CS.getInstruction()->getMetadata(LLVMContext::MD_alias_scope)) in CloneAliasScopeMetadata() 905 CS.getInstruction()->getMetadata(LLVMContext::MD_noalias)) in CloneAliasScopeMetadata() 909 if (MDNode *M = CS.getInstruction()->getMetadata(LLVMContext::MD_noalias)) in CloneAliasScopeMetadata() 919 static void AddAliasScopeMetadata(CallSite CS, ValueToValueMapT argument 1141 AddAlignmentAssumptions(CallSite CS, InlineFunctionInfo &IFI) AddAlignmentAssumptions() argument 1179 UpdateCallGraphAfterInlining(CallSite CS, Function::iterator FirstNewBlock, ValueToValueMapTy &VMap, InlineFunctionInfo &IFI) UpdateCallGraphAfterInlining() argument 1560 InlineFunction(CallSite CS, InlineFunctionInfo &IFI, AAResults *CalleeAAR, bool InsertLifetime, Function *ForwardVarArgsTo) InlineFunction() argument [all...] |
H A D | CtorUtils.cpp | 72 ConstantStruct *CS = cast<ConstantStruct>(V); in parseGlobalCtors() local 73 Result.push_back(dyn_cast<Function>(CS->getOperand(1))); in parseGlobalCtors() 97 ConstantStruct *CS = cast<ConstantStruct>(V); in findGlobalCtors() local 98 if (isa<ConstantPointerNull>(CS->getOperand(1))) in findGlobalCtors() 102 if (!isa<Function>(CS->getOperand(1))) in findGlobalCtors() 106 ConstantInt *CI = cast<ConstantInt>(CS->getOperand(0)); in findGlobalCtors()
|
H A D | Evaluator.cpp | 269 Evaluator::getCalleeWithFormalArgs(CallSite &CS, in getCalleeWithFormalArgs() argument 271 auto *V = CS.getCalledValue(); in getCalleeWithFormalArgs() 273 return getFormalParams(CS, Fn, Formals) ? Fn : nullptr; in getCalleeWithFormalArgs() 277 !getFormalParams(CS, getFunction(CE->getOperand(0)), Formals)) in getCalleeWithFormalArgs() 284 bool Evaluator::getFormalParams(CallSite &CS, Function *F, in getFormalParams() argument 290 if (FTy->getNumParams() > CS.getNumArgOperands()) { in getFormalParams() 295 auto ArgI = CS.arg_begin(); in getFormalParams() 479 CallSite CS(&*CurInst); in EvaluateBlock() 482 if (isa<DbgInfoIntrinsic>(CS.getInstruction())) { in EvaluateBlock() 489 if (isa<InlineAsm>(CS in EvaluateBlock() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | CallSiteSplitting.cpp | 88 static void addNonNullAttribute(CallSite CS, Value *Op) { in addNonNullAttribute() argument 90 for (auto &I : CS.args()) { in addNonNullAttribute() 92 CS.addParamAttr(ArgNo, Attribute::NonNull); in addNonNullAttribute() 97 static void setConstantInArgument(CallSite CS, Value *Op, in setConstantInArgument() argument 100 for (auto &I : CS.args()) { in setConstantInArgument() 104 CS.removeParamAttr(ArgNo, Attribute::NonNull); in setConstantInArgument() 105 CS.setArgument(ArgNo, ConstValue); in setConstantInArgument() 111 static bool isCondRelevantToAnyCallArgument(ICmpInst *Cmp, CallSite CS) { in isCondRelevantToAnyCallArgument() argument 115 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS in isCondRelevantToAnyCallArgument() 132 recordCondition(CallSite CS, BasicBlock *From, BasicBlock *To, ConditionsTy &Conditions) recordCondition() argument 155 recordConditions(CallSite CS, BasicBlock *Pred, ConditionsTy &Conditions, BasicBlock *StopAt) recordConditions() argument 168 addConditions(CallSite CS, const ConditionsTy &Conditions) addConditions() argument 187 canSplitCallSite(CallSite CS, TargetTransformInfo &TTI) canSplitCallSite() argument 306 splitCallSite( CallSite CS, const SmallVectorImpl<std::pair<BasicBlock *, ConditionsTy>> &Preds, DomTreeUpdater &DTU) splitCallSite() argument 421 isPredicatedOnPHI(CallSite CS) isPredicatedOnPHI() argument 451 shouldSplitOnPHIPredicatedArgument(CallSite CS) shouldSplitOnPHIPredicatedArgument() argument 462 shouldSplitOnPredicatedArgument(CallSite CS, DomTreeUpdater &DTU) shouldSplitOnPredicatedArgument() argument 494 tryToSplitCallSite(CallSite CS, TargetTransformInfo &TTI, DomTreeUpdater &DTU) tryToSplitCallSite() argument [all...] |
H A D | MemCpyOptimizer.cpp | 738 CallSite CS(C); in performCallSlotOptzn() 839 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i) in performCallSlotOptzn() 840 if (CS.getArgument(i) == cpySrc && !CS.doesNotCapture(i)) in performCallSlotOptzn() 867 for (unsigned i = 0; i < CS.arg_size(); ++i) in performCallSlotOptzn() 868 if (CS.getArgument(i)->stripPointerCasts() == cpySrc && in performCallSlotOptzn() 870 CS.getArgument(i)->getType()->getPointerAddressSpace()) in performCallSlotOptzn() 875 for (unsigned i = 0; i < CS.arg_size(); ++i) in performCallSlotOptzn() 876 if (CS.getArgument(i)->stripPointerCasts() == cpySrc) { in performCallSlotOptzn() 881 if (CS in performCallSlotOptzn() 1250 processByValArgument(CallSite CS, unsigned ArgNo) processByValArgument() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | Inliner.cpp | 166 // When processing our SCC, check to see if CS was inlined from some other in mergeInlinedArrayAllocas() 275 CallSite CS, InlineFunctionInfo &IFI, in InlineCallIfPossible() 279 Function *Callee = CS.getCalledFunction(); in InlineCallIfPossible() 280 Function *Caller = CS.getCaller(); in InlineCallIfPossible() 286 InlineResult IR = InlineFunction(CS, IFI, &AAR, InsertLifetime); in InlineCallIfPossible() 301 /// Return true if inlining of CS can block the caller from being 303 /// estimated inline cost associated with callsite \p CS. 305 /// caller if \p CS is suppressed for inlining. 307 shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC, in shouldBeDeferred() argument 309 function_ref<InlineCost(CallSite CS)> GetInlineCos in shouldBeDeferred() 274 InlineCallIfPossible( CallSite CS, InlineFunctionInfo &IFI, InlinedArrayAllocasTy &InlinedArrayAllocas, int InlineHistory, bool InsertLifetime, function_ref<AAResults &(Function &)> &AARGetter, ImportedFunctionsInliningStatistics &ImportedFunctionsStats) InlineCallIfPossible() argument 419 shouldInline(CallSite CS, function_ref<InlineCost(CallSite CS)> GetInlineCost, OptimizationRemarkEmitter &ORE) shouldInline() argument 519 setInlineRemark(CallSite &CS, StringRef message) setInlineRemark() argument 619 CallSite CS = CallSites[CSi].first; inlineCallsImpl() local [all...] |
H A D | AlwaysInliner.cpp | 55 if (auto CS = CallSite(U)) in run() 56 if (CS.getCalledFunction() == &F) in run() 57 Calls.insert(CS); in run() 59 for (CallSite CS : Calls) in run() 63 InlineFunction(CS, IFI, /*CalleeAAR=*/nullptr, InsertLifetime); in run() 119 InlineCost getInlineCost(CallSite CS) override; 154 InlineCost AlwaysInlinerLegacyPass::getInlineCost(CallSite CS) { in getInlineCost() argument 155 Function *Callee = CS.getCalledFunction(); in getInlineCost() 166 if (!CS.hasFnAttr(Attribute::AlwaysInline)) in getInlineCost()
|
H A D | DeadArgumentElimination.cpp | 178 CallSite CS(*I++); in DeleteDeadVarargs() 179 if (!CS) in DeleteDeadVarargs() 181 Instruction *Call = CS.getInstruction(); in DeleteDeadVarargs() 184 Args.assign(CS.arg_begin(), CS.arg_begin() + NumArgs); in DeleteDeadVarargs() 187 AttributeList PAL = CS.getAttributes(); in DeleteDeadVarargs() 197 CS.getOperandBundlesAsDefs(OpBundles); in DeleteDeadVarargs() 208 NewCS.setCallingConv(CS.getCallingConv()); in DeleteDeadVarargs() 307 CallSite CS(U.getUser()); in RemoveDeadArgumentsFromCallers() 308 if (!CS || !C in RemoveDeadArgumentsFromCallers() [all...] |
H A D | FunctionAttrs.cpp | 365 CallSite CS(U->getUser()); 366 if (!CS.getInstruction()) { 371 Function *F = CS.getCalledFunction(); 382 std::distance(const_cast<const Use *>(CS.arg_begin()), U); 384 assert(UseIndex < CS.data_operands_size() && in assert() argument 387 if (UseIndex >= CS.getNumArgOperands()) { 389 assert(CS.hasOperandBundles() && "Must be!"); 493 CallSite CS(I); in determinePointerReadAttrs() 494 if (CS.doesNotAccessMemory()) { in determinePointerReadAttrs() 499 Function *F = CS in determinePointerReadAttrs() [all...] |
H A D | WholeProgramDevirt.cpp | 308 // A virtual call site. VTable is the loaded virtual table pointer, and CS is 312 CallSite CS; member 322 Function *F = CS.getCaller(); in emitRemark() 323 DebugLoc DLoc = CS->getDebugLoc(); in emitRemark() 324 BasicBlock *Block = CS.getParent(); in emitRemark() 339 CS->replaceAllUsesWith(New); in replaceAndErase() 340 if (auto II = dyn_cast<InvokeInst>(CS.getInstruction())) { in replaceAndErase() 341 BranchInst::Create(II->getNormalDest(), CS.getInstruction()); in replaceAndErase() 344 CS->eraseFromParent(); in replaceAndErase() 417 void addCallSite(Value *VTable, CallSite CS, unsigne 423 findCallSiteInfo(CallSite CS) findCallSiteInfo() argument 437 addCallSite(Value *VTable, CallSite CS, unsigned *NumUnsafeUses) addCallSite() argument [all...] |
/third_party/skia/modules/skottie/src/effects/ |
H A D | InvertEffect.cpp | 44 enum class CS { kRGB, kHSL, kYIQ }; class 49 CS cs; 75 case kR_Channel: return { {-1, 1, 1, 1}, { 1,0,0,0}, CS::kRGB }; // r' = 1 - r 76 case kG_Channel: return { { 1,-1, 1, 1}, { 0,1,0,0}, CS::kRGB }; // g' = 1 - g 77 case kB_Channel: return { { 1, 1,-1, 1}, { 0,0,1,0}, CS::kRGB }; // b' = 1 - b 78 case kA_Channel: return { { 1, 1, 1,-1}, { 0,0,0,1}, CS::kRGB }; // a' = 1 - a 79 case kRGB_Channel: return { {-1,-1,-1, 1}, { 1,1,1,0}, CS::kRGB }; 81 case kH_Channel: return { {-1, 1, 1, 1}, {.5f,0,0,0}, CS::kHSL }; // h' = .5 - h 82 case kS_Channel: return { { 1,-1, 1, 1}, { 0,1,0,0}, CS::kHSL }; // s' = 1 - s 83 case kL_Channel: return { { 1, 1,-1, 1}, { 0,0,1,0}, CS [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInline.cpp | 70 unsigned getInlineThreshold(CallSite CS) const; 72 InlineCost getInlineCost(CallSite CS) override; 109 unsigned AMDGPUInliner::getInlineThreshold(CallSite CS) const { in getInlineThreshold() 112 Function *Caller = CS.getCaller(); in getInlineThreshold() 115 Function *Callee = CS.getCalledFunction(); in getInlineThreshold() 132 for (Value *PtrArg : CS.args()) { in getInlineThreshold() 159 static bool isWrapperOnlyCall(CallSite CS) { in isWrapperOnlyCall() argument 160 Function *Callee = CS.getCalledFunction(); in isWrapperOnlyCall() 177 InlineCost AMDGPUInliner::getInlineCost(CallSite CS) { in getInlineCost() argument 178 Function *Callee = CS in getInlineCost() [all...] |
H A D | AMDGPUFixFunctionBitcasts.cpp | 34 void visitCallSite(CallSite CS) { in visitCallSite() argument 35 if (CS.getCalledFunction()) in visitCallSite() 37 auto Callee = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); in visitCallSite() 38 if (Callee && isLegalToPromote(CS, Callee)) { in visitCallSite() 39 promoteCall(CS, Callee); in visitCallSite()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
H A D | TestData.java | 32 protected static final int CS = UCharacterDirection.COMMON_NUMBER_SEPARATOR; field in TestData 52 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON", 59 { L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 2 60 { L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 3 61 { AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L }, // 4 72 LRE, BN, CS, RLO, S, PDF, EN, LRO, AN, ES /* 10 entries */ 80 EN, CS, [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
H A D | TestData.java | 29 protected static final int CS = UCharacterDirection.COMMON_NUMBER_SEPARATOR; field in TestData 49 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON", 56 { L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 2 57 { L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 3 58 { AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L }, // 4 69 LRE, BN, CS, RLO, S, PDF, EN, LRO, AN, ES /* 10 entries */ 77 EN, CS, [all...] |
/third_party/ltp/testcases/realtime/stress/pi-tests/ |
H A D | lookup_pi_state.c | 46 pthread_cond_t CS; variable 87 printf("Slave thread %d waiting on CS,MS\n", id); in slave_thread() 88 pthread_cond_wait(&CS, &MS); // docs are contradictory on if this in slave_thread() 97 pthread_cond_wait(&CS, &MS); in slave_thread() 125 pthread_cond_signal(&CS); in master_thread() 126 pthread_cond_signal(&CS); in master_thread() 127 pthread_cond_signal(&CS); in master_thread() 130 pthread_cond_broadcast(&CS); in master_thread() 131 pthread_cond_broadcast(&CS); in master_thread() 132 pthread_cond_broadcast(&CS); in master_thread() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | AbstractCallSite.cpp | 56 AbstractCallSite::AbstractCallSite(const Use *U) : CS(U->getUser()) { in AbstractCallSite() 59 if (!CS) { in AbstractCallSite() 64 // cast expression and afterwards re-initializing CS accordingly. in AbstractCallSite() 68 CS = CallSite(U->getUser()); in AbstractCallSite() 71 if (!CS) { in AbstractCallSite() 78 // call site CS it is not a callback and we are done. in AbstractCallSite() 79 if (CS.isCallee(U)) { in AbstractCallSite() 86 Function *Callee = CS.getCalledFunction(); in AbstractCallSite() 89 CS = CallSite(); in AbstractCallSite() 96 CS in AbstractCallSite() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | CallSite.h | 684 bool operator==(const CallSite &CS) const { return I == CS.I; } in operator ==() 685 bool operator!=(const CallSite &CS) const { return I != CS.I; } in operator !=() 686 bool operator<(const CallSite &CS) const { in operator <() 687 return getInstruction() < CS.getInstruction(); in operator <() 705 ImmutableCallSite(CallSite CS) : CallSiteBase(CS.getInstruction()) {} in ImmutableCallSite() argument 739 /// site CS is the callback callee. The remaining elements map parameters 756 CallSite CS; member in llvm::AbstractCallSite 904 CallSite CS; getEmptyKey() local 910 CallSite CS; getTombstoneKey() local [all...] |
/third_party/pcre2/pcre2/maint/ |
H A D | ucptest.c | 123 #define CS (char *) macro 190 US"CS", US"Common separator", 460 case ucp_bidiCS: bidiclass = US"CS "; break; in print_prop() 573 if (strcmp(CS name, "script") == 0 || in find_chars() 574 strcmp(CS name, "scriptx") == 0) in find_chars() 588 if ((u->type == PT_SCX || u->type == PT_SC) && strcmp(CS(value + offset), in find_chars() 615 else if (strcmp(CS name, "bool") == 0) in find_chars() 627 if (u->type == PT_BOOL && strcmp(CS(value + offset), in find_chars() 642 else if (strcmp(CS name, "type") == 0) in find_chars() 659 if (strcmp(CS (valu in find_chars() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86WinEHState.cpp | 70 bool isStateStoreNeeded(EHPersonality Personality, CallSite CS); 71 void rewriteSetJmpCallSite(IRBuilder<> &Builder, Function &F, CallSite CS, 76 WinEHFuncInfo &FuncInfo, CallSite CS); 459 CallSite CS, Value *State) { in rewriteSetJmpCallSite() 461 if (CS.getNumArgOperands() != 2) in rewriteSetJmpCallSite() 464 Instruction *Inst = CS.getInstruction(); in rewriteSetJmpCallSite() 467 CS.getOperandBundlesAsDefs(OpBundles); in rewriteSetJmpCallSite() 485 Builder.CreateBitCast(CS.getArgOperand(0), Builder.getInt8PtrTy())); in rewriteSetJmpCallSite() 490 if (CS.isCall()) { in rewriteSetJmpCallSite() 500 NewCS.setCallingConv(CS in rewriteSetJmpCallSite() 458 rewriteSetJmpCallSite(IRBuilder< &Builder, Function &F, CallSite CS, Value *State) rewriteSetJmpCallSite() argument 530 getStateForCallSite( DenseMap<BasicBlock *, ColorVector> &BlockColors, WinEHFuncInfo &FuncInfo, CallSite CS) getStateForCallSite() argument 620 isStateStoreNeeded(EHPersonality Personality, CallSite CS) isStateStoreNeeded() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
H A D | CoroEarly.cpp | 31 void lowerResumeOrDestroy(CallSite CS, CoroSubFnInst::ResumeKind); 50 void Lowerer::lowerResumeOrDestroy(CallSite CS, in lowerResumeOrDestroy() argument 53 makeSubFnCall(CS.getArgOperand(0), Index, CS.getInstruction()); in lowerResumeOrDestroy() 54 CS.setCalledFunction(ResumeAddr); in lowerResumeOrDestroy() 55 CS.setCallingConv(CallingConv::Fast); in lowerResumeOrDestroy() 159 if (auto CS = CallSite(&I)) { in lowerEarlyIntrinsics() 160 switch (CS.getIntrinsicID()) { in lowerEarlyIntrinsics() 170 CS.setCannotDuplicate(); in lowerEarlyIntrinsics() 176 CS in lowerEarlyIntrinsics() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyOptimizeReturned.cpp | 45 void visitCallSite(CallSite CS); 58 void OptimizeReturned::visitCallSite(CallSite CS) { in visitCallSite() argument 59 for (unsigned I = 0, E = CS.getNumArgOperands(); I < E; ++I) in visitCallSite() 60 if (CS.paramHasAttr(I, Attribute::Returned)) { in visitCallSite() 61 Instruction *Inst = CS.getInstruction(); in visitCallSite() 62 Value *Arg = CS.getArgOperand(I); in visitCallSite()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cbididat.c | 25 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON", 32 /* L R EN ES ET AN CS B S WS ON */ 72 L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L 87 L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L 102 AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L 186 LRE, BN, CS, RLO, S, PDF, EN, LRO, AN, ES /* 10 entries */ 228 AL, AL, AL, WS, EN, EN, ES, EN, EN, CS, [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
H A D | Instruction.h | 300 bool startsAfter(const CycleSegment &CS) const { return End <= CS.Begin; } in startsAfter() 301 bool endsBefore(const CycleSegment &CS) const { return Begin >= CS.End; } in endsBefore() 302 bool overlaps(const CycleSegment &CS) const { in overlaps() 303 return !startsAfter(CS) && !endsBefore(CS); in overlaps() 338 CycleSegment CS; member 341 : CS(Cycles), NumUnits(Units) {} in ResourceUsage() 342 unsigned size() const { return CS in ResourceUsage() [all...] |