HomeSort by relevance Sort by last modified time
    Searched refs:PS (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGen/
c11atomics-ios.c 145 typedef struct { short x, y, z; } PS;
147 void testPromotedStruct(_Atomic(PS) *fp) {
150 // CHECK-NEXT: [[F:%.*]] = alloca [[PS:%.*]], align 2
159 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]], [[PS]]* [[T0]], i32 0, i32 0
161 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]], [[PS]]* [[T0]], i32 0, i32 1
163 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]], [[PS]]* [[T0]], i32 0, i32 2
165 __c11_atomic_init(fp, (PS){1,2,3})
    [all...]
c11atomics.c 294 typedef struct { short x, y, z; } PS;
295 _Atomic PS testPromotedStructGlobal = (PS){1, 2, 3};
297 void testPromotedStruct(_Atomic(PS) *fp) {
300 // CHECK-NEXT: [[F:%.*]] = alloca [[PS:%.*]], align 2
304 // CHECK-NEXT: [[TMP2:%.*]] = alloca %struct.PS, align 2
312 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]], [[PS]]* [[T0]], i32 0, i32 0
314 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[PS]], [[PS]]* [[T0]], i32 0, i32
    [all...]
debug-info-crash.c 27 } PS;
30 PS p2;
pass-object-size.c 9 #define PS(N) __attribute__((pass_object_size(N)))
14 int ObjectSize0(void *const p PS(0)) {
20 int ObjectSize1(void *const p PS(1)) {
26 int ObjectSize2(void *const p PS(2)) {
32 int ObjectSize3(void *const p PS(3)) {
94 int NoViableOverloadObjectSize0(void *const p PS(0))
99 int NoViableOverloadObjectSize1(void *const p PS(1))
104 int NoViableOverloadObjectSize2(void *const p PS(2))
109 int NoViableOverloadObjectSize3(void *const p PS(3))
115 int NoViableOverloadObjectSize0(void *const p PS(0)
    [all...]
builtin-memfns.c 70 struct PS {
73 struct PS ps; variable in typeref:struct:PS
77 __builtin_memcpy(arg, ps.modes, sizeof(struct PS));
  /external/clang/test/Sema/
pass-object-size.c 20 #define PS(N) __attribute__((pass_object_size(N)))
22 void Overloaded(void *p PS(0)) overloaded; //expected-note{{previous declaration is here}}
23 void Overloaded(void *p PS(1)) overloaded; //expected-error{{conflicting pass_object_size attributes on parameters}}
24 void Overloaded2(void *p PS(1), void *p2 PS(0)) overloaded; //expected-note{{previous declaration is here}}
25 void Overloaded2(void *p PS(0), void *p2 PS(1)) overloaded; //expected-error{{conflicting pass_object_size attributes on parameters}}
27 void Overloaded3(void *p PS(0), void *p2) overloaded; //expected-note{{previous declaration is here}}
28 void Overloaded3(void *p, void *p2 PS(0)) overloaded; //expected-error{{conflicting pass_object_size attributes on parameters}}
34 void NotOverloaded(void *p PS(0))
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
mincore.cc 10 size_t PS = sysconf(_SC_PAGESIZE);
11 void *addr = mmap(nullptr, 20 * PS, PROT_READ | PROT_WRITE,
14 res = mincore(addr, 10 * PS, vec);
20 ((char *)addr)[i * PS] = 1;
21 res = mincore(addr, 10 * PS, vec);
27 ((char *)addr)[i * PS] = 1;
28 res = mincore(addr, 10 * PS, vec);
  /toolchain/binutils/binutils-2.25/opcodes/
rx-dis.c 104 #define PS (dis->stream)
105 #define PC(c) PR (PS, "%c", c)
145 PR (PS, "%s", opsize_names[opcode.size]);
155 PR (PS, "%s", size_names[oper->size]);
166 PR (PS, "%#x", oper->addend);
168 PR (PS, "%d", oper->addend);
172 PR (PS, "%s", register_names[oper->reg]);
176 PR (PS, "%d[%s]", oper->addend, register_names[oper->reg]);
178 PR (PS, "[%s]", register_names[oper->reg]);
181 PR (PS, "[%s+]", register_names[oper->reg])
    [all...]
rl78-dis.c 102 #define PS (dis->stream)
103 #define PC(c) PR (PS, "%c", c)
197 PR (PS, " \033[33mW\033[0m");
204 PR (PS, " \033[35m");
207 { PR (PS, "Z"); comma = ","; }
209 { PR (PS, "%sAC", comma); comma = ","; }
211 { PR (PS, "%sCY", comma); comma = ","; }
212 PR (PS, "\033[0m");
224 PR (PS, "es:");
232 PR (PS, "%s", condition_names[oper->condition])
    [all...]
msp430-dis.c 37 #define PS(x) (0xffff & (x))
201 PS ((short) (addr + 2) + dst));
216 sprintf (op, "&0x%04x", PS (dst));
271 sprintf (comm, "#0x%04x", PS (dst));
293 sprintf (op, "0x%04x", PS (dst));
295 PS ((short) addr + 2 + dst));
309 sprintf (op, "&0x%04x", PS (dst));
427 sprintf (op1, "0x%04x", PS (dst));
429 PS ((short) addr + 2 + dst));
450 sprintf (op1, "&0x%04x", PS (dst))
    [all...]
  /external/compiler-rt/test/msan/Linux/
mincore.cc 11 size_t PS = sysconf(_SC_PAGESIZE);
12 void *addr = mmap(nullptr, 20 * PS, PROT_READ | PROT_WRITE,
16 res = mincore(addr, 10 * PS, vec);
21 res = mincore(addr, 10 * PS + 42, vec);
26 res = mincore(addr, 10 * PS - 1, vec);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug117.go 12 type PS *S
18 func fn(p PS) int {
19 // p has type PS, and PS has no methods.
21 // and go looking in S without noticing PS.)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug117.go 12 type PS *S
18 func fn(p PS) int {
19 // p has type PS, and PS has no methods.
21 // and go looking in S without noticing PS.)
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/
Makefile 19 DST_PS_DIR=ps/
22 all:: html man ps
25 rm -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
49 PS := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_PS_DIR)%.ps, $(POD))
58 .SUFFIXES: .html .pod .1 .ps
67 $(DST_PS_DIR)%.ps: $(DST_MAN_DIR)%.1 $(DST_PS_DIR)/.dir
73 ps: $(PS)
78 $(Verb) $(RM) -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
    [all...]
  /prebuilts/go/darwin-x86/test/chan/
powser2.go 191 type PS *dch // power series
192 type PS2 *[2] PS // pair of power series
194 var Ones PS
195 var Twos PS
280 // print eval in floating point of PS at x=c to n terms
281 func Evaln(c *rat, U PS, n int) {
297 func Printn(U PS, n int){
310 func Print(U PS){
315 func eval(c *rat, U PS, n int) *rat{
328 func Split(U PS) *dch2
    [all...]
powser1.go 181 type PS *dch // power series
182 type PS2 *[2] PS // pair of power series
184 var Ones PS
185 var Twos PS
270 // print eval in floating point of PS at x=c to n terms
271 func evaln(c rat, U PS, n int) {
287 func printn(U PS, n int) {
301 func eval(c rat, U PS, n int) rat {
314 func Split(U PS) *dch2 {
321 func Add(U, V PS) PS
    [all...]
  /prebuilts/go/linux-x86/test/chan/
powser2.go 191 type PS *dch // power series
192 type PS2 *[2] PS // pair of power series
194 var Ones PS
195 var Twos PS
280 // print eval in floating point of PS at x=c to n terms
281 func Evaln(c *rat, U PS, n int) {
297 func Printn(U PS, n int){
310 func Print(U PS){
315 func eval(c *rat, U PS, n int) *rat{
328 func Split(U PS) *dch2
    [all...]
powser1.go 181 type PS *dch // power series
182 type PS2 *[2] PS // pair of power series
184 var Ones PS
185 var Twos PS
270 // print eval in floating point of PS at x=c to n terms
271 func evaln(c rat, U PS, n int) {
287 func printn(U PS, n int) {
301 func eval(c rat, U PS, n int) rat {
314 func Split(U PS) *dch2 {
321 func Add(U, V PS) PS
    [all...]
  /external/valgrind/memcheck/tests/amd64/
sse_memory.c 176 #define PS 16
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,cmpnltps
    [all...]
  /external/llvm/unittests/ProfileData/
SampleProfTest.cpp 148 ProfileSummary *PS = ProfileSummary::getFromMD(MD);
149 ASSERT_TRUE(PS);
150 VerifySummary(*PS);
151 delete PS;
158 PS = ProfileSummary::getFromMD(MD);
159 ASSERT_TRUE(PS);
160 VerifySummary(*PS);
161 delete PS;
  /external/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 110 if (auto *PS = dyn_cast_or_null<PDBSymbolPublicSymbol>(PublicSym.get())) {
114 if (!Func || Func->getVirtualAddress() == PS->getVirtualAddress())
115 return PS->getName();
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp 92 if (Optional<PostStmt> PS = P.getAs<PostStmt>())
93 if (PS->getStmt() == Ex)
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 198 ProfileSummary &PS) {
200 std::vector<ProfileSummaryEntry> &Res = PS.getDetailedSummary();
203 TheSummary->set(Summary::MaxFunctionCount, PS.getMaxFunctionCount());
204 TheSummary->set(Summary::MaxBlockCount, PS.getMaxCount());
205 TheSummary->set(Summary::MaxInternalBlockCount, PS.getMaxInternalCount());
206 TheSummary->set(Summary::TotalBlockCount, PS.getTotalCount());
207 TheSummary->set(Summary::TotalNumBlocks, PS.getNumCounts());
208 TheSummary->set(Summary::TotalNumFunctions, PS.getNumFunctions());
262 std::unique_ptr<ProfileSummary> PS = ISB.getSummary();
263 setSummary(TheSummary.get(), *PS);
    [all...]
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 9 typedef S* PS;
29 S* ps = &s; local
30 PS ps2 = &s;
39 memset(ps, 0, sizeof(ps)); // \
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)); // \
55 memmove(ps, 0, sizeof(ps)); // \
57 memcmp(ps, 0, sizeof(ps)); //
    [all...]
  /development/ndk/platforms/android-21/arch-mips/include/machine/
regnum.h 69 #define PS SR /* alias for SR */

Completed in 744 milliseconds

1 2 3 4 5 6