/external/libunwind/src/sh/ |
Gis_signal_frame.c | 71 unw_word_t w0, ip; local 81 ip = c->dwarf.ip; 83 ret = (*a->access_mem) (as, ip, &w0, 0, arg); 90 ret = (*a->access_mem) (as, ip+4, &w0, 0, arg); 97 ret = (*a->access_mem) (as, ip+8, &w0, 0, arg); 104 ret = (*a->access_mem) (as, ip+12, &w0, 0, arg);
|
/external/libunwind/src/unwind/ |
RaiseException.c | 38 unw_word_t ip; local 89 /* Exceptions are associated with IP-ranges. If a given exception 90 is handled at a particular IP, it will _always_ be handled at 91 that IP. If this weren't true, we'd have to track the tuple 92 (IP,SP,BSP) to uniquely identify the stack frame that's handling 94 if (unw_get_reg (&context.cursor, UNW_REG_IP, &ip) < 0) 99 exception_object->private_2 = ip; /* save frame marker */ 101 Debug (1, "found handler for IP=%lx; entering cleanup phase\n", (long) ip);
|
/external/libunwind/tests/ |
ia64-test-sig.c | 24 /* This test uses the unwind interface to modify the IP in an ancestor 42 unw_word_t ip; local 64 if (unw_get_reg (&cursor2, UNW_REG_IP, &ip) < 0) 65 panic ("failed to get IP!\n"); 68 ++ip; 69 if ((ip & 0x3) == 0x3) 70 ip += 13; 72 if (unw_set_reg (&cursor2, UNW_REG_IP, ip) < 0) 73 panic ("failed to set IP!\n");
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
regs.c | 39 unsigned long ip = ptrace(PTRACE_PEEKUSER, proc->pid, PT_CR_IIP, 0); local 43 return (void *)(ip | slot);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
handle.c | 47 intptr_t ip = pointer_to_intptr(key); local 48 return (unsigned) (ip & 0xffffffff);
|
/external/valgrind/main/helgrind/tests/ |
hg03_inherit.c | 15 volatile int *ip = (int *)v; local 17 *ip += 44; 18 *ip *= 2; 25 volatile int *ip = (int *)v; local 28 *ip += 88; 29 *ip *= 3;
|
/hardware/ti/omap4-aah/ |
stacktrace.c | 53 intptr_t ip = (intptr_t)_Unwind_GetIP(context); local 54 if (ip) { 55 state->addrs[0] = ip;
|
/hardware/ti/omap4xxx/ |
stacktrace.c | 53 intptr_t ip = (intptr_t)_Unwind_GetIP(context); local 54 if (ip) { 55 state->addrs[0] = ip;
|
/external/iproute2/doc/ |
ip-cref.tex | 2 \def\TITLE{IP Command Reference} 5 \Large\bf IP Command Reference. 24 This document presents a comprehensive description of the \verb|ip| utility 30 and examples to understand and configure Linux-2.2 IP and IPv6 33 This document is split into sections explaining \verb|ip| commands 34 and options, decrypting \verb|ip| output and containing a few examples. 41 \section{{\tt ip} --- command syntax} 43 The generic form of an \verb|ip| command is: 45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]] 48 general behaviour of the \verb|ip| utility or changing its output. All option [all...] |
/bionic/tests/ |
stack_unwinding_test.cpp | 41 void* ip = reinterpret_cast<void*>(_Unwind_GetIP(ctx)); local 48 if (dladdr(ip, &info) != 0) { 51 offset = static_cast<int>(reinterpret_cast<char*>(ip) - reinterpret_cast<char*>(info.dli_saddr)); 55 fprintf(stderr, " #%02d %p %s%+d (%s)\n", *count_ptr, ip, symbol, offset, info.dli_fname ? info.dli_fname : "??");
|
/external/android-clat/ |
getaddr.c | 35 union anyip ip; member in struct:target 64 memcpy(&targ_p->ip.ip6, RTA_DATA(rta_p), rta_p->rta_len - sizeof(struct rtattr)); 71 memcpy(&targ_p->ip.ip4, RTA_DATA(rta_p), rta_p->rta_len - sizeof(struct rtattr)); 95 * finds the first global non-privacy IP of the given family for the given interface, or returns NULL. caller frees pointer 131 memcpy(retval, &targ.ip, sizeof(union anyip));
|
/external/chromium_org/chrome/browser/extensions/api/diagnostics/ |
diagnostics_api_chromeos.cc | 27 const std::string& ip, 32 std::string* ip, 34 // Parses the result and returns IP and latency. 53 *ip = iterator.key(); 61 std::string ip; local 63 if (!succeeded || !ParseResult(status, &ip, &latency)) { 67 ip, 86 parameters_->options.ip, config,
|
/external/chromium_org/net/dns/ |
dns_config_service_posix_unittest.cc | 99 IPAddressNumber ip; local 100 ParseIPLiteralToNumber(kNameserversIPv4[i], &ip); 101 config->nameservers.push_back(IPEndPoint(ip, NS_DEFAULTPORT + i)); 108 IPAddressNumber ip; local 109 ParseIPLiteralToNumber(kNameserversIPv6[i], &ip); 110 config->nameservers[i] = IPEndPoint(ip, NS_DEFAULTPORT - i);
|
dns_hosts_unittest.cc | 16 const char* ip; member in struct:net::__anon13819::ExpectedHostsEntry 26 ASSERT_TRUE(ParseIPLiteralToNumber(entries[i].ip, &ip_ref)); 46 "127.0.0.1 cache2 # should reuse parsed IP\n" 47 "256.0.0.0 cache3 # bogus IP should not clear parsed IP cache\n"
|
/external/chromium_org/net/quic/ |
quic_server_bin.cc | 61 net::IPAddressNumber ip; local 62 CHECK(net::ParseIPLiteralToNumber("::", &ip)); 69 int rc = server.Listen(net::IPEndPoint(ip, FLAGS_port));
|
quic_socket_address_coder_test.cc | 15 IPAddressNumber ip; local 16 ASSERT_TRUE(ParseIPLiteralToNumber("4.31.198.44", &ip)); 17 QuicSocketAddressCoder coder(IPEndPoint(ip, 0x1234)); 24 IPAddressNumber ip; local 25 ASSERT_TRUE(ParseIPLiteralToNumber("2001:700:300:1800::f", &ip)); 26 QuicSocketAddressCoder coder(IPEndPoint(ip, 0x5678)); 39 EXPECT_EQ(AF_INET, ConvertAddressFamily(GetAddressFamily(coder.ip()))); 41 EXPECT_EQ(expected_addr, IPAddressToPackedString(coder.ip())); 52 EXPECT_EQ(AF_INET6, ConvertAddressFamily(GetAddressFamily(coder.ip()))); 55 EXPECT_EQ(expected_addr, IPAddressToPackedString(coder.ip())); 104 IPAddressNumber ip; local [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/bio/ |
socket.c | 130 int *ip; local 141 ip = (int *)ptr; 142 if (ip != NULL) 143 *ip = b->num;
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
dct.c | 18 short *ip = input; local 23 a1 = ((ip[0] + ip[3]) * 8); 24 b1 = ((ip[1] + ip[2]) * 8); 25 c1 = ((ip[1] - ip[2]) * 8); 26 d1 = ((ip[0] - ip[3]) * 8); 34 ip += pitch / 2 69 short *ip = input; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_debug.c | 64 unsigned count, ip, it_count, ic_count, i, j; local 80 ip = rs->inst[i] & 0xf; 81 fprintf(stderr, "texture: ip %d to psf %d\n", 82 ip, (rs->inst[i] >> 5) & 0x7f); 84 tex_ptr = rs->ip[ip] & 0xffffff; 101 ip = (rs->inst[i] >> 12) & 0xf; 102 fprintf(stderr, "color: ip %d to psf %d\n", 103 ip, (rs->inst[i] >> 18) & 0x7f); 105 col_ptr = (rs->ip[ip] >> 24) & 0x7 [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
stacktrace_android-inl.h | 75 uintptr_t ip = 0; local 76 _Unwind_VRS_Get(context, _UVRSC_CORE, 15, _UVRSD_UINT32, &ip); 77 ip &= ~(uintptr_t)0x1; // remove thumb mode bit 79 uintptr_t ip = _Unwind_GetIP(context); local 83 if (ip != 0 && !state->have_skipped_self) { 93 state->frames[state->frame_count++] = ip;
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/ |
BWEStandAlone.cc | 54 printf("Receiving RTP from IP %s, port %u\n", fromIP, fromPort); 63 printf("Receiving RTCP from IP %s, port %u\n", fromIP, fromPort); 73 std::string ip; local 91 // read IP 92 ip = argv[1]; 117 sendrec->InitSender(startRateKbps, ip.c_str(), port);
|
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p19.cpp | 14 int *ip = I; // expected-error{{cannot initialize}} local 36 int *ip = I; // expected-error{{cannot initialize}} local
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/ |
p3.cpp | 11 int* const ip = ap; local 18 const int* const &ip = ap; local
|
p4.cpp | 27 int * const * const * const ip = a3; local
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
p11.cpp | 7 int *ip = f<int>(1); // calls #1 local 21 int* ip = f2<int>(1); local
|