Home
last modified time | relevance | path

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

12345678910>>...14

/freebsd/crypto/krb5/src/kdc/
H A Drtscript30 ./rtest "" ATHENA.MIT.EDU SUB1W.CS.WASHINGTON.EDU SUB1M.ATHENA.MIT.EDU
31 ./rtest ATHENA.MIT.EDU MIT.EDU SUB1W.CS.WASHINGTON.EDU SUB1M.ATHENA.MIT.EDU
32 ./rtest "MIT.EDU,ATHENA." EDU SUB1W.CS.WASHINGTON.EDU SUB1M.ATHENA.MIT.EDU
33 ./rtest "EDU,MIT.,ATHENA." WASHINGTON.EDU SUB1W.CS.WASHINGTON.EDU SUB1M.ATHENA.MIT.EDU
34 ./rtest "EDU,MIT.,ATHENA.,WASHINGTON.EDU" CS.WASHINGTON.EDU SUB1W.CS.WASHINGTON.EDU SUB1M.ATHENA.MI…
35 ./rtest "EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS." SUB2W.CS.WASHINGTON.EDU SUB1W.CS.WASHINGTON.EDU SUB1M…
36 ./rtest "EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.,SUB2W." SUB3W.CS.WASHINGTON.EDU SUB1W.CS.WASHINGTON.ED…
37 ./rtest "EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.,SUB2W." SUB1W.CS.WASHINGTON.EDU SUB1W.CS.WASHINGTON.ED…
38 ./rtest "EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.,SUB2W." SUB1M.ATHENA.MIT.EDU SUB1W.CS.WASHINGTON.EDU S…
39 ./rtest "EDU,SUB2M.ATHENA.MIT.,WASHINGTON.EDU,CS." ATHENA.MIT.EDU SUB1W.CS.WASHINGTON.EDU SUB1M.ATH…
[all …]
H A Drtest.good5 EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.
6 EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.,SUB2W.
7 EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.,SUB2W.,SUB3W.CS.WASHINGTON.EDU
8 EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.,SUB2W.
9 EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.,SUB2W.
10 EDU,ATHENA.MIT.,SUB2M.,WASHINGTON.EDU,CS.
16 /EDU,/MIT,/ATHENA, /EDU/WASHINGTON,/CS
17 /EDU,/MIT,/ATHENA, /EDU/WASHINGTON,/CS,/SUB2W
18 /EDU,/MIT,/ATHENA, /EDU/WASHINGTON,/CS,/SUB2W, /EDU/WASHINGTON/CS/SUB3W
19 /EDU,/MIT,/ATHENA, /EDU/WASHINGTON,/CS,/SUB2W
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DIndexedMemProfData.h48 CallStackId addCallStack(ArrayRef<FrameId> CS) { in addCallStack()
49 CallStackId CSId = hashCallStack(CS); in addCallStack()
50 CallStacks.try_emplace(CSId, CS); in addCallStack()
54 CallStackId addCallStack(SmallVector<FrameId> &&CS) { in addCallStack()
55 CallStackId CSId = hashCallStack(CS); in addCallStack()
56 CallStacks.try_emplace(CSId, std::move(CS)); in addCallStack()
77 CallStackId hashCallStack(ArrayRef<FrameId> CS) const { in hashCallStack()
80 for (FrameId F : CS) in hashCallStack()
H A DMemProfYAML.h181 CallSiteInfoWithHex64Guids(IO &, const memprof::CallSiteInfo &CS)
182 : Frames(CS.Frames) {
184 CalleeGuids.reserve(CS.CalleeGuids.size());
185 for (uint64_t Guid : CS.CalleeGuids)
190 memprof::CallSiteInfo CS;
191 CS.Frames = Frames;
193 CS.CalleeGuids.reserve(CalleeGuids.size());
195 CS.CalleeGuids.push_back(HexGuid.value);
196 return CS;
206 static void mapping(IO &Io, memprof::CallSiteInfo &CS) {
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp741 SegmentReg = X86::CS; in emitNop()
1460 static void printDstRegisterName(raw_ostream &CS, const MachineInstr *MI, in printDstRegisterName() argument
1463 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()); in printDstRegisterName()
1471 CS << " {%" << Mask << "}"; in printDstRegisterName()
1473 CS << " {z}"; in printDstRegisterName()
1478 static void printShuffleMask(raw_ostream &CS, StringRef Src1Name, in printShuffleMask() argument
1489 CS << ","; in printShuffleMask()
1491 CS << "zero"; in printShuffleMask()
1498 CS << (isSrc1 ? Src1Name : Src2Name) << '['; in printShuffleMask()
1504 CS << ','; in printShuffleMask()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetFrameLoweringImpl.cpp189 const CalleeSavedInfo &CS, const TargetInstrInfo *TII, in spillCalleeSavedRegister() argument
192 MCRegister Reg = CS.getReg(); in spillCalleeSavedRegister()
194 if (CS.isSpilledToReg()) { in spillCalleeSavedRegister()
196 CS.getDstReg()) in spillCalleeSavedRegister()
200 TII->storeRegToStackSlot(SaveBlock, MI, Reg, true, CS.getFrameIdx(), RC, in spillCalleeSavedRegister()
207 const CalleeSavedInfo &CS, const TargetInstrInfo *TII, in restoreCalleeSavedRegister() argument
209 MCRegister Reg = CS.getReg(); in restoreCalleeSavedRegister()
210 if (CS.isSpilledToReg()) { in restoreCalleeSavedRegister()
212 .addReg(CS.getDstReg(), getKillRegState(true)); in restoreCalleeSavedRegister()
215 TII->loadRegFromStackSlot(MBB, MI, Reg, CS.getFrameIdx(), RC, TRI, in restoreCalleeSavedRegister()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp405 PrintfConversionSpecifier CS(conversionPosition, k); in ParsePrintfSpecifier() local
406 FS.setConversionSpecifier(CS); in ParsePrintfSpecifier()
407 if (CS.consumesDataArgument() && !FS.usesPositionalArg()) in ParsePrintfSpecifier()
417 CS.setEndScanList(Start + Len); in ParsePrintfSpecifier()
418 FS.setConversionSpecifier(CS); in ParsePrintfSpecifier()
509 if (CS.getKind() == ConversionSpecifier::cArg) in getScalarArgType()
524 if (CS.isIntArg()) in getScalarArgType()
560 if (CS.isUIntArg()) in getScalarArgType()
595 if (CS.isDoubleArg()) { in getScalarArgType()
613 if (CS.getKind() == ConversionSpecifier::nArg) { in getScalarArgType()
[all …]
H A DScanfFormatString.cpp32 ScanfConversionSpecifier &CS, in ParseScanList() argument
69 CS.setEndScanList(I); in ParseScanList()
201 ScanfConversionSpecifier CS(conversionPosition, k); in ParseScanfSpecifier() local
203 if (ParseScanList(H, CS, I, E)) in ParseScanfSpecifier()
206 FS.setConversionSpecifier(CS); in ParseScanfSpecifier()
207 if (CS.consumesDataArgument() && !FS.getSuppressAssignment() in ParseScanfSpecifier()
217 CS.setEndScanList(Beg + Len); in ParseScanfSpecifier()
218 FS.setConversionSpecifier(CS); in ParseScanfSpecifier()
227 const ScanfConversionSpecifier &CS = getConversionSpecifier(); in getArgType() local
229 if (!CS.consumesDataArgument()) in getArgType()
[all …]
H A DFormatString.cpp123 FormatSpecifier &CS, in ParseFieldWidth() argument
129 CS.setFieldWidth(ParseNonPositionAmount(Beg, E, *argIndex)); in ParseFieldWidth()
138 CS.setFieldWidth(Amt); in ParseFieldWidth()
934 if (LO.OpenCL && CS.isDoubleArg()) in hasValidLengthModifier()
937 if (CS.isFixedPointArg()) in hasValidLengthModifier()
941 switch (CS.getKind()) { in hasValidLengthModifier()
959 switch (CS.getKind()) { in hasValidLengthModifier()
985 if (CS.isDoubleArg()) { in hasValidLengthModifier()
992 if (CS.isFixedPointArg()) in hasValidLengthModifier()
995 switch (CS.getKind()) { in hasValidLengthModifier()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DResourceManager.cpp359 const CycleSegment &CS = R.second.CS; in issueInstructionImpl() local
360 if (!CS.size()) { in issueInstructionImpl()
365 assert(CS.begin() == 0 && "Invalid {Start, End} cycles!"); in issueInstructionImpl()
371 BusyResources[ResourceRef(R.first, R.first)] += CS.size(); in issueInstructionImpl()
383 BusyResources[Pipe] += CS.size(); in issueInstructionImpl()
384 Pipes.emplace_back(std::make_pair(Pipe, ReleaseAtCycles(CS.size()))); in issueInstructionImpl()
415 const CycleSegment &CS = Elt.second.CS; in issueInstructionImpl() local
416 BusyResources[Pipe] += CS.size(); in issueInstructionImpl()
417 Pipes.emplace_back(std::make_pair(Pipe, ReleaseAtCycles(CS.size()))); in issueInstructionImpl()
431 const CycleSegment &CS = R.second.CS; in fastIssueInstruction() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProf.cpp95 for (const auto &CS : Record.CallSites) in serializedSizeV4() local
97 CS.CalleeGuids.size() * sizeof(GlobalValue::GUID); in serializedSizeV4()
128 for (const auto &CS : Record.CallSites) in serializeV2() local
129 LE.write<CallStackId>(CS.CSId); in serializeV2()
149 for (const auto &CS : Record.CallSites) { in serializeV3() local
150 assert(MemProfCallStackIndexes.contains(CS.CSId)); in serializeV3()
151 LE.write<LinearCallStackId>(MemProfCallStackIndexes[CS.CSId]); in serializeV3()
172 for (const auto &CS : Record.CallSites) { in serializeV4() local
173 assert(MemProfCallStackIndexes.contains(CS.CSId)); in serializeV4()
174 LE.write<LinearCallStackId>(MemProfCallStackIndexes[CS.CSId]); in serializeV4()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFrameLowering.cpp361 for (auto &CS : CSI) in getLibCallID() local
364 if (CS.getFrameIdx() < 0) in getLibCallID()
365 MaxReg = std::max(MaxReg.id(), CS.getReg().id()); in getLibCallID()
448 for (auto &CS : CSI) { in getNumPushPopRegs() local
450 [&](MCPhysReg P) { return P == CS.getReg(); }); in getNumPushPopRegs()
537 for (auto &CS : CSI) { in getUnmanagedCSI() local
538 int FI = CS.getFrameIdx(); in getUnmanagedCSI()
540 NonLibcallCSI.push_back(CS); in getUnmanagedCSI()
552 for (auto &CS : CSI) { in getRVVCalleeSavedInfo() local
553 int FI = CS.getFrameIdx(); in getRVVCalleeSavedInfo()
[all …]
/freebsd/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-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/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp830 if (auto *CS = dyn_cast<CallBase>(U)) { in run() local
832 if (CS->getCalledFunction() != F) in run()
834 Solver.resetLatticeValueFor(CS); in run()
890 auto &CS = *cast<CallBase>(U); in findSpecializations() local
893 if (CS.getCalledFunction() != F) in findSpecializations()
898 if (CS.hasFnAttr(Attribute::MinSize)) in findSpecializations()
903 if (!Solver.isBlockExecutable(CS.getParent())) in findSpecializations()
910 Constant *C = getCandidateConstant(CS.getArgOperand(A->getArgNo())); in findSpecializations()
930 if (CS.getFunction() == F) in findSpecializations()
933 AllSpecs[Index].CallSites.push_back(&CS); in findSpecializations()
[all …]
/freebsd/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()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtSYCL.h47 SYCLKernelCallStmt(CompoundStmt *CS, OutlinedFunctionDecl *OFD) in SYCLKernelCallStmt() argument
48 : Stmt(SYCLKernelCallStmtClass), OriginalStmt(CS), OFDecl(OFD) {} in SYCLKernelCallStmt()
58 void setOriginalStmt(CompoundStmt *CS) { OriginalStmt = CS; } in setOriginalStmt() argument
H A DFormatString.h426 ConversionSpecifier CS; variable
436 : CS(isPrintf), VectorNumElts(false), in FormatSpecifier()
515 static bool classof(const analyze_format_string::ConversionSpecifier *CS) { in classof() argument
516 return CS->isPrintfKind(); in classof()
553 CS = cs; in setConversionSpecifier()
586 return cast<PrintfConversionSpecifier>(CS); in getConversionSpecifier()
661 static bool classof(const analyze_format_string::ConversionSpecifier *CS) { in classof() argument
662 return !CS->isPrintfKind(); in classof()
687 CS = cs; in setConversionSpecifier()
691 return cast<ScanfConversionSpecifier>(CS); in getConversionSpecifier()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h400 bool startsAfter(const CycleSegment &CS) const { return End <= CS.Begin; } in startsAfter() argument
401 bool endsBefore(const CycleSegment &CS) const { return Begin >= CS.End; } in endsBefore() argument
402 bool overlaps(const CycleSegment &CS) const { in overlaps() argument
403 return !startsAfter(CS) && !endsBefore(CS); in overlaps()
438 CycleSegment CS; member
441 : CS(Cycles), NumUnits(Units) {} in CS() function
442 unsigned size() const { return CS.size(); } in size()
443 bool isReserved() const { return CS.isReserved(); } in isReserved()
444 void setReserved() { CS.setReserved(); } in setReserved()
/freebsd/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
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp142 COFFSymbolRef CS = COFF.getCOFFSymbol(S); in getPreferredSymbol() local
143 if (CS.getSectionNumber() == CoffSym.getSectionNumber() && in getPreferredSymbol()
144 CS.getValue() <= CoffSym.getValue() + SymbolOffset && in getPreferredSymbol()
145 CS.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
146 CS.getSectionDefinition() == nullptr) { in getPreferredSymbol()
147 uint32_t Offset = CoffSym.getValue() + SymbolOffset - CS.getValue(); in getPreferredSymbol()
153 CoffSym = CS; in getPreferredSymbol()
154 if (CS.isExternal() && SymbolOffset == 0) in getPreferredSymbol()
374 DictScope CS(SW, "Chained"); in printUnwindInfo() local
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dtransit-tests34 set x x EDU,MIT.,ATHENA.,WASHINGTON.EDU,CS.
45 set ATHENA.MIT.EDU CS.CMU.EDU ,EDU,
49 set XYZZY.ATHENA.MIT.EDU XYZZY.CS.CMU.EDU ,EDU,
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DChromiumCheckModel.cpp55 auto CS = Element.getAs<CFGStmt>(); in transfer() local
56 if (!CS) in transfer()
58 auto Stmt = CS->getStmt(); in transfer()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp194 bool TraverseCapturedStmt(CapturedStmt *CS) { return true; } in TraverseCapturedStmt()
372 for (Stmt *CS : If->children()) { in TraverseIfStmt()
373 if (!CS || NoSingleByteCoverage) in TraverseIfStmt()
375 if (CS == If->getThen()) in TraverseIfStmt()
377 else if (CS == If->getElse()) in TraverseIfStmt()
384 for (Stmt *CS : If->children()) { in TraverseIfStmt()
385 if (!CS) in TraverseIfStmt()
387 if (CS == If->getThen()) in TraverseIfStmt()
389 else if (CS == If->getElse()) in TraverseIfStmt()
391 TraverseStmt(CS); in TraverseIfStmt()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp62 auto CS = cast<CompoundStmt>(S); in begin() local
63 return CS->body_begin() + StartIndex; in begin()
70 auto CS = cast<CompoundStmt>(S); in end() local
71 return CS->body_begin() + EndIndex; in end()
255 auto CS = dyn_cast<CompoundStmt>(S); in saveHash() local
269 if (CS) { in saveHash()
273 for (unsigned Pos = 0; Pos < CS->size(); ++Pos) { in saveHash()
278 for (unsigned Length = 1; Length <= CS->size() - Pos; ++Length) { in saveHash()
289 createHash(SubHash), StmtSequence(CS, D, Pos, Pos + Length))); in saveHash()

12345678910>>...14