Searched refs:pc (Results 1 - 25 of 1040) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dpr4349.c12 union reg pc; member in struct:cpu
22 { &((cpu.pc).w[0]) }
27 { &((cpu.pc).b[0][1]) }
32 { &((cpu.pc).w[1]) }
37 { &((cpu.pc).b[1][1]) }
H A D2004-03-15-SimpleIndirectGoto.c8 void bar(int *pc) { argument
12 goto *l[*pc];
15 pc++;
16 goto *l[*pc];
/external/chromium_org/net/cookies/
H A Dparsed_cookie_unittest.cc14 ParsedCookie pc("a=b");
15 EXPECT_TRUE(pc.IsValid());
16 EXPECT_FALSE(pc.IsSecure());
17 EXPECT_EQ("a", pc.Name());
18 EXPECT_EQ("b", pc.Value());
49 ParsedCookie pc("aBc=" + input + " ; path=\"/\" ; httponly ");
50 EXPECT_TRUE(pc.IsValid());
51 EXPECT_FALSE(pc.IsSecure());
52 EXPECT_TRUE(pc.IsHttpOnly());
53 EXPECT_TRUE(pc
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_fd.h42 void FdAcquire(ThreadState *thr, uptr pc, int fd);
43 void FdRelease(ThreadState *thr, uptr pc, int fd);
44 void FdAccess(ThreadState *thr, uptr pc, int fd);
45 void FdClose(ThreadState *thr, uptr pc, int fd);
46 void FdFileCreate(ThreadState *thr, uptr pc, int fd);
47 void FdDup(ThreadState *thr, uptr pc, int oldfd, int newfd);
48 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd);
49 void FdEventCreate(ThreadState *thr, uptr pc, int fd);
50 void FdSignalCreate(ThreadState *thr, uptr pc, int fd);
51 void FdInotifyCreate(ThreadState *thr, uptr pc, in
[all...]
H A Dtsan_fd.cc50 static FdSync *allocsync(ThreadState *thr, uptr pc) { argument
51 FdSync *s = (FdSync*)user_alloc(thr, pc, sizeof(FdSync));
62 static void unref(ThreadState *thr, uptr pc, FdSync *s) { argument
68 user_free(thr, pc, s);
73 static FdDesc *fddesc(ThreadState *thr, uptr pc, int fd) { argument
81 void *p = user_alloc(thr, pc, size);
87 user_free(thr, pc, p);
93 static void init(ThreadState *thr, uptr pc, int fd, FdSync *s) { argument
94 FdDesc *d = fddesc(thr, pc, fd);
98 unref(thr, pc,
121 FdOnFork(ThreadState *thr, uptr pc) argument
153 FdAcquire(ThreadState *thr, uptr pc, int fd) argument
164 FdRelease(ThreadState *thr, uptr pc, int fd) argument
175 FdAccess(ThreadState *thr, uptr pc, int fd) argument
183 FdClose(ThreadState *thr, uptr pc, int fd) argument
199 FdFileCreate(ThreadState *thr, uptr pc, int fd) argument
206 FdDup(ThreadState *thr, uptr pc, int oldfd, int newfd) argument
217 FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd) argument
225 FdEventCreate(ThreadState *thr, uptr pc, int fd) argument
232 FdSignalCreate(ThreadState *thr, uptr pc, int fd) argument
239 FdInotifyCreate(ThreadState *thr, uptr pc, int fd) argument
246 FdPollCreate(ThreadState *thr, uptr pc, int fd) argument
253 FdSocketCreate(ThreadState *thr, uptr pc, int fd) argument
261 FdSocketAccept(ThreadState *thr, uptr pc, int fd, int newfd) argument
270 FdSocketConnecting(ThreadState *thr, uptr pc, int fd) argument
278 FdSocketConnect(ThreadState *thr, uptr pc, int fd) argument
[all...]
/external/chromium_org/v8/src/
H A Dinterpreter-irregexp.cc69 const byte* pc,
79 "pc = %02x, sp = %d, curpos = %d, curchar = %08x (%c), bc = %s" :
80 "pc = %02x, sp = %d, curpos = %d, curchar = %08x .%c., bc = %s";
82 pc - code_base,
89 printf(", %02x", pc[i]);
93 unsigned char b = pc[i];
108 pc, \
120 static int32_t Load32Aligned(const byte* pc) { argument
121 ASSERT((reinterpret_cast<intptr_t>(pc) & 3) == 0);
122 return *reinterpret_cast<const int32_t *>(pc);
68 TraceInterpreter(const byte* code_base, const byte* pc, int stack_depth, int current_position, uint32_t current_char, int bytecode_length, const char* bytecode_name) argument
126 Load16Aligned(const byte* pc) argument
166 const byte* pc = code_base; local
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dpackrender.h58 GLubyte *pc, *pixelHeaderPC; \
63 pc = gc->pc; \
77 if (pc + (size) > gc->bufEnd) { \
78 pc = __glXFlushRenderBuffer(gc, pc); \
84 pc = __glXFlushRenderBuffer(gc, pc); \
89 if (pc + (size) > gc->bufEnd) { \
90 pc
[all...]
/external/mesa3d/src/glx/
H A Dpackrender.h58 GLubyte *pc, *pixelHeaderPC; \
63 pc = gc->pc; \
77 if (pc + (size) > gc->bufEnd) { \
78 pc = __glXFlushRenderBuffer(gc, pc); \
84 pc = __glXFlushRenderBuffer(gc, pc); \
89 if (pc + (size) > gc->bufEnd) { \
90 pc
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dindirect.c142 (void) __glXFlushRenderBuffer(gc, gc->pc);
157 (void) __glXFlushRenderBuffer(gc, gc->pc);
186 emit_header(gc->pc, rop, cmdlen);
187 (void) memcpy((void *)(gc->pc + 4), ptr, 4);
188 gc->pc += cmdlen;
189 if (__builtin_expect(gc->pc > gc->limit, 0)) { (void) __glXFlushRenderBuffer(gc, gc->pc); }
198 emit_header(gc->pc, rop, cmdlen);
199 (void) memcpy((void *)(gc->pc + 4), ptr, 4);
200 gc->pc
356 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
466 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
2291 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
2981 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
3015 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
3049 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
3145 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
4203 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivate, X_GLvop_DeleteTexturesEXT, cmdlen); local
4263 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenTexturesEXT, cmdlen); local
4317 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsTextureEXT, cmdlen); local
4377 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
4459 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
4564 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableSGI, cmdlen); local
4624 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterfvSGI, cmdlen); local
4681 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterivSGI, cmdlen); local
4719 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
4776 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
4937 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionFilterEXT, cmdlen); local
4997 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionParameterfvEXT, cmdlen); local
5054 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetConvolutionParameterivEXT, cmdlen); local
5114 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramEXT, cmdlen); local
5175 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramParameterfvEXT, cmdlen); local
5232 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetHistogramParameterivEXT, cmdlen); local
5292 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxEXT, cmdlen); local
5353 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxParameterfvEXT, cmdlen); local
5410 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetMinmaxParameterivEXT, cmdlen); local
5503 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
5564 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
6048 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramStringARB, cmdlen); local
6064 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramivARB, cmdlen); local
6214 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
6893 GLubyte * const pc = __glXFlushRenderBuffer(gc, gc->pc); local
7208 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_AreProgramsResidentNV, cmdlen); local
7240 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivate, X_GLvop_DeleteProgramsNV, cmdlen); local
7272 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenProgramsNV, cmdlen); local
7287 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramParameterdvNV, cmdlen); local
7304 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramParameterfvNV, cmdlen); local
7321 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramStringNV, cmdlen); local
7337 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramivNV, cmdlen); local
7353 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetTrackMatrixivNV, cmdlen); local
7370 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribdvNV, cmdlen); local
7386 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribfvNV, cmdlen); local
7402 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetVertexAttribivNV, cmdlen); local
7419 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsProgramNV, cmdlen); local
8146 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramNamedParameterdvNV, cmdlen); local
8167 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetProgramNamedParameterfvNV, cmdlen); local
8307 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_CheckFramebufferStatusEXT, cmdlen); local
8422 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenFramebuffersEXT, cmdlen); local
8441 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GenRenderbuffersEXT, cmdlen); local
8467 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetFramebufferAttachmentParameterivEXT, cmdlen); local
8484 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetRenderbufferParameterivEXT, cmdlen); local
8501 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsFramebufferEXT, cmdlen); local
8517 GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_IsRenderbufferEXT, cmdlen); local
[all...]
/external/chromium_org/net/proxy/
H A Dproxy_config_service_fixed.cc9 ProxyConfigServiceFixed::ProxyConfigServiceFixed(const ProxyConfig& pc) argument
10 : pc_(pc) {
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar_supp.c10 // uninitialised, but we know pc[0] points to 0x0
11 char** pc = malloc(sizeof(char*)); local
18 syscall(pi[0]+__NR_write, pi[0], pc[0], pi[0]+1);
/external/elfutils/0.153/libebl/
H A Debl_syscall_abi.c58 ebl_syscall_abi (ebl, sp, pc, callno, args)
61 int *pc;
65 return ebl != NULL ? ebl->syscall_abi (ebl, sp, pc, callno, args) : -1;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc20 uptr StackTrace::GetPreviousInstructionPc(uptr pc) { argument
23 pc = pc & (~1);
27 return pc - 4;
29 return pc - 8;
31 return pc - 1;
39 void StackTrace::FastUnwindStack(uptr pc, uptr bp, argument
43 trace[0] = pc;
55 if (pc1 != pc) {
75 uptr StackTrace::LocatePcInTrace(uptr pc) { argument
[all...]
H A Dsanitizer_stacktrace_libcdep.cc21 uptr pc) {
22 buffer->append(" #%zu 0x%zx", frame_num, pc);
37 uptr pc = GetPreviousInstructionPc(addr[i]); local
39 pc, addr_frames.data(), addr_frames.size());
42 PrintStackFramePrefix(&frame_desc, frame_num, pc);
51 PrintStackFramePrefix(&frame_desc, frame_num, pc);
74 void StackTrace::Unwind(uptr max_depth, uptr pc, uptr bp, void *context, argument
85 trace[0] = pc;
90 SlowUnwindStackWithContext(pc, context, max_depth);
92 SlowUnwindStack(pc, max_dept
20 PrintStackFramePrefix(InternalScopedString *buffer, uptr frame_num, uptr pc) argument
[all...]
/external/libvorbis/
H A DMakefile.am15 pkgconfig_DATA = vorbis.pc vorbisenc.pc vorbisfile.pc
22 vorbis.pc.in vorbisenc.pc.in vorbisfile.pc.in \
23 vorbis-uninstalled.pc.in \
24 vorbisenc-uninstalled.pc.in \
25 vorbisfile-uninstalled.pc.in \
/external/llvm/test/MC/ARM/
H A Darm-ldrd.s5 ldrd r1, r2, [pc, #0]
20 ldrd r0, r3, [pc, #0]
35 ldrd lr, pc, [pc, #0]
36 ldrd lr, pc, [r3, #4]
37 ldrd lr, pc, [r3], #4
38 ldrd lr, pc, [r3, #4]!
39 ldrd lr, pc, [r3, -r4]!
40 ldrd lr, pc, [r3, r4]
41 ldrd lr, pc, [r
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_haspc.c59 dwarf_haspc (Dwarf_Die *die, Dwarf_Addr pc) argument
70 if (pc >= begin && pc < end)
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mman_test.cc39 uptr pc = 0; local
40 char *p = (char*)user_alloc(thr, pc, 10);
42 char *p2 = (char*)user_alloc(thr, pc, 20);
47 user_free(thr, pc, p);
48 user_free(thr, pc, p2);
53 uptr pc = 0; local
55 void *p = user_realloc(thr, pc, 0, 0);
61 void *p = user_realloc(thr, pc, 0, 100);
64 user_free(thr, pc, p);
67 void *p = user_alloc(thr, pc, 10
98 uptr pc = 0; local
[all...]
/external/libpcap/bpf/net/
H A Dbpf_filter.c204 * Execute the filter program starting at pc on the packet p
211 bpf_filter(pc, p, wirelen, buflen)
212 register const struct bpf_insn *pc;
232 if (pc == 0)
239 --pc;
241 ++pc;
242 switch (pc->code) {
251 return (u_int)pc->k;
257 k = pc->k;
274 k = pc
[all...]
/external/libpcap/
H A Dbpf_filter.c204 * Execute the filter program starting at pc on the packet p
211 bpf_filter(pc, p, wirelen, buflen)
212 register const struct bpf_insn *pc;
232 if (pc == 0)
239 --pc;
241 ++pc;
242 switch (pc->code) {
251 return (u_int)pc->k;
257 k = pc->k;
274 k = pc
[all...]
/external/apache-harmony/luni/src/test/api/common/
H A DProxy2Test.java29 Class pc = Proxy.getProxyClass(DefaultPkgIntf.class.getClassLoader(),
31 assertEquals("$Proxy0", pc.getName());
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DPKIXCertPathCheckerTest.java64 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker();
65 pc.isForwardCheckingSupported();
70 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker();
71 pc.init(true);
75 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker();
76 pc.getSupportedExtensions();
81 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker();
82 pc.check(new MyCertificate("", null), new HashSet());
/external/elfutils/0.153/backends/
H A Di386_syscall.c35 int *sp, int *pc, int *callno, int args[6])
38 *pc = 8; /* %eip */
34 i386_syscall_abi(Ebl *ebl __attribute__ ((unused)), int *sp, int *pc, int *callno, int args[6]) argument
H A Dppc_syscall.c35 int *sp, int *pc, int *callno, int args[6])
38 *pc = -1;
34 ppc_syscall_abi(Ebl *ebl __attribute__ ((unused)), int *sp, int *pc, int *callno, int args[6]) argument
H A Dx86_64_syscall.c35 int *sp, int *pc, int *callno, int args[6])
38 *pc = 16; /* %rip */
34 x86_64_syscall_abi(Ebl *ebl __attribute__ ((unused)), int *sp, int *pc, int *callno, int args[6]) argument

Completed in 3384 milliseconds

1234567891011>>