Searched refs:PS (Results 1 - 25 of 41) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dc11atomics-ios.c145 typedef struct { short x, y, z; } PS; typedef in typeref:struct:__anon15876
147 void testPromotedStruct(_Atomic(PS) *fp) {
150 // CHECK-NEXT: [[F:%.*]] = alloca [[PS:%.*]], align 2
159 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 0
161 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 1
163 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 2
165 __c11_atomic_init(fp, (PS){1,2,3});
170 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 0
172 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 1
174 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T
[all...]
H A Dc11atomics.c274 typedef struct { short x, y, z; } PS; typedef in typeref:struct:__anon15878
276 void testPromotedStruct(_Atomic(PS) *fp) {
279 // CHECK-NEXT: [[F:%.*]] = alloca [[PS:%.*]], align 2
283 // CHECK-NEXT: [[TMP2:%.*]] = alloca %struct.PS, align 2
291 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 0
293 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 1
295 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 2
297 __c11_atomic_init(fp, (PS){1,2,3});
302 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T0]], i32 0, i32 0
304 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]]* [[T
[all...]
H A Ddebug-info-crash.c27 } PS; typedef in typeref:struct:P
30 PS p2;
H A Dbuiltin-memfns.c70 struct PS { struct
73 struct PS ps;
77 __builtin_memcpy(arg, ps.modes, sizeof(struct PS));
/external/clang/docs/tools/
H A DMakefile30 rm -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
57 PS := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_PS_DIR)%.ps, $(POD)) macro
81 ps: $(PS)
86 $(Verb) $(RM) -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
103 install-ps:: $(PS)
104 $(Echo) Installing PS Clang Tools Documentation
106 $(Verb) $(DataInstall) $(PS) $(PS_DIR)
/external/valgrind/main/memcheck/tests/amd64/
H A Dsse_memory.c176 #define PS 16 macro
180 TEST_INSN( &AllMask, PS,addps)
182 TEST_INSN( &AllMask, PS,andnps)
183 TEST_INSN( &AllMask, PS,andps)
184 TEST_INSN( &AllMask, PS,cmpeqps)
186 TEST_INSN( &AllMask, PS,cmpleps)
188 TEST_INSN( &AllMask, PS,cmpltps)
190 TEST_INSN( &AllMask, PS,cmpneqps)
192 TEST_INSN( &AllMask, PS,cmpnleps)
194 TEST_INSN( &AllMask, PS,cmpnltp
[all...]
/external/valgrind/main/memcheck/tests/x86/
H A Dsse_memory.c176 #define PS 16 macro
180 TEST_INSN( &AllMask, PS,addps)
182 TEST_INSN( &AllMask, PS,andnps)
183 TEST_INSN( &AllMask, PS,andps)
184 TEST_INSN( &AllMask, PS,cmpeqps)
186 TEST_INSN( &AllMask, PS,cmpleps)
188 TEST_INSN( &AllMask, PS,cmpltps)
190 TEST_INSN( &AllMask, PS,cmpneqps)
192 TEST_INSN( &AllMask, PS,cmpnleps)
194 TEST_INSN( &AllMask, PS,cmpnltp
[all...]
/external/chromium_org/webkit/browser/fileapi/
H A Dsandbox_file_system_backend_unittest.cc23 // PS stands for path separator.
25 #define PS "\\" macro
27 #define PS "/" macro
40 "000" PS "t" },
42 "000" PS "p" },
44 "001" PS "t" },
46 "001" PS "p" },
48 "002" PS "t" },
50 "002" PS "p" },
52 "003" PS "
[all...]
/external/linux-tools-perf/util/
H A Dctype.c16 PS = GIT_SPACE | GIT_PRINT_EXTRA, enumerator in enum:__anon20829
24 PS,P, P, P, R, P, P, P, R, R, G, R, P, P, R, P, /* 32.. 47 */
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefBranchChecker.cpp93 if (Optional<PostStmt> PS = P.getAs<PostStmt>())
94 if (PS->getStmt() == Ex)
H A DMacOSKeychainAPIChecker.cpp532 else if (Optional<clang::PostStmt> PS = P.getAs<clang::PostStmt>())
533 AllocStmt = PS->getStmt();
/external/clang/test/SemaCXX/
H A Dwarn-memset-bad-sizeof.cpp9 typedef S* PS; typedef
30 PS ps2 = &s;
42 // expected-warning {{'memset' call operates on objects of type 'S' while the size is based on a different type 'PS' (aka 'S *')}} expected-note{{did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?}}
45 memset(ps2, 0, sizeof(PS)); // \
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java102 private static final List<String> PS = ImmutableList.of( field in class:InternetDomainNameTest
215 for (String name : PS) {
335 VALID_NAME, PS, NO_PS, NON_PS);
/external/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp195 BasicBlock *PS = (PS1 == BB) ? PS2 : PS1; local
203 // PS is the successor which is not BB. Check successors to identify
205 if (Preds.count(PS) == 0) {
210 BranchInst *BPS = dyn_cast<BranchInst>(PS->getTerminator());
212 // Case 1: PS(BB3) should be an unconditional branch.
/external/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h263 void UpdateParsedFileStatus(SourceManager &SM, FileID FID, ParsedStatus PS);
/external/clang/lib/AST/
H A DDeclTemplate.cpp396 SmallVectorImpl<ClassTemplatePartialSpecializationDecl *> &PS) {
399 PS.clear();
400 PS.resize(PartialSpecs.size());
404 assert(!PS[P->getSequenceNumber()]);
405 PS[P->getSequenceNumber()] = P->getMostRecentDecl();
1061 SmallVectorImpl<VarTemplatePartialSpecializationDecl *> &PS) {
1064 PS.clear();
1065 PS.resize(PartialSpecs.size());
1070 assert(!PS[P->getSequenceNumber()]);
1071 PS[
395 getPartialSpecializations( SmallVectorImpl<ClassTemplatePartialSpecializationDecl *> &PS) argument
1060 getPartialSpecializations( SmallVectorImpl<VarTemplatePartialSpecializationDecl *> &PS) argument
[all...]
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp128 ParsedStatus PS = IsUnparsed; local
139 PS = IsUnparsedNoDirectives;
142 UpdateParsedFileStatus(*SrcManager, FID, PS);
717 ParsedStatus PS) {
727 if (PS == IsParsed) {
736 if (PS == IsUnparsedNoDirectives)
715 UpdateParsedFileStatus(SourceManager &SM, FileID FID, ParsedStatus PS) argument
/external/clang/include/clang/AST/
H A DDeclTemplate.h1569 SpecializedPartialSpecialization *PS local
1571 PS->PartialSpecialization = PartialSpec;
1572 PS->TemplateArgs = TemplateArgs;
1573 SpecializedTemplate = PS;
1949 SmallVectorImpl<ClassTemplatePartialSpecializationDecl *> &PS);
2455 SpecializedPartialSpecialization *PS = local
2457 PS->PartialSpecialization = PartialSpec;
2458 PS->TemplateArgs = TemplateArgs;
2459 SpecializedTemplate = PS;
2800 SmallVectorImpl<VarTemplatePartialSpecializationDecl *> &PS);
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp490 Optional<PostStore> PS = Succ->getLocationAs<PostStore>(); local
491 if (!PS || PS->getLocationValue() != R)
551 if (Optional<PostStmt> PS = StoreSite->getLocationAs<PostStmt>()) {
552 const Stmt *S = PS->getStmt();
566 SVal V = State->getSVal(S, PS->getLocationContext());
1193 if (Optional<PostStmt> PS = progPoint.getAs<PostStmt>()) {
1200 const ProgramPointTag *tag = PS->getTag();
1202 return VisitTrueTest(cast<Expr>(PS->getStmt()), true,
1205 return VisitTrueTest(cast<Expr>(PS
[all...]
H A DExprEngineCXX.cpp73 PostStmt PS(CallExpr, LCtx);
81 Bldr.generateNode(PS, State, *I);
/external/chromium_org/third_party/lcov/contrib/galaxy/
H A Dposterize.pl76 %!PS-Adobe-1.0
/external/chromium_org/third_party/lcov-1.9/contrib/galaxy/
H A Dposterize.pl76 %!PS-Adobe-1.0
/external/llvm/lib/Target/R600/
H A DR600Packetizer.cpp89 Result[Dst] = AMDGPU::PS;
/external/chromium_org/v8/src/mips/
H A Dconstants-mips.h376 PS = ((2 << 3) + 6) << 21,
423 // COP1 Encoding of Function Field When rs=PS.
/external/v8/src/mips/
H A Dconstants-mips.h371 PS = ((2 << 3) + 6) << 21,
418 // COP1 Encoding of Function Field When rs=PS.

Completed in 769 milliseconds

12