Home
last modified time | relevance | path

Searched refs:SS (Results 1 – 25 of 247) sorted by relevance

12345678910

/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h420 static void print(const SExpr *E, StreamType &SS) { in print() argument
422 printer.printSExpr(E, SS, Prec_MAX); in print()
428 void newline(StreamType &SS) { in newline() argument
429 SS << "\n"; in newline()
485 void printBlockLabel(StreamType & SS, const BasicBlock *BB, int index) { in printBlockLabel() argument
487 SS << "BB_null"; in printBlockLabel()
490 SS << "BB_"; in printBlockLabel()
491 SS << BB->blockID(); in printBlockLabel()
493 SS << ":"; in printBlockLabel()
494 SS << index; in printBlockLabel()
[all …]
/freebsd/contrib/libc-vis/
H A Dunvis.c211 #define SS(a, b) (((uint32_t)(a) << 24) | (b)) in unvis() macro
223 *astate = SS(0, S_GROUND); in unvis()
237 *astate = SS(0, S_START); in unvis()
241 *astate = SS(0, S_HEX1); in unvis()
245 *astate = SS(0, S_AMP); in unvis()
249 *astate = SS(0, S_MIME1); in unvis()
259 *astate = SS(0, S_GROUND); in unvis()
264 *astate = SS(0, S_OCTAL2); in unvis()
268 *astate = SS(0, S_META); in unvis()
271 *astate = SS(0, S_CTRL); in unvis()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp54 DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS, in computeDeclContext() argument
56 if (!SS.isSet() || SS.isInvalid()) in computeDeclContext()
59 NestedNameSpecifier *NNS = SS.getScopeRep(); in computeDeclContext()
92 SS.getTemplateParamLists(); in computeDeclContext()
116 diagnoseMissingImport(SS.getLastQualifierNameLoc(), PartialSpec, in computeDeclContext()
166 bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) { in isDependentScopeSpecifier() argument
167 if (!SS.isSet() || SS.isInvalid()) in isDependentScopeSpecifier()
170 return SS.getScopeRep()->isDependent(); in isDependentScopeSpecifier()
193 bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS, in RequireCompleteDeclContext() argument
214 SourceLocation loc = SS.getLastQualifierNameLoc(); in RequireCompleteDeclContext()
[all …]
H A DSemaExprMember.cpp224 const CXXScopeSpec &SS, in diagnoseInstanceReference() argument
229 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin()); in diagnoseInstanceReference()
261 } else if (ContextClass && RepClass && SS.isEmpty() && in diagnoseInstanceReference()
286 bool Sema::isPotentialImplicitMemberAccess(const CXXScopeSpec &SS, in isPotentialImplicitMemberAccess() argument
295 else if (!SS.isEmpty()) in isPotentialImplicitMemberAccess()
306 const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, LookupResult &R, in BuildPossibleImplicitMemberExpr() argument
314 SS, TemplateKWLoc, R, TemplateArgs, in BuildPossibleImplicitMemberExpr()
325 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, /*RequiresADL=*/false, in BuildPossibleImplicitMemberExpr()
327 return BuildDeclarationNameExpr(SS, R, /*NeedsADL=*/false, in BuildPossibleImplicitMemberExpr()
332 Context, R.getNamingClass(), SS.getWithLocInContext(Context), in BuildPossibleImplicitMemberExpr()
[all …]
H A DSemaTemplate.cpp178 CXXScopeSpec &SS, in isTemplateName() argument
213 if (LookupTemplateName(R, S, SS, ObjectType, EnteringContext, in isTemplateName()
296 if (!SS.isInvalid()) { in isTemplateName()
297 NestedNameSpecifier *Qualifier = SS.getScopeRep(); in isTemplateName()
323 SourceLocation NameLoc, CXXScopeSpec &SS, in isDeductionGuideName() argument
329 if (LookupTemplateName(R, S, SS, /*ObjectType*/ QualType(), in isDeductionGuideName()
348 SS.getScopeRep(), /*TemplateKeyword=*/false, TemplateName(TD)); in isDeductionGuideName()
357 const CXXScopeSpec *SS, in DiagnoseUnknownTemplateName() argument
363 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) || in DiagnoseUnknownTemplateName()
364 computeDeclContext(*SS)) in DiagnoseUnknownTemplateName()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DDispatchStatistics.cpp65 raw_string_ostream SS(Buffer); in printDispatchStalls() local
66 SS << "\n\nDynamic Dispatch Stall Cycles:\n"; in printDispatchStalls()
67 SS << "RAT - Register unavailable: "; in printDispatchStalls()
68 printStalls(SS, HWStalls[HWStallEvent::RegisterFileStall], NumCycles); in printDispatchStalls()
69 SS << "\nRCU - Retire tokens unavailable: "; in printDispatchStalls()
70 printStalls(SS, HWStalls[HWStallEvent::RetireControlUnitStall], NumCycles); in printDispatchStalls()
71 SS << "\nSCHEDQ - Scheduler full: "; in printDispatchStalls()
72 printStalls(SS, HWStalls[HWStallEvent::SchedulerQueueFull], NumCycles); in printDispatchStalls()
73 SS << "\nLQ - Load queue full: "; in printDispatchStalls()
74 printStalls(SS, HWStalls[HWStallEvent::LoadQueueFull], NumCycles); in printDispatchStalls()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp173 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) override { in ComputeInstructionState() argument
177 return visitCallBase(cast<CallBase>(I), ChangedValues, SS); in ComputeInstructionState()
179 return visitLoad(*cast<LoadInst>(&I), ChangedValues, SS); in ComputeInstructionState()
181 return visitReturn(*cast<ReturnInst>(&I), ChangedValues, SS); in ComputeInstructionState()
183 return visitSelect(*cast<SelectInst>(&I), ChangedValues, SS); in ComputeInstructionState()
185 return visitStore(*cast<StoreInst>(&I), ChangedValues, SS); in ComputeInstructionState()
187 return visitInst(I, ChangedValues, SS); in ComputeInstructionState()
243 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) { in visitReturn() argument
250 MergeValues(SS.getValueState(RegI), SS.getValueState(RetF)); in visitReturn()
259 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) { in visitCallBase() argument
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dargon2-encoding.c243 #define SS(str) \ in encode_string() macro
258 SS(tmp); \ in encode_string()
277 SS("$argon2id$v="); break; in encode_string()
279 SS("$argon2i$v="); break; in encode_string()
288 SS("$m="); in encode_string()
290 SS(",t="); in encode_string()
292 SS(",p="); in encode_string()
295 SS("$"); in encode_string()
298 SS("$"); in encode_string()
302 #undef SS in encode_string()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DVarLenCodeEmitterGen.cpp333 static void emitInstBits(raw_ostream &IS, raw_ostream &SS, const APInt &Bits, in emitInstBits() argument
343 SS.indent(4); in emitInstBits()
345 SS << "UINT64_C(" << utostr(Bits.getRawData()[I]) << "),"; in emitInstBits()
352 raw_string_ostream IS(IndexArray), SS(StorageArray); in emitInstructionBaseValues() local
355 SS << " static const uint64_t InstBits" << Modes[Mode] << "[] = {\n"; in emitInstructionBaseValues()
400 emitInstBits(IS, SS, Value, NumFixedValueWords); in emitInstructionBaseValues()
403 SS << '\t' << "// " << R->getName() << "\n"; in emitInstructionBaseValues()
406 SS.indent(4) << "UINT64_C(0)\n };\n"; in emitInstructionBaseValues()
454 raw_string_ostream SS(Case); in getInstructionCaseForEncoding() local
456 SS.indent(I) << "Inst = getInstBits" << Modes[Mode] << "(opcode);\n"; in getInstructionCaseForEncoding()
[all …]
H A DPredicateExpander.cpp260 raw_string_ostream SS(Buffer); in expandReturnStatement() local
262 SS << "return "; in expandReturnStatement()
263 expandPredicate(SS, Rec); in expandReturnStatement()
264 SS << ";"; in expandReturnStatement()
287 raw_string_ostream SS(Buffer); in expandOpcodeSwitchStatement() local
289 SS << "switch(MI" << (isByRef() ? "." : "->") << "getOpcode()) {\n"; in expandOpcodeSwitchStatement()
291 expandOpcodeSwitchCase(SS, Rec); in expandOpcodeSwitchStatement()
292 SS << '\n'; in expandOpcodeSwitchStatement()
296 SS.indent(getIndentLevel() * 2); in expandOpcodeSwitchStatement()
297 SS << "default:\n"; in expandOpcodeSwitchStatement()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp89 IdentifierInfo &II, CXXScopeSpec &SS) { in CheckForTemplateAndDigraph() argument
101 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false, in CheckForTemplateAndDigraph()
160 CXXScopeSpec &SS, ParsedType ObjectType, bool ObjectHadErrors, in ParseOptionalCXXScopeSpecifier() argument
172 SS); in ParseOptionalCXXScopeSpecifier()
201 if (Actions.ActOnCXXGlobalScopeSpecifier(ConsumeToken(), SS)) in ParseOptionalCXXScopeSpecifier()
215 return Actions.ActOnSuperScopeSpecifier(SuperLoc, ConsumeToken(), SS); in ParseOptionalCXXScopeSpecifier()
233 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc)) in ParseOptionalCXXScopeSpecifier()
234 SS.SetInvalid(SourceRange(DeclLoc, CCLoc)); in ParseOptionalCXXScopeSpecifier()
261 if (Actions.ActOnCXXNestedNameSpecifierIndexedPack(SS, DS, CCLoc, in ParseOptionalCXXScopeSpecifier()
263 SS.SetInvalid(SourceRange(Start, CCLoc)); in ParseOptionalCXXScopeSpecifier()
[all …]
H A DParser.cpp1751 void Parser::AnnotateScopeToken(CXXScopeSpec &SS, bool IsNewAnnotation) { in AnnotateScopeToken() argument
1759 Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS)); in AnnotateScopeToken()
1760 Tok.setAnnotationRange(SS.getRange()); in AnnotateScopeToken()
1787 CXXScopeSpec SS; in TryAnnotateName() local
1789 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/nullptr, in TryAnnotateName()
1794 if (Tok.isNot(tok::identifier) || SS.isInvalid()) { in TryAnnotateName()
1795 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(SS, !WasScopeAnnotation, in TryAnnotateName()
1806 if (isTentativelyDeclared(Name) && SS.isEmpty()) { in TryAnnotateName()
1809 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(SS, !WasScopeAnnotation, in TryAnnotateName()
1822 getCurScope(), SS, Name, NameLoc, Next, SS.isEmpty() ? CCC : nullptr); in TryAnnotateName()
[all …]
H A DParseTemplate.cpp288 CXXScopeSpec SS; in ParseConceptDefinition() local
290 SS, /*ObjectType=*/nullptr, in ParseConceptDefinition()
294 SS.isInvalid()) { in ParseConceptDefinition()
299 if (SS.isNotEmpty()) in ParseConceptDefinition()
300 Diag(SS.getBeginLoc(), in ParseConceptDefinition()
304 if (ParseUnqualifiedId(SS, /*ObjectType=*/nullptr, in ParseConceptDefinition()
614 CXXScopeSpec SS; in TryAnnotateTypeConstraint() local
616 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/nullptr, in TryAnnotateTypeConstraint()
638 auto TNK = Actions.isTemplateName(getCurScope(), SS, in TryAnnotateTypeConstraint()
648 if (SS.isNotEmpty()) in TryAnnotateTypeConstraint()
[all …]
/freebsd/crypto/openssl/providers/implementations/rands/seeding/
H A Drand_vms.c394 0, 0, 0, 0, 0)) != SS$_NORMAL) { in data_collect_method()
399 != SS$_NORMAL) { in data_collect_method()
404 != SS$_NORMAL) { in data_collect_method()
409 != SS$_NORMAL) { in data_collect_method()
417 if ((status = lib$get_ef(&efn)) != SS$_NORMAL) { in data_collect_method()
422 != SS$_NORMAL) { in data_collect_method()
426 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
430 if (iosb.iosb$l_getxxi_status != SS$_NORMAL) { in data_collect_method()
435 != SS$_NORMAL) { in data_collect_method()
439 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TileConfig.cpp95 int SS = INT_MAX; in INITIALIZE_PASS_DEPENDENCY() local
99 SS = MI.getOperand(0).getIndex(); in INITIALIZE_PASS_DEPENDENCY()
103 if (SS != INT_MAX) in INITIALIZE_PASS_DEPENDENCY()
107 if (SS == INT_MAX) in INITIALIZE_PASS_DEPENDENCY()
115 if (MI.getOpcode() == X86::MOV8mi && SS == MI.getOperand(0).getIndex()) { in INITIALIZE_PASS_DEPENDENCY()
178 SS, Offset) in INITIALIZE_PASS_DEPENDENCY()
194 SS, Offset) in INITIALIZE_PASS_DEPENDENCY()
H A DX86PreTileConfig.cpp341 int SS = MF.getFrameInfo().CreateStackObject( in runOnMachineFunction() local
376 SS); in runOnMachineFunction()
387 addFrameReference(BuildMI(MBB, MI, DL, TII->get(X86::VMOVUPSZmr)), SS) in runOnMachineFunction()
392 addFrameReference(BuildMI(MBB, MI, DL, TII->get(X86::VMOVUPSYmr)), SS) in runOnMachineFunction()
394 addFrameReference(BuildMI(MBB, MI, DL, TII->get(X86::VMOVUPSYmr)), SS, 32) in runOnMachineFunction()
401 addFrameReference(BuildMI(MBB, MI, DL, TII->get(StoreOpc)), SS).addReg(Xmm); in runOnMachineFunction()
402 addFrameReference(BuildMI(MBB, MI, DL, TII->get(StoreOpc)), SS, 16) in runOnMachineFunction()
404 addFrameReference(BuildMI(MBB, MI, DL, TII->get(StoreOpc)), SS, 32) in runOnMachineFunction()
406 addFrameReference(BuildMI(MBB, MI, DL, TII->get(StoreOpc)), SS, 48) in runOnMachineFunction()
410 addFrameReference(BuildMI(MBB, MI, DL, TII->get(X86::MOV8mi)), SS).addImm(1); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp365 int SS = Register::stackSlot2Index(li->reg()); in ColorSlots() local
368 SlotMapping[SS] = NewSS; in ColorSlots()
369 RevMap[NewSS].push_back(SS); in ColorSlots()
372 Changed |= (SS != NewSS); in ColorSlots()
377 int SS = Register::stackSlot2Index(li->reg()); in ColorSlots() local
378 li->setWeight(SlotWeights[SS]); in ColorSlots()
393 for (unsigned SS = 0, SE = SSRefs.size(); SS != SE; ++SS) { in ColorSlots() local
394 int NewFI = SlotMapping[SS]; in ColorSlots()
395 if (NewFI == -1 || (NewFI == (int)SS)) in ColorSlots()
399 SmallVectorImpl<MachineMemOperand *> &RefMMOs = SSRefs[SS]; in ColorSlots()
/freebsd/crypto/openssl/test/
H A Dstack_test.c32 } SS; typedef
41 DEFINE_STACK_OF(SS) in DEFINE_SPECIAL_STACK_OF()
258 static SS *SS_copy(const SS *p) in SS_copy()
260 SS *q = OPENSSL_malloc(sizeof(*q)); in SS_copy()
267 static void SS_free(SS *p) { in SS_free()
273 STACK_OF(SS) *s = sk_SS_new_null(); in test_SS_stack()
274 STACK_OF(SS) *r = NULL; in test_SS_stack()
275 SS *v[10], *p; in test_SS_stack()
/freebsd/contrib/kyua/integration/
H A Dcmd_report_junit_test.sh115 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
116 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
155 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
156 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
233 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
234 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
273 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
274 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStreamChecker.cpp252 inline void assertStreamStateOpened(const StreamState *SS) { in assertStreamStateOpened() argument
253 assert(SS->isOpened() && "Stream is expected to be opened"); in assertStreamStateOpened()
639 const StreamState *SS = nullptr; member
653 SS = State->get<StreamMap>(StreamSym); in Init()
654 if (!SS) in Init()
656 NewES = SS->ErrorState; in Init()
661 assertStreamStateOpened(SS); in Init()
666 bool isStreamEof() const { return SS->ErrorState == ErrorFEof; } in isStreamEof()
718 bool SetFeof = NewES.FEof && !SS->ErrorState.FEof; in getFailureNoteTag()
719 bool SetFerror = NewES.FError && !SS->ErrorState.FError; in getFailureNoteTag()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedTemplate.h62 ParsedTemplateArgument(const CXXScopeSpec &SS, in ParsedTemplateArgument() argument
66 Arg(Template.getAsOpaquePtr()), SS(SS), Loc(TemplateLoc) {} in ParsedTemplateArgument()
100 return SS; in getScopeSpec()
128 CXXScopeSpec SS; variable
H A DSemaInternal.h90 Scope *S, CXXScopeSpec *SS, in TypoCorrectionConsumer() argument
96 SS(SS ? std::make_unique<CXXScopeSpec>(*SS) : nullptr), in TypoCorrectionConsumer()
99 Namespaces(SemaRef.Context, SemaRef.CurContext, SS), in TypoCorrectionConsumer()
201 const CXXScopeSpec *getSS() const { return SS.get(); } in getSS()
307 std::unique_ptr<CXXScopeSpec> SS; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/ADT/
H A DStringMap.h31 std::ostringstream SS; variable
32 SS << E << ",";
33 Lines.push_back(SS.str());
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h142 std::stringstream SS; in toString()
144 SS << arg << " "; in toString()
146 SS << ">" << getOutputFile() << " "; in toString()
148 SS << "2>&1 "; in toString()
149 std::string result = SS.str(); in toString()
141 std::stringstream SS; toString() local
/freebsd/lib/libc/string/
H A Dmemchr.c29 #define SS (sizeof(size_t)) macro
47 for (w = (const void *)s; n >= SS && !HASZERO(*w ^ k); in memchr()
48 w++, n -= SS) in memchr()

12345678910