Home
last modified time | relevance | path

Searched refs:CS (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp508 if (CS.isIntArg()) in getScalarArgType()
544 if (CS.isUIntArg()) in getScalarArgType()
579 if (CS.isDoubleArg()) { in getScalarArgType()
630 switch (CS.getKind()) { in getScalarArgType()
936 os << CS.toString(); in toString()
944 switch (CS.getKind()) { in hasValidPlusPrefix()
970 switch (CS.getKind()) { in hasValidAlternativeForm()
999 switch (CS.getKind()) { in hasValidLeadingZeros()
1033 switch (CS.getKind()) { in hasValidSpacePrefix()
1059 switch (CS.getKind()) { in hasValidLeftJustified()
[all …]
H A DScanfFormatString.cpp69 CS.setEndScanList(I); in ParseScanList()
203 if (ParseScanList(H, CS, I, E)) in ParseScanfSpecifier()
206 FS.setConversionSpecifier(CS); in ParseScanfSpecifier()
217 CS.setEndScanList(Beg + Len); in ParseScanfSpecifier()
218 FS.setConversionSpecifier(CS); in ParseScanfSpecifier()
229 if (!CS.consumesDataArgument()) in getArgType()
232 switch(CS.getKind()) { in getArgType()
441 CS.setKind(ConversionSpecifier::sArg); in fixType()
517 CS.setKind(ConversionSpecifier::fArg); in fixType()
519 CS.setKind(ConversionSpecifier::dArg); in fixType()
[all …]
H A DFormatString.cpp138 CS.setFieldWidth(Amt); in ParseFieldWidth()
847 switch (CS.getKind()) { in hasValidLengthModifier()
873 if (CS.isDoubleArg()) { in hasValidLengthModifier()
880 switch (CS.getKind()) { in hasValidLengthModifier()
906 switch (CS.getKind()) { in hasValidLengthModifier()
930 switch (CS.getKind()) { in hasValidLengthModifier()
940 switch (CS.getKind()) { in hasValidLengthModifier()
953 switch (CS.getKind()) { in hasValidLengthModifier()
1006 switch (CS.getKind()) { in hasStandardConversionSpecifier()
1052 switch(CS.getKind()) { in hasStandardLengthConversionCombination()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1442 CS << " = "; in getShuffleComment()
1470 CS << ']'; in getShuffleComment()
1473 CS.flush(); in getShuffleComment()
1484 CS << "("; in printConstant()
1490 CS << ")"; in printConstant()
1502 CS << Str; in printConstant()
1508 CS << "u"; in printConstant()
1540 CS << "?"; in printConstant()
1553 CS << "["; in printZeroUpperMove()
1559 CS << "]"; in printZeroUpperMove()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp771 Solver.resetLatticeValueFor(CS); in run()
827 auto &CS = *cast<CallBase>(U); in findSpecializations() local
830 if (CS.getCalledFunction() != F) in findSpecializations()
867 if (CS.getFunction() == F) in findSpecializations()
916 if (CS.getFunction() != F) in findSpecializations()
917 Spec.CallSites.push_back(&CS); in findSpecializations()
1002 auto *CS = cast<CallBase>(U); in getInliningBonus() local
1003 if (CS->getCalledOperand() != A) in getInliningBonus()
1103 CS && CS->getCalledFunction() == F && in updateCallSites()
1105 ToUpdate.push_back(CS); in updateCallSites()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/spi/
H A Dspi-nxp-fspi.txt19 This encodes to which bus and CS the flash is connected:
20 - <0>: Bus A, CS 0
21 - <1>: Bus A, CS 1
22 - <2>: Bus B, CS 0
23 - <3>: Bus B, CS 1
H A Dspi-mux.yaml23 | +--+++-+ | CS-X +------+\ +--+--+ +--+--+ +--+--+ +--+--+
24 | | SPI +-|-------+ Mux |\\ CS-0 | | | |
25 | +------+ | +--+---+\\\-------/ CS-1 | | |
26 | | | \\\----------------/ CS-2 | |
27 | +------+ | | \\-------------------------/ CS-3 |
H A Dspi-fsl-qspi.txt18 This encodes to which bus and CS the flash is connected:
19 <0>: Bus A, CS 0
20 <1>: Bus A, CS 1
21 <2>: Bus B, CS 0
22 <3>: Bus B, CS 1
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp69 ConstantStruct *CS = cast<ConstantStruct>(V); in parseGlobalCtors() local
70 Result.emplace_back(cast<ConstantInt>(CS->getOperand(0))->getZExtValue(), in parseGlobalCtors()
71 dyn_cast<Function>(CS->getOperand(1))); in parseGlobalCtors()
96 ConstantStruct *CS = cast<ConstantStruct>(V); in findGlobalCtors() local
97 if (isa<ConstantPointerNull>(CS->getOperand(1))) in findGlobalCtors()
101 Function *F = dyn_cast<Function>(CS->getOperand(1)); in findGlobalCtors()
H A DLowerGlobalDtors.cpp101 auto *CS = dyn_cast<ConstantStruct>(O); in runImpl() local
102 if (!CS) in runImpl()
105 auto *Priority = dyn_cast<ConstantInt>(CS->getOperand(0)); in runImpl()
110 Constant *DtorFunc = CS->getOperand(1); in runImpl()
114 Constant *Associated = CS->getOperand(2); in runImpl()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h399 bool startsAfter(const CycleSegment &CS) const { return End <= CS.Begin; } in startsAfter() argument
400 bool endsBefore(const CycleSegment &CS) const { return Begin >= CS.End; } in endsBefore() argument
401 bool overlaps(const CycleSegment &CS) const { in overlaps() argument
402 return !startsAfter(CS) && !endsBefore(CS); in overlaps()
437 CycleSegment CS; member
440 : CS(Cycles), NumUnits(Units) {} in CS() function
441 unsigned size() const { return CS.size(); } in size()
442 bool isReserved() const { return CS.isReserved(); } in isReserved()
443 void setReserved() { CS.setReserved(); } in setReserved()
/freebsd-14.2/contrib/sendmail/cf/cf/
H A Dhuginn.cs.mc21 # This file is for the backup CS Division mail server.
27 DOMAIN(CS.Berkeley.EDU)dnl
28 MASQUERADE_AS(CS.Berkeley.EDU)dnl
36 CF CS
H A Ducbvax.mc27 DOMAIN(CS.Berkeley.EDU)
28 MASQUERADE_AS(CS.Berkeley.EDU)
38 CF CS
89 R$+<@cnmat.CS.$D . > $#uucp$@cnmat$:$1
91 R$+<@craig.CS.$D . > $#uucp$@craig$:$1
H A Dchez.cs.mc29 DOMAIN(CS.Berkeley.EDU)dnl
30 define(`LOCAL_RELAY', vangogh.CS.Berkeley.EDU)dnl
31 MASQUERADE_AS(vangogh.CS.Berkeley.EDU)dnl
H A Dvangogh.cs.mc27 DOMAIN(CS.Berkeley.EDU)dnl
32 Cw okeeffe.CS.Berkeley.EDU
33 Cw python.CS.Berkeley.EDU
H A Dpython.cs.mc29 DOMAIN(CS.Berkeley.EDU)dnl
30 define(`LOCAL_RELAY', vangogh.CS.Berkeley.EDU)dnl
31 MASQUERADE_AS(vangogh.CS.Berkeley.EDU)dnl
H A Dmail.cs.mc21 # This file is for the primary CS Division mail server.
28 MASQUERADE_AS(CS.Berkeley.EDU)dnl
37 CF CS
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp139 COFFSymbolRef CS = COFF.getCOFFSymbol(S); in getPreferredSymbol() local
140 if (CS.getSectionNumber() == CoffSym.getSectionNumber() && in getPreferredSymbol()
141 CS.getValue() <= CoffSym.getValue() + SymbolOffset && in getPreferredSymbol()
142 CS.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
143 CS.getSectionDefinition() == nullptr) { in getPreferredSymbol()
144 uint32_t Offset = CoffSym.getValue() + SymbolOffset - CS.getValue(); in getPreferredSymbol()
150 CoffSym = CS; in getPreferredSymbol()
151 if (CS.isExternal() && SymbolOffset == 0) in getPreferredSymbol()
352 DictScope CS(SW, "Chained"); in printUnwindInfo() local
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DChromiumCheckModel.cpp54 auto CS = Element.getAs<CFGStmt>(); in transfer() local
55 if (!CS) in transfer()
57 auto Stmt = CS->getStmt(); in transfer()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DFormatString.h412 ConversionSpecifier CS; variable
422 : CS(isPrintf), VectorNumElts(false), in FormatSpecifier()
501 static bool classof(const analyze_format_string::ConversionSpecifier *CS) { in classof() argument
502 return CS->isPrintfKind(); in classof()
539 CS = cs; in setConversionSpecifier()
572 return cast<PrintfConversionSpecifier>(CS); in getConversionSpecifier()
647 static bool classof(const analyze_format_string::ConversionSpecifier *CS) { in classof() argument
648 return !CS->isPrintfKind(); in classof()
673 CS = cs; in setConversionSpecifier()
677 return cast<ScanfConversionSpecifier>(CS); in getConversionSpecifier()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp511 MI, DecW, Address, CS); in getInstruction()
517 MI, DecW, Address, CS); in getInstruction()
533 MI, DecW, Address, CS); in getInstruction()
539 MI, DecW, Address, CS); in getInstruction()
595 MI, QW, Address, CS); in getInstruction()
603 MI, QW, Address, CS); in getInstruction()
641 Res = tryDecodeInst(DecoderTableGFX832, MI, DW, Address, CS); in getInstruction()
665 Address, CS); in getInstruction()
669 Address, CS); in getInstruction()
701 Address, CS); in getInstruction()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp63 auto CS = cast<CompoundStmt>(S); in begin() local
64 return CS->body_begin() + StartIndex; in begin()
71 auto CS = cast<CompoundStmt>(S); in end() local
72 return CS->body_begin() + EndIndex; in end()
256 auto CS = dyn_cast<CompoundStmt>(S); in saveHash() local
270 if (CS) { in saveHash()
274 for (unsigned Pos = 0; Pos < CS->size(); ++Pos) { in saveHash()
279 for (unsigned Length = 1; Length <= CS->size() - Pos; ++Length) { in saveHash()
290 createHash(SubHash), StmtSequence(CS, D, Pos, Pos + Length))); in saveHash()
H A DCFGStmtMap.cpp53 std::optional<CFGStmt> CS = CE.getAs<CFGStmt>(); in Accumulate() local
54 if (!CS) in Accumulate()
57 CFGBlock *&Entry = SM[CS->getStmt()]; in Accumulate()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DResourceManager.cpp351 const CycleSegment &CS = R.second.CS; in issueInstruction() local
352 if (!CS.size()) { in issueInstruction()
357 assert(CS.begin() == 0 && "Invalid {Start, End} cycles!"); in issueInstruction()
361 BusyResources[Pipe] += CS.size(); in issueInstruction()
363 Pipe, ReleaseAtCycles(CS.size()))); in issueInstruction()
369 BusyResources[ResourceRef(R.first, R.first)] += CS.size(); in issueInstruction()
/freebsd-14.2/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dpl353-smc.txt31 ranges = <0x0 0x0 0xe1000000 0x1000000 //Nand CS Region
32 0x1 0x0 0xe2000000 0x2000000 //SRAM/NOR CS Region
33 0x2 0x0 0xe4000000 0x2000000>; //SRAM/NOR CS Region

12345678910>>...14