Home
last modified time | relevance | path

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

12345678910>>...33

/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyTraverse.h395 static void print(const SExpr *E, StreamType &SS) { in print() argument
397 printer.printSExpr(E, SS, Prec_MAX); in print()
403 void newline(StreamType &SS) { in newline() argument
404 SS << "\n"; in newline()
460 void printBlockLabel(StreamType & SS, const BasicBlock *BB, int index) { in printBlockLabel() argument
462 SS << "BB_null"; in printBlockLabel()
465 SS << "BB_"; in printBlockLabel()
466 SS << BB->blockID(); in printBlockLabel()
468 SS << ":"; in printBlockLabel()
469 SS << index; in printBlockLabel()
[all …]
/external/clang/lib/Sema/
DSemaCXXScopeSpec.cpp76 DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS, in computeDeclContext() argument
78 if (!SS.isSet() || SS.isInvalid()) in computeDeclContext()
81 NestedNameSpecifier *NNS = SS.getScopeRep(); in computeDeclContext()
127 diagnoseMissingImport(SS.getLastQualifierNameLoc(), PartialSpec, in computeDeclContext()
169 bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) { in isDependentScopeSpecifier() argument
170 if (!SS.isSet() || SS.isInvalid()) in isDependentScopeSpecifier()
173 return SS.getScopeRep()->isDependent(); in isDependentScopeSpecifier()
201 bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS, in RequireCompleteDeclContext() argument
220 SourceLocation loc = SS.getLastQualifierNameLoc(); in RequireCompleteDeclContext()
221 if (loc.isInvalid()) loc = SS.getRange().getBegin(); in RequireCompleteDeclContext()
[all …]
DSemaExprMember.cpp197 const CXXScopeSpec &SS, in diagnoseInstanceReference() argument
202 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin()); in diagnoseInstanceReference()
219 else if (ContextClass && RepClass && SS.isEmpty() && !InStaticMethod && in diagnoseInstanceReference()
235 Sema::BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS, in BuildPossibleImplicitMemberExpr() argument
242 return BuildImplicitMemberExpr(SS, TemplateKWLoc, R, TemplateArgs, true, S); in BuildPossibleImplicitMemberExpr()
247 return BuildImplicitMemberExpr(SS, TemplateKWLoc, R, TemplateArgs, false, in BuildPossibleImplicitMemberExpr()
259 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, false, TemplateArgs); in BuildPossibleImplicitMemberExpr()
260 return BuildDeclarationNameExpr(SS, R, false); in BuildPossibleImplicitMemberExpr()
264 diagnoseInstanceReference(*this, SS, R.getRepresentativeDecl(), in BuildPossibleImplicitMemberExpr()
459 const CXXScopeSpec &SS, in ActOnDependentMemberExpr() argument
[all …]
DSemaTemplate.cpp139 CXXScopeSpec &SS, in isTemplateName() argument
172 LookupTemplateName(R, S, SS, ObjectType, EnteringContext, in isTemplateName()
199 if (SS.isSet() && !SS.isInvalid()) { in isTemplateName()
200 NestedNameSpecifier *Qualifier = SS.getScopeRep(); in isTemplateName()
228 const CXXScopeSpec *SS, in DiagnoseUnknownTemplateName() argument
234 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) || in DiagnoseUnknownTemplateName()
235 computeDeclContext(*SS)) in DiagnoseUnknownTemplateName()
240 NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep(); in DiagnoseUnknownTemplateName()
251 Scope *S, CXXScopeSpec &SS, in LookupTemplateName() argument
262 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); in LookupTemplateName()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp173 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) override { in ComputeInstructionState() argument
176 return visitCallSite(cast<CallInst>(&I), ChangedValues, SS); in ComputeInstructionState()
178 return visitCallSite(cast<InvokeInst>(&I), ChangedValues, SS); in ComputeInstructionState()
180 return visitLoad(*cast<LoadInst>(&I), ChangedValues, SS); in ComputeInstructionState()
182 return visitReturn(*cast<ReturnInst>(&I), ChangedValues, SS); in ComputeInstructionState()
184 return visitSelect(*cast<SelectInst>(&I), ChangedValues, SS); in ComputeInstructionState()
186 return visitStore(*cast<StoreInst>(&I), ChangedValues, SS); in ComputeInstructionState()
188 return visitInst(I, ChangedValues, SS); in ComputeInstructionState()
244 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) { in visitReturn() argument
251 MergeValues(SS.getValueState(RegI), SS.getValueState(RetF)); in visitReturn()
[all …]
/external/clang/include/clang/Sema/
DParsedTemplate.h63 ParsedTemplateArgument(const CXXScopeSpec &SS, in ParsedTemplateArgument() argument
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { } in ParsedTemplateArgument()
102 return SS; in getScopeSpec()
130 CXXScopeSpec SS; variable
150 CXXScopeSpec SS; member
199 new (&TemplateId->SS) CXXScopeSpec(); in Allocate()
211 SS.~CXXScopeSpec(); in Destroy()
/external/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-smd/
DREADME.md6 The SS is able to receive system messages matching a specified
7 class filter, and issue system messages also using SS payload
10 Both a direct api lws_smd participant and an SS based one are instantiated.
13 When the Secure Stream is created, it asks to send using normal the SS api.
14 In the SS tx callback, it prepares a header and then send a NETWORK class
28 The run ./bin/lws-minimal-secure-streams-smd alone (local SS and direct SMD tests)
30 ./bin-lws-minimal-secure-streams-smd-client in the other (SS proxy tests)
43 streamtype "_lws_smd", creating a local SS handle.
45 2) The SS creation request is proxied to the SS proxy process over Unix Domain
58 The minimal example produces a variety of messages on the SS link, including
[all …]
/external/clang/test/OpenMP/
Dteams_codegen.cpp113 struct SS{ struct
118 SS<int> Gbla; argument
119 SS<long long> Gblb;
125 SS<int> la; in teams_template_arg()
126 SS<long long> lb; in teams_template_arg()
177 struct SS{ struct
215 SS<int, 123, 456> V; in teams_template_struct()
Dsimd_ast_print.cpp9 struct SS { struct
10 SS(): a(0) {} in SS() function
11 SS(int v) : a(v) {} in SS() argument
41 class S8 : public S7<SS> {
45 S8(int v) : S7<SS>(v){ in S8()
46 #pragma omp simd aligned(S7<SS>::a) in S8()
/external/clang/test/CodeGen/
D2002-07-14-MiscTests3.c18 struct SubStruct SS; member
45 if (i) R.SS = Q.SS; in F0()
46 Q.SSP = &R.SS; in F0()
48 return Q.SS.Y + i + R.y - Q.c; in F0()
54 if (i) R.SS = Q->SS; in F1()
59 return Q->SS.Y+i+R.y-Q->c; in F1()
/external/clang/lib/Parse/
DParseExprCXX.cpp82 IdentifierInfo &II, CXXScopeSpec &SS) { in CheckForTemplateAndDigraph() argument
94 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false, in CheckForTemplateAndDigraph()
187 bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS, in ParseOptionalCXXScopeSpecifier() argument
201 SS); in ParseOptionalCXXScopeSpecifier()
210 SS = TemplateId->SS; in ParseOptionalCXXScopeSpecifier()
237 if (Actions.ActOnCXXGlobalScopeSpecifier(ConsumeToken(), SS)) in ParseOptionalCXXScopeSpecifier()
253 return Actions.ActOnSuperScopeSpecifier(SuperLoc, ConsumeToken(), SS); in ParseOptionalCXXScopeSpecifier()
268 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc)) in ParseOptionalCXXScopeSpecifier()
269 SS.SetInvalid(SourceRange(DeclLoc, CCLoc)); in ParseOptionalCXXScopeSpecifier()
291 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext); in ParseOptionalCXXScopeSpecifier()
[all …]
DParser.cpp1389 void Parser::AnnotateScopeToken(CXXScopeSpec &SS, bool IsNewAnnotation) { in AnnotateScopeToken() argument
1397 Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS)); in AnnotateScopeToken()
1398 Tok.setAnnotationRange(SS.getRange()); in AnnotateScopeToken()
1424 CXXScopeSpec SS; in TryAnnotateName() local
1426 ParseOptionalCXXScopeSpecifier(SS, nullptr, EnteringContext)) in TryAnnotateName()
1429 if (Tok.isNot(tok::identifier) || SS.isInvalid()) { in TryAnnotateName()
1430 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, false, SS, in TryAnnotateName()
1444 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, false, SS, in TryAnnotateName()
1457 getCurScope(), SS, Name, NameLoc, Next, IsAddressOfOperand, in TryAnnotateName()
1458 SS.isEmpty() ? std::move(CCC) : nullptr); in TryAnnotateName()
[all …]
/external/ImageMagick/PerlMagick/t/reference/write/composite/
DCopyRed.miff41SS��SS�}SS�7SS�3SS�<SS�?SS�^SS��SS��SS��SS��SS��SS��SS��SS��SS��SS��SS��SS��SS�~SS��SS��SS��SS�SS
DCopyBlue.miff41SS��SS��SSj�SS+�SS(�SS/�SS.�SS5�SSE�SSE�SS<�SSA�SSD�SSD�SSD�SS?�SS=�SS>�SS4�SS,�SS/�SS.�SS+�SS+�SS
/external/libaom/third_party/libyuv/source/
Drow_any.cc31 #define SS(width, shift) (((width) + (1 << (shift)) - 1) >> (shift)) macro
46 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
47 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
52 SS(r, DUVSHIFT) * BPP); \
84 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
85 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
88 SS(r, DUVSHIFT) * BPP); \
153 memcpy(temp + 128, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
154 memcpy(temp + 256, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
156 temp[128 + SS(r, UVSHIFT)] = temp[128 + SS(r, UVSHIFT) - 1]; \
[all …]
/external/libvpx/third_party/libyuv/source/
Drow_any.cc31 #define SS(width, shift) (((width) + (1 << (shift)) - 1) >> (shift)) macro
46 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
47 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
52 SS(r, DUVSHIFT) * BPP); \
81 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
82 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
85 SS(r, DUVSHIFT) * BPP); \
138 memcpy(temp + 128, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
139 memcpy(temp + 256, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
141 temp[128 + SS(r, UVSHIFT)] = temp[128 + SS(r, UVSHIFT) - 1]; \
[all …]
/external/libyuv/files/source/
Drow_any.cc31 #define SS(width, shift) (((width) + (1 << (shift)) - 1) >> (shift)) macro
46 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
47 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
51 SS(r, DUVSHIFT) * BPP); \
79 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
80 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
83 temp[64 + SS(r, UVSHIFT)] = temp[64 + SS(r, UVSHIFT) - 1]; \
84 temp[128 + SS(r, UVSHIFT)] = temp[128 + SS(r, UVSHIFT) - 1]; \
89 SS(r, DUVSHIFT) * BPP); \
135 memcpy(temp + 16, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT) * SBPP); \
[all …]
/external/llvm/lib/CodeGen/
DLiveVariables.cpp263 for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS) in HandlePhysRegUse() local
264 Processed.insert(*SS); in HandlePhysRegUse()
353 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); SS.isValid(); in HandlePhysRegKill() local
354 ++SS) in HandlePhysRegKill()
355 PartUses.insert(*SS); in HandlePhysRegKill()
390 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); in HandlePhysRegKill() local
391 SS.isValid(); ++SS) in HandlePhysRegKill()
392 PhysRegUse[*SS] = LastRefOrPartRef; in HandlePhysRegKill()
394 for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS) in HandlePhysRegKill() local
395 PartUses.erase(*SS); in HandlePhysRegKill()
[all …]
DStackSlotColoring.cpp288 int SS = TargetRegisterInfo::stackSlot2Index(li->reg); in ColorSlots() local
291 SlotMapping[SS] = NewSS; in ColorSlots()
292 RevMap[NewSS].push_back(SS); in ColorSlots()
295 Changed |= (SS != NewSS); in ColorSlots()
301 int SS = TargetRegisterInfo::stackSlot2Index(li->reg); in ColorSlots() local
302 li->weight = SlotWeights[SS]; in ColorSlots()
317 for (unsigned SS = 0, SE = SSRefs.size(); SS != SE; ++SS) { in ColorSlots() local
318 int NewFI = SlotMapping[SS]; in ColorSlots()
319 if (NewFI == -1 || (NewFI == (int)SS)) in ColorSlots()
323 SmallVectorImpl<MachineMemOperand *> &RefMMOs = SSRefs[SS]; in ColorSlots()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveVariables.cpp263 for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS) in HandlePhysRegUse() local
264 Processed.insert(*SS); in HandlePhysRegUse()
353 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); SS.isValid(); in HandlePhysRegKill() local
354 ++SS) in HandlePhysRegKill()
355 PartUses.insert(*SS); in HandlePhysRegKill()
390 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); in HandlePhysRegKill() local
391 SS.isValid(); ++SS) in HandlePhysRegKill()
392 PhysRegUse[*SS] = LastRefOrPartRef; in HandlePhysRegKill()
394 for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS) in HandlePhysRegKill() local
395 PartUses.erase(*SS); in HandlePhysRegKill()
[all …]
DStackSlotColoring.cpp334 int SS = Register::stackSlot2Index(li->reg); in ColorSlots() local
337 SlotMapping[SS] = NewSS; in ColorSlots()
338 RevMap[NewSS].push_back(SS); in ColorSlots()
341 Changed |= (SS != NewSS); in ColorSlots()
347 int SS = Register::stackSlot2Index(li->reg); in ColorSlots() local
348 li->weight = SlotWeights[SS]; in ColorSlots()
363 for (unsigned SS = 0, SE = SSRefs.size(); SS != SE; ++SS) { in ColorSlots() local
364 int NewFI = SlotMapping[SS]; in ColorSlots()
365 if (NewFI == -1 || (NewFI == (int)SS)) in ColorSlots()
369 SmallVectorImpl<MachineMemOperand *> &RefMMOs = SSRefs[SS]; in ColorSlots()
/external/python/pyyaml/tests/data/
Dspec-02-10.data4 # Following node labeled SS
5 - &SS Sammy Sosa
7 - *SS # Subsequent occurrence
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-02-10.data4 # Following node labeled SS
5 - &SS Sammy Sosa
7 - *SS # Subsequent occurrence
/external/llvm/test/YAMLParser/
Dspec-02-10.test6 # Following node labeled SS
7 - &SS Sammy Sosa
9 - *SS # Subsequent occurrence
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dlower_quantized.mlir11 // CHECK-DAG: %[[SS:.*]] = "tf.Mul"(%[[SHIFT]], %[[SCALE]])
12 // CHECK-DAG: %[[RESULT:.*]] = "tf.AddV2"(%[[SS]], %arg1)
25 // CHECK-NEXT: %[[SS:.*]] = "tf.Mul"(%[[CAST]], %[[SCALE]])
26 // CHECK-NEXT: %[[RESULT:.*]] = "tf.AddV2"(%[[SS]], %arg1)
41 // CHECK-DAG: %[[SS:.*]] = "tf.Mul"(%[[SHIFT]], %[[SCALE]])
42 // CHECK-DAG: %[[F32_RESULT:.*]] = "tf.AddV2"(%[[SS]], %arg1)

12345678910>>...33