Searched defs:PS (Results 1 - 23 of 23) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dctype.c16 PS = GIT_SPACE | GIT_PRINT_EXTRA, enumerator in enum:__anon25177
24 PS,P, P, P, R, P, P, P, R, R, G, R, P, P, R, P, /* 32.. 47 */
/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/clang/test/CodeGen/
H A Dc11atomics-ios.c145 typedef struct { short x, y, z; } PS; typedef in typeref:struct:__anon18627
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 Ddebug-info-crash.c27 } PS; typedef in typeref:struct:P
30 PS p2;
H A Dc11atomics.c274 typedef struct { short x, y, z; } PS; typedef in typeref:struct:__anon18629
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 Dbuiltin-memfns.c70 struct PS { struct
73 struct PS ps;
77 __builtin_memcpy(arg, ps.modes, sizeof(struct PS));
/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/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/content/browser/fileapi/
H A Dsandbox_file_system_backend_unittest.cc27 // PS stands for path separator.
29 #define PS "\\" macro
31 #define PS "/"
43 {storage::kFileSystemTypeTemporary, "http://foo:1/", "000" PS "t"},
44 {storage::kFileSystemTypePersistent, "http://foo:1/", "000" PS "p"},
45 {storage::kFileSystemTypeTemporary, "http://bar.com/", "001" PS "t"},
46 {storage::kFileSystemTypePersistent, "http://bar.com/", "001" PS "p"},
47 {storage::kFileSystemTypeTemporary, "https://foo:2/", "002" PS "t"},
48 {storage::kFileSystemTypePersistent, "https://foo:2/", "002" PS "p"},
49 {storage::kFileSystemTypeTemporary, "https://bar.com/", "003" PS "
[all...]
/external/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp197 BasicBlock *PS = (PS1 == BB) ? PS2 : PS1; local
205 // PS is the successor which is not BB. Check successors to identify
207 if (Preds.count(PS) == 0) {
212 BranchInst *BPS = dyn_cast<BranchInst>(PS->getTerminator());
214 // Case 1: PS(BB3) should be an unconditional branch.
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp110 PS = 1, PD = 2, XS = 3, XD = 4 enumerator in enum:X86Local::__anon26610
284 else if (OpPrefix == X86Local::PS)
298 else if (OpPrefix == X86Local::PS)
313 else if (OpPrefix == X86Local::PS)
327 else if (OpPrefix == X86Local::PS)
342 else if (OpPrefix == X86Local::PS)
367 else if (OpPrefix == X86Local::PS)
387 else if (HasVEX_WPrefix && OpPrefix == X86Local::PS)
389 else if (HasVEX_LPrefix && OpPrefix == X86Local::PS)
395 else if (OpPrefix == X86Local::PS)
[all...]
/external/clang/lib/AST/
H A DDeclTemplate.cpp395 SmallVectorImpl<ClassTemplatePartialSpecializationDecl *> &PS) {
398 PS.clear();
399 PS.reserve(PartialSpecs.size());
403 PS.push_back(P->getMostRecentDecl());
1027 SmallVectorImpl<VarTemplatePartialSpecializationDecl *> &PS) {
1030 PS.clear();
1031 PS.reserve(PartialSpecs.size());
1036 PS.push_back(P->getMostRecentDecl());
394 getPartialSpecializations( SmallVectorImpl<ClassTemplatePartialSpecializationDecl *> &PS) argument
1026 getPartialSpecializations( SmallVectorImpl<VarTemplatePartialSpecializationDecl *> &PS) argument
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp129 ParsedStatus PS = IsUnparsed; local
140 PS = IsUnparsedNoDirectives;
143 UpdateParsedFileStatus(*SrcManager, FID, PS);
771 ParsedStatus PS) {
781 if (PS == IsParsed) {
790 if (PS == IsUnparsedNoDirectives)
769 UpdateParsedFileStatus(SourceManager &SM, FileID FID, ParsedStatus PS) argument
/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());
1195 if (Optional<PostStmt> PS = progPoint.getAs<PostStmt>()) {
1202 const ProgramPointTag *tag = PS->getTag();
1204 return VisitTrueTest(cast<Expr>(PS->getStmt()), true,
1207 return VisitTrueTest(cast<Expr>(PS
[all...]
/external/clang/include/clang/AST/
H A DDeclTemplate.h1576 SpecializedPartialSpecialization *PS local
1578 PS->PartialSpecialization = PartialSpec;
1579 PS->TemplateArgs = TemplateArgs;
1580 SpecializedTemplate = PS;
1934 SmallVectorImpl<ClassTemplatePartialSpecializationDecl *> &PS);
2435 SpecializedPartialSpecialization *PS = local
2437 PS->PartialSpecialization = PartialSpec;
2438 PS->TemplateArgs = TemplateArgs;
2439 SpecializedTemplate = PS;
2759 SmallVectorImpl<VarTemplatePartialSpecializationDecl *> &PS);
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86BaseInfo.h347 // PS, PD - Prefix code for packed single and double precision vector
349 PS = 1 << OpPrefixShift, PD = 2 << OpPrefixShift, enumerator in enum:llvm::X86II::__anon26173
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_func.cpp596 CPDF_PSEngine& PS = (CPDF_PSEngine&)m_PS; local
597 PS.Reset();
600 PS.Push(inputs[i]);
602 PS.Execute();
603 if (PS.GetStackSize() < m_nOutputs) {
607 results[m_nOutputs - i - 1] = PS.Pop();
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java937 PS(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1714 ClassTemplateSpecializationDecl::SpecializedPartialSpecialization *PS local
1717 PS->PartialSpecialization
1719 PS->TemplateArgs = ArgList;
1720 D->SpecializedTemplate = PS;
1840 VarTemplateSpecializationDecl::SpecializedPartialSpecialization *PS = local
1843 PS->PartialSpecialization =
1845 PS->TemplateArgs = ArgList;
1846 D->SpecializedTemplate = PS;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 494 milliseconds