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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/cookies/
parsed_cookie_unittest.cc 14 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.HasPath())
    [all...]
  /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...]
  /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_org/v8/src/
interpreter-irregexp.cc 92 const byte* pc,
102 "pc = %02x, sp = %d, curpos = %d, curchar = %08x (%c), bc = %s" :
103 "pc = %02x, sp = %d, curpos = %d, curchar = %08x .%c., bc = %s";
105 pc - code_base,
112 printf(", %02x", pc[i]);
116 unsigned char b = pc[i];
131 pc, \
143 static int32_t Load32Aligned(const byte* pc) {
144 ASSERT((reinterpret_cast<intptr_t>(pc) & 3) == 0);
145 return *reinterpret_cast<const int32_t *>(pc);
203 const byte* pc = code_base; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
packrender.h 58 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 = __glXFlushRenderBuffer(gc, pc);
    [all...]
  /external/mesa3d/src/glx/
packrender.h 58 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 = __glXFlushRenderBuffer(gc, pc);
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
indirect.c 142 (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 += cmdlen
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/net/proxy/
proxy_config_service_fixed.cc 9 ProxyConfigServiceFixed::ProxyConfigServiceFixed(const ProxyConfig& pc)
10 : pc_(pc) {
  /external/chromium_org/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;
  /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/chromium_org/third_party/icu/source/test/perf/unisetperf/
unisetperf.pl 35 my $pc = "$p Contains";
40 "Contains", ["$pc --type Bv",
41 "$pc --type Bv0"
  /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 21 static bool MaybeCallAsanSymbolize(const void *pc, char *out_buffer,
23 return (&__asan_symbolize) ? __asan_symbolize(pc, out_buffer, out_size)
41 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/chromium_org/third_party/JSON/JSON-2.59/t/
07_pc_esc.t 5 # copied over from JSON::PC and modified to use JSON
27 my $pc = new JSON;
30 $str = $pc->encode($obj);
34 $str = $pc->encode($obj);
38 $str = $pc->encode($obj); # but since version 0.99
40 $obj = $pc->decode($str);
44 $str = $pc->encode($obj);
48 $str = $pc->encode($obj);
52 $str = $pc->encode($obj);
56 $str = $pc->encode($obj)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.cc 30 uptr StackTrace::GetPreviousInstructionPc(uptr pc) {
33 pc = pc & (~1);
37 return pc - 4;
39 return pc - 8;
41 return pc - 1;
45 static void PrintStackFramePrefix(uptr frame_num, uptr pc) {
46 Printf(" #%zu 0x%zx", frame_num, pc);
75 uptr pc = GetPreviousInstructionPc(addr[i]); local
79 if (symbolize_callback((void*)pc, buff.data(), buff.size()))
    [all...]

Completed in 785 milliseconds

1 2 3 4 5 6 7 8 91011>>