Searched refs:SS (Results 1 - 25 of 162) sorted by relevance

1234567

/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h399 // inline std::ostream& operator<<(std::ostream& SS, StringRef R) {
400 // return SS.write(R.data(), R.size());
420 static void print(const SExpr *E, StreamType &SS) { argument
422 printer.printSExpr(E, SS, Prec_MAX);
428 void newline(StreamType &SS) { argument
429 SS << "\n";
485 void printBlockLabel(StreamType & SS, const BasicBlock *BB, int index) { argument
487 SS << "BB_null";
490 SS << "BB_";
491 SS << B
498 printSExpr(const SExpr *E, StreamType &SS, unsigned P, bool Sub=true) argument
525 printNull(StreamType &SS) argument
529 printFuture(const Future *E, StreamType &SS) argument
533 printUndefined(const Undefined *E, StreamType &SS) argument
537 printWildcard(const Wildcard *E, StreamType &SS) argument
542 printLiteralT(const LiteralT<T> *E, StreamType &SS) argument
546 printLiteralT(const LiteralT<uint8_t> *E, StreamType &SS) argument
550 printLiteral(const Literal *E, StreamType &SS) argument
625 printLiteralPtr(const LiteralPtr *E, StreamType &SS) argument
632 printVariable(const Variable *V, StreamType &SS, bool IsVarDecl=false) argument
639 printFunction(const Function *E, StreamType &SS, unsigned sugared = 0) argument
657 self()->printFunction(cast<Function>(B), SS, 2); local
664 printSFunction(const SFunction *E, StreamType &SS) argument
671 printCode(const Code *E, StreamType &SS) argument
678 printField(const Field *E, StreamType &SS) argument
685 printApply(const Apply *E, StreamType &SS, bool sugared = false) argument
688 printApply(cast<Apply>(F), SS, true); local
699 printSApply(const SApply *E, StreamType &SS) argument
708 printProject(const Project *E, StreamType &SS) argument
734 printCall(const Call *E, StreamType &SS) argument
737 self()->printApply(cast<Apply>(T), SS, true); local
746 printAlloc(const Alloc *E, StreamType &SS) argument
751 printLoad(const Load *E, StreamType &SS) argument
757 printStore(const Store *E, StreamType &SS) argument
763 printArrayIndex(const ArrayIndex *E, StreamType &SS) argument
770 printArrayAdd(const ArrayAdd *E, StreamType &SS) argument
776 printUnaryOp(const UnaryOp *E, StreamType &SS) argument
781 printBinaryOp(const BinaryOp *E, StreamType &SS) argument
787 printCast(const Cast *E, StreamType &SS) argument
818 printSCFG(const SCFG *E, StreamType &SS) argument
826 printBBInstr(const SExpr *E, StreamType &SS) argument
842 printBasicBlock(const BasicBlock *E, StreamType &SS) argument
863 printPhi(const Phi *E, StreamType &SS) argument
878 printGoto(const Goto *E, StreamType &SS) argument
883 printBranch(const Branch *E, StreamType &SS) argument
892 printReturn(const Return *E, StreamType &SS) argument
897 printIdentifier(const Identifier *E, StreamType &SS) argument
901 printIfThenElse(const IfThenElse *E, StreamType &SS) argument
918 printLet(const Let *E, StreamType &SS) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DDispatchStatistics.cpp65 raw_string_ostream SS(Buffer);
66 SS << "\n\nDynamic Dispatch Stall Cycles:\n";
67 SS << "RAT - Register unavailable: ";
68 printStalls(SS, HWStalls[HWStallEvent::RegisterFileStall], NumCycles);
69 SS << "\nRCU - Retire tokens unavailable: ";
70 printStalls(SS, HWStalls[HWStallEvent::RetireControlUnitStall], NumCycles);
71 SS << "\nSCHEDQ - Scheduler full: ";
72 printStalls(SS, HWStalls[HWStallEvent::SchedulerQueueFull], NumCycles);
73 SS << "\nLQ - Load queue full: ";
74 printStalls(SS, HWStall
[all...]
/freebsd-current/contrib/libc-vis/
H A Dunvis.c211 #define SS(a, b) (((uint32_t)(a) << 24) | (b)) macro
223 *astate = SS(0, S_GROUND);
237 *astate = SS(0, S_START);
241 *astate = SS(0, S_HEX1);
245 *astate = SS(0, S_AMP);
249 *astate = SS(0, S_MIME1);
259 *astate = SS(0, S_GROUND);
264 *astate = SS(0, S_OCTAL2);
268 *astate = SS(0, S_META);
271 *astate = SS(
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp64 /// \param SS the C++ scope specifier as it appears in the source
71 /// \returns the declaration context represented by the scope specifier @p SS,
74 DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS, argument
76 if (!SS.isSet() || SS.isInvalid())
79 NestedNameSpecifier *NNS = SS.getScopeRep();
112 SS.getTemplateParamLists();
136 diagnoseMissingImport(SS.getLastQualifierNameLoc(), PartialSpec,
186 bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) { argument
187 if (!SS
218 RequireCompleteDeclContext(CXXScopeSpec &SS, DeclContext *DC) argument
260 RequireCompleteEnumDecl(EnumDecl *EnumD, SourceLocation L, CXXScopeSpec *SS) argument
305 ActOnCXXGlobalScopeSpecifier(SourceLocation CCLoc, CXXScopeSpec &SS) argument
311 ActOnSuperScopeSpecifier(SourceLocation SuperLoc, SourceLocation ColonColonLoc, CXXScopeSpec &SS) argument
473 BuildCXXNestedNameSpecifier(Scope *S, NestedNameSpecInfo &IdInfo, bool EnteringContext, CXXScopeSpec &SS, NamedDecl *ScopeLookupResult, bool ErrorRecoveryLookup, bool *IsCorrectedToColon, bool OnlyNamespace) argument
831 ActOnCXXNestedNameSpecifier(Scope *S, NestedNameSpecInfo &IdInfo, bool EnteringContext, CXXScopeSpec &SS, bool *IsCorrectedToColon, bool OnlyNamespace) argument
843 ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS, const DeclSpec &DS, SourceLocation ColonColonLoc) argument
876 IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS, NestedNameSpecInfo &IdInfo, bool EnteringContext) argument
886 ActOnCXXNestedNameSpecifier(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, TemplateTy OpaqueTemplate, SourceLocation TemplateNameLoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgsIn, SourceLocation RAngleLoc, SourceLocation CCLoc, bool EnteringContext) argument
990 SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) argument
1004 RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr, SourceRange AnnotationRange, CXXScopeSpec &SS) argument
1017 ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) argument
1066 ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) argument
1093 ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) argument
[all...]
H A DSemaExprMember.cpp204 const CXXScopeSpec &SS,
209 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
241 } else if (ContextClass && RepClass && SS.isEmpty() &&
268 const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R,
273 return BuildImplicitMemberExpr(SS, TemplateKWLoc, R, TemplateArgs, true, S);
278 return BuildImplicitMemberExpr(SS, TemplateKWLoc, R, TemplateArgs, false,
290 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, false, TemplateArgs);
291 return AsULE ? AsULE : BuildDeclarationNameExpr(SS, R, false);
295 diagnoseInstanceReference(*this, SS,
203 diagnoseInstanceReference(Sema &SemaRef, const CXXScopeSpec &SS, NamedDecl *Rep, const DeclarationNameInfo &nameInfo) argument
267 BuildPossibleImplicitMemberExpr( const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, const TemplateArgumentListInfo *TemplateArgs, const Scope *S, UnresolvedLookupExpr *AsULE) argument
512 ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType, bool IsArrow, SourceLocation OpLoc, const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierInScope, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs) argument
557 DiagnoseQualifiedMemberReference(Sema &SemaRef, Expr *BaseExpr, QualType BaseType, const CXXScopeSpec &SS, NamedDecl *rep, const DeclarationNameInfo &nameInfo) argument
584 CheckQualifiedMemberReference(Expr *BaseExpr, QualType BaseType, const CXXScopeSpec &SS, const LookupResult &R) argument
672 LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, Expr *BaseExpr, const RecordType *RTy, SourceLocation OpLoc, bool IsArrow, CXXScopeSpec &SS, bool HasTemplateArgs, SourceLocation TemplateKWLoc, TypoExpr *&TE) argument
775 BuildMemberReferenceExpr(Expr *Base, QualType BaseType, SourceLocation OpLoc, bool IsArrow, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierInScope, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs, const Scope *S, ActOnMemberAccessExtraArgs *ExtraArgs) argument
835 BuildAnonymousStructUnionMemberReference(const CXXScopeSpec &SS, SourceLocation loc, IndirectFieldDecl *indirectField, DeclAccessPair foundDecl, Expr *baseObjectExpr, SourceLocation opLoc) argument
916 BuildMSPropertyRefExpr(Sema &S, Expr *BaseExpr, bool IsArrow, const CXXScopeSpec &SS, MSPropertyDecl *PD, const DeclarationNameInfo &NameInfo) argument
928 BuildMemberExpr( Expr *Base, bool IsArrow, SourceLocation OpLoc, const CXXScopeSpec *SS, SourceLocation TemplateKWLoc, ValueDecl *Member, DeclAccessPair FoundDecl, bool HadMultipleCandidates, const DeclarationNameInfo &MemberNameInfo, QualType Ty, ExprValueKind VK, ExprObjectKind OK, const TemplateArgumentListInfo *TemplateArgs) argument
983 BuildMemberReferenceExpr(Expr *BaseExpr, QualType BaseExprType, SourceLocation OpLoc, bool IsArrow, const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierInScope, LookupResult &R, const TemplateArgumentListInfo *TemplateArgs, const Scope *S, bool SuppressQualifierCheck, ActOnMemberAccessExtraArgs *ExtraArgs) argument
1277 LookupMemberExpr(Sema &S, LookupResult &R, ExprResult &BaseExpr, bool &IsArrow, SourceLocation OpLoc, CXXScopeSpec &SS, Decl *ObjCImpDecl, bool HasTemplateArgs, SourceLocation TemplateKWLoc) argument
1746 ActOnMemberAccessExpr(Scope *S, Expr *Base, SourceLocation OpLoc, tok::TokenKind OpKind, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, UnqualifiedId &Id, Decl *ObjCImpDecl) argument
1834 BuildFieldReferenceExpr(Expr *BaseExpr, bool IsArrow, SourceLocation OpLoc, const CXXScopeSpec &SS, FieldDecl *Field, DeclAccessPair FoundDecl, const DeclarationNameInfo &MemberNameInfo) argument
1920 BuildImplicitMemberExpr(const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, const TemplateArgumentListInfo *TemplateArgs, bool IsKnownInstance, const Scope *S) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Testing/ADT/
H A DStringMap.h31 std::ostringstream SS; local
32 SS << E << ",";
33 Lines.push_back(SS.str());
/freebsd-current/lib/libc/string/
H A Dmemchr.c29 #define SS (sizeof(size_t)) macro
47 for (w = (const void *)s; n >= SS && !HASZERO(*w ^ k);
48 w++, n -= SS)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolELF.h22 void setSize(const MCExpr *SS) { SymbolSize = SS; } argument
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp172 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) override {
176 return visitCallBase(cast<CallBase>(I), ChangedValues, SS);
178 return visitLoad(*cast<LoadInst>(&I), ChangedValues, SS);
180 return visitReturn(*cast<ReturnInst>(&I), ChangedValues, SS);
182 return visitSelect(*cast<SelectInst>(&I), ChangedValues, SS);
184 return visitStore(*cast<StoreInst>(&I), ChangedValues, SS);
186 return visitInst(I, ChangedValues, SS);
242 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) {
249 MergeValues(SS.getValueState(RegI), SS
240 visitReturn(ReturnInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) argument
256 visitCallBase(CallBase &CB, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) argument
300 visitSelect(SelectInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) argument
313 visitLoad(LoadInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) argument
329 visitStore(StoreInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) argument
343 visitInst(Instruction &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFTypeUnit.h29 StringRef SS, const DWARFSection &SOS, const DWARFSection *AOS,
32 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS,
26 DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA, const DWARFSection *RS, const DWARFSection *LocSection, StringRef SS, const DWARFSection &SOS, const DWARFSection *AOS, const DWARFSection &LS, bool LE, bool IsDWO, const DWARFUnitVector &UnitVector) argument
H A DDWARFCompileUnit.h27 StringRef SS, const DWARFSection &SOS,
30 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS,
24 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA, const DWARFSection *RS, const DWARFSection *LocSection, StringRef SS, const DWARFSection &SOS, const DWARFSection *AOS, const DWARFSection &LS, bool LE, bool IsDWO, const DWARFUnitVector &UnitVector) argument
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TileConfig.cpp90 int SS = INT_MAX; local
94 SS = MI.getOperand(0).getIndex();
98 if (SS != INT_MAX)
102 if (SS == INT_MAX)
110 if (MI.getOpcode() == X86::MOV8mi && SS == MI.getOperand(0).getIndex()) {
173 SS, Offset)
189 SS, Offset)
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dargon2-encoding.c243 #define SS(str) \ macro
258 SS(tmp); \
277 SS("$argon2id$v="); break;
279 SS("$argon2i$v="); break;
288 SS("$m=");
290 SS(",t=");
292 SS(",p=");
295 SS("$");
298 SS("$");
302 #undef SS macro
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/Solaris/sys/
H A Dregset.h23 #undef SS macro
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumGlobals.cpp29 SymbolStream &SS = cantFail(Session.getPDBFile().getPDBSymbolStream()); local
31 CVSymbol S = SS.readRecord(Off);
/freebsd-current/crypto/openssl/providers/implementations/rands/seeding/
H A Drand_vms.c394 0, 0, 0, 0, 0)) != SS$_NORMAL) {
399 != SS$_NORMAL) {
404 != SS$_NORMAL) {
409 != SS$_NORMAL) {
417 if ((status = lib$get_ef(&efn)) != SS$_NORMAL) {
422 != SS$_NORMAL) {
426 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) {
430 if (iosb.iosb$l_getxxi_status != SS$_NORMAL) {
435 != SS$_NORMAL) {
439 if ((status = sys$synch(efn, &iosb)) != SS
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedTemplate.h55 /// \param SS the C++ scope specifier that precedes the template name, if
62 ParsedTemplateArgument(const CXXScopeSpec &SS, argument
66 Arg(Template.getAsOpaquePtr()), SS(SS), Loc(TemplateLoc) {}
100 return SS;
128 CXXScopeSpec SS; member in class:clang::ParsedTemplateArgument
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h142 std::stringstream SS; local
144 SS << arg << " ";
146 SS << ">" << getOutputFile() << " ";
148 SS << "2>&1 ";
149 std::string result = SS.str();
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DVarLenCodeEmitterGen.cpp333 static void emitInstBits(raw_ostream &IS, raw_ostream &SS, const APInt &Bits, argument
343 SS.indent(4);
345 SS << "UINT64_C(" << utostr(Bits.getRawData()[I]) << "),";
352 raw_string_ostream IS(IndexArray), SS(StorageArray);
355 SS << " static const uint64_t InstBits" << Modes[Mode] << "[] = {\n";
400 emitInstBits(IS, SS, Value, NumFixedValueWords);
403 SS << '\t' << "// " << R->getName() << "\n";
406 SS.indent(4) << "UINT64_C(0)\n };\n";
408 OS << IS.str() << SS.str();
454 raw_string_ostream SS(Cas
[all...]
H A DPredicateExpander.cpp261 raw_string_ostream SS(Buffer);
263 SS << "return ";
264 expandPredicate(SS, Rec);
265 SS << ";";
288 raw_string_ostream SS(Buffer);
290 SS << "switch(MI" << (isByRef() ? "." : "->") << "getOpcode()) {\n";
292 expandOpcodeSwitchCase(SS, Rec);
293 SS << '\n';
297 SS.indent(getIndentLevel() * 2);
298 SS << "defaul
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStreamChecker.cpp522 inline void assertStreamStateOpened(const StreamState *SS) {
523 assert(SS->isOpened() && "Stream is expected to be opened");
668 const StreamState *SS = State->get<StreamMap>(Sym);
669 if (!SS)
676 assertStreamStateOpened(SS);
718 const StreamState *SS = State->get<StreamMap>(Sym);
719 if (SS->ErrorState & ErrorFEof)
1255 const StreamState *SS = State->get<StreamMap>(StreamSym);
1256 if (!SS)
1263 assertStreamStateOpened(SS);
[all...]
/freebsd-current/crypto/openssl/test/
H A Dstack_test.c32 } SS; typedef in typeref:struct:__anon168
41 DEFINE_STACK_OF(SS)
258 static SS *SS_copy(const SS *p)
260 SS *q = OPENSSL_malloc(sizeof(*q));
267 static void SS_free(SS *p) {
273 STACK_OF(SS) *s = sk_SS_new_null();
274 STACK_OF(SS) *r = NULL;
275 SS *v[10], *p;
289 TEST_info("SS stac
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp358 int SS = Register::stackSlot2Index(li->reg()); local
361 SlotMapping[SS] = NewSS;
362 RevMap[NewSS].push_back(SS);
365 Changed |= (SS != NewSS);
370 int SS = Register::stackSlot2Index(li->reg()); local
371 li->setWeight(SlotWeights[SS]);
386 for (unsigned SS = 0, SE = SSRefs.size(); SS != SE; ++SS) {
387 int NewFI = SlotMapping[SS];
[all...]
/freebsd-current/sys/cddl/dev/dtrace/x86/
H A Dregset.h94 #define SS 17 /* only stored on a privilege transition */ macro
/freebsd-current/contrib/kyua/integration/
H A Dcmd_report_junit_test.sh113 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
114 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
151 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
152 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
227 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
228 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
265 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
266 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ

Completed in 190 milliseconds

1234567