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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/bionic/
exidx_dynamic.c 31 /* For a given PC, find the .so that it belongs to.
40 _Unwind_Ptr __gnu_Unwind_Find_exidx(_Unwind_Ptr pc, int *pcount)
42 return dl_unwind_find_exidx(pc, pcount);
  /external/clang/test/CodeGen/
pr4349.c 12 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]) }
2004-03-15-SimpleIndirectGoto.c 8 void bar(int *pc) {
12 goto *l[*pc];
15 pc++;
16 goto *l[*pc];
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
PasswordCallbackTest.java 35 PasswordCallback pc; field in class:PasswordCallbackTest
38 pc = new PasswordCallback("prompt", true);
39 assertEquals("prompt", pc.getPrompt());
40 assertTrue(pc.isEchoOn());
41 pc.setPassword(null);
42 pc.clearPassword();
43 assertNull(pc.getPassword());
45 pc.setPassword(pwd);
46 assertEquals(new String(pwd), new String(pc.getPassword()));
47 pc.clearPassword()
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
PasswordCallbackTest.java 39 PasswordCallback pc = new PasswordCallback(prompt, true); local
40 assertNotNull("Null object returned", pc);
41 assertEquals(prompt, pc.getPrompt());
42 assertEquals(true, pc.isEchoOn());
48 PasswordCallback pc = new PasswordCallback(prompt, false); local
49 assertNotNull("Null object returned", pc);
50 assertEquals(prompt, pc.getPrompt());
51 assertEquals(false, pc.isEchoOn());
57 PasswordCallback pc = new PasswordCallback(null, true); local
63 PasswordCallback pc = new PasswordCallback("", true) local
78 PasswordCallback pc = new PasswordCallback(prompt, true); local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.h 42 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, int fd)
    [all...]
tsan_fd.cc 57 static void unref(ThreadState *thr, uptr pc, FdSync *s) {
63 SyncVar *v = CTX()->synctab.GetAndRemove(thr, pc, (uptr)s);
71 static FdDesc *fddesc(ThreadState *thr, uptr pc, int fd) {
89 static void init(ThreadState *thr, uptr pc, int fd, FdSync *s) {
90 FdDesc *d = fddesc(thr, pc, fd);
94 unref(thr, pc, d->sync);
98 unref(thr, pc, s);
102 unref(thr, pc, s);
106 d->creation_stack = CurrentStackId(thr, pc);
108 MemoryRangeImitateWrite(thr, pc, (uptr)d, 8)
    [all...]
  /external/v8/src/
interpreter-irregexp.cc 85 const byte* pc,
95 "pc = %02x, sp = %d, curpos = %d, curchar = %08x (%c), bc = %s" :
96 "pc = %02x, sp = %d, curpos = %d, curchar = %08x .%c., bc = %s";
98 pc - code_base,
105 printf(", %02x", pc[i]);
109 unsigned char b = pc[i];
124 pc, \
136 static int32_t Load32Aligned(const byte* pc) {
137 ASSERT((reinterpret_cast<intptr_t>(pc) & 3) == 0);
138 return *reinterpret_cast<const int32_t *>(pc);
196 const byte* pc = code_base; local
    [all...]
  /external/chromium/net/proxy/
proxy_config_service_fixed.cc 9 ProxyConfigServiceFixed::ProxyConfigServiceFixed(const ProxyConfig& pc)
10 : pc_(pc) {
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar_supp.c 10 // 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/libebl/
ebl_syscall_abi.c 58 ebl_syscall_abi (ebl, sp, pc, callno, args)
61 int *pc;
65 return ebl != NULL ? ebl->syscall_abi (ebl, sp, pc, callno, args) : -1;
  /frameworks/compile/libbcc/tests/data/src/
pointers.c 4 int* pc = (int*) 0; local
10 printf("Pointer comparison to zero: %d %d %d\n", pa == 0, pb == 0, pc == 0);
11 printf("Pointer comparison: %d %d %d %d %d\n", pa < pb, pa == pb, pa > pb, ! pb, ! pc);
  /external/libvorbis/
Makefile.am 15 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/icu4c/test/perf/unisetperf/
unisetperf.pl 35 my $pc = "$p Contains";
40 "Contains", ["$pc --type Bv",
41 "$pc --type Bv0"
  /external/compiler-rt/lib/asan/
asan_stack.cc 20 static bool MaybeCallAsanSymbolize(const void *pc, char *out_buffer,
22 return (&__asan_symbolize) ? __asan_symbolize(pc, out_buffer, out_size)
40 bool __asan_symbolize(const void *pc, char *out_buffer, int out_size) {
  /external/elfutils/libdw/
dwarf_haspc.c 1 /* Determine whether a DIE covers a PC address.
59 dwarf_haspc (Dwarf_Die *die, Dwarf_Addr pc)
70 if (pc >= begin && pc < end)
  /dalvik/vm/mterp/cstubs/
enddefs.cpp 4 #undef pc macro
  /ndk/tests/device/issue20176-__gnu_Unwind_Find_exidx/jni/
issue20176-__gnu_Unwind_Find_exidx.cpp 9 extern "C" _Unwind_Ptr dl_unwind_find_exidx(_Unwind_Ptr pc, int *pcount);
10 extern "C" _Unwind_Ptr __gnu_Unwind_Find_exidx(_Unwind_Ptr pc, int *pcount)
13 printf("%p -> ", pc);
14 ret_pc = dl_unwind_find_exidx(pc, pcount);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.cc 29 uptr StackTrace::GetPreviousInstructionPc(uptr pc) {
32 pc = pc & (~1);
36 return pc - 4;
38 return pc - 8;
40 return pc - 1;
44 static void PrintStackFramePrefix(uptr frame_num, uptr pc) {
45 Printf(" #%zu 0x%zx", frame_num, pc);
74 uptr pc = GetPreviousInstructionPc(addr[i]); local
78 if (symbolize_callback((void*)pc, buff.data(), buff.size()))
    [all...]
  /external/libpcap/bpf/net/
bpf_filter.c 195 * Execute the filter program starting at pc on the packet p
202 bpf_filter(pc, p, wirelen, buflen)
203 register struct bpf_insn *pc;
223 if (pc == 0)
230 --pc;
232 ++pc;
233 switch (pc->code) {
242 return (u_int)pc->k;
248 k = pc->k;
265 k = pc->k
    [all...]
  /external/apache-harmony/luni/src/test/api/common/
Proxy2Test.java 29 Class pc = Proxy.getProxyClass(DefaultPkgIntf.class.getClassLoader(), local
31 assertEquals("$Proxy0", pc.getName());
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PKIXCertPathCheckerTest.java 64 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker(); local
65 pc.isForwardCheckingSupported();
70 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker(); local
71 pc.init(true);
75 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker(); local
76 pc.getSupportedExtensions();
81 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker(); local
82 pc.check(new MyCertificate("", null), new HashSet());
  /external/elfutils/backends/
i386_syscall.c 35 int *sp, int *pc, int *callno, int args[6])
38 *pc = 8; /* %eip */
ppc_syscall.c 35 int *sp, int *pc, int *callno, int args[6])
38 *pc = -1;
x86_64_syscall.c 35 int *sp, int *pc, int *callno, int args[6])
38 *pc = 16; /* %rip */

Completed in 501 milliseconds

1 2 3 4 5 6 7 8 91011>>