/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/temporary.buffer/ |
temporary_buffer.pass.cpp | 25 std::pair<int*, std::ptrdiff_t> ip = std::get_temporary_buffer<int>(5); local 26 assert(ip.first); 27 assert(ip.second == 5); 28 std::return_temporary_buffer(ip.first);
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/ |
p5.cpp | 10 int* ip; local 11 float &fr1 = f(ip); 12 float &fr2 = g(ip);
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/ |
p2.cpp | 17 // int *ip = cta; 18 // ip = cta; 35 int *ip = ctcv; local
|
/external/compiler-rt/BlocksRuntime/tests/ |
cast.c | 25 int *ip; local 29 ip = (int *)aBlock; 32 aBlock = (void (^)(void))ip;
|
/external/chromium_org/v8/test/mjsunit/ |
mirror-object.js | 244 var ip = mirror.internalProperties(); variable 245 assertEquals(1, ip.length); 246 assertEquals("[[PrimitiveValue]]", ip[0].name()); 247 assertEquals("string", ip[0].value().type()); 248 assertEquals("Capybara", ip[0].value().value()); 252 ip = mirror.internalProperties(); 253 assertEquals(3, ip.length); 255 for (var i = 0; i < ip.length; i++) { 256 property_map[ip[i].name()] = ip[i] [all...] |
/external/clang/test/FixIt/ |
dereference-addressof.c | 6 void ip(int *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}} function 14 ip(a); // expected-warning{{incompatible integer to pointer conversion passing 'int' to parameter of type 'int *'; take the address with &}}
|
/external/clang/test/Parser/ |
pointer_promotion.c | 5 int *ip; local 11 if (ip < cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}} 14 if (ip < 7) {} // expected-warning {{comparison between pointer and integer ('int *' and 'int')}} 15 if (sint < ip) {} // expected-warning {{comparison between pointer and integer ('int' and 'int *')}} 16 if (ip == cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}}
|
/external/valgrind/main/memcheck/tests/ |
fprw.c | 13 int* ip = (int*)0x1234567; local 22 free(ip); 23 ip = malloc(sizeof(int)); 24 * ((double*)ip) = 1.2 + d;
|
/external/chromium_org/net/dns/ |
dns_hosts_unittest.cc | 27 "127.0.0.1 cache2 # should reuse parsed IP\n" 28 "256.0.0.0 cache3 # bogus IP should not clear parsed IP cache\n" 36 const char* ip; member in struct:net::__anon11756::__anon11757 56 IPAddressNumber& ip = expected[key]; local 57 ASSERT_TRUE(ip.empty()); 58 ASSERT_TRUE(ParseIPLiteralToNumber(entries[i].ip, &ip)); 59 ASSERT_EQ(ip.size(), (entries[i].family == ADDRESS_FAMILY_IPV4) ? 4u : 16u);
|
dns_config_service_posix_unittest.cc | 97 IPAddressNumber ip; local 98 ParseIPLiteralToNumber(kNameserversIPv4[i], &ip); 99 config->nameservers.push_back(IPEndPoint(ip, NS_DEFAULTPORT + i)); 106 IPAddressNumber ip; local 107 ParseIPLiteralToNumber(kNameserversIPv6[i], &ip); 108 config->nameservers[i] = IPEndPoint(ip, NS_DEFAULTPORT - i);
|
/external/chromium_org/net/quic/crypto/ |
source_address_token.h | 25 std::string ip() const { function in class:net::SourceAddressToken 33 void set_ip(base::StringPiece ip) { 34 ip_ = ip.as_string();
|
/external/chromium_org/net/tools/quic/ |
quic_server_bin.cc | 52 net::IPAddressNumber ip; local 53 CHECK(net::ParseIPLiteralToNumber("::", &ip)); 57 if (!server.Listen(net::IPEndPoint(ip, FLAGS_port))) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
handle.c | 47 intptr_t ip = pointer_to_intptr(key); local 48 return (unsigned) (ip & 0xffffffff);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
stacktrace_libunwind-inl.h | 77 void *ip; variable 107 if (unw_get_reg(&cursor, UNW_REG_IP, (unw_word_t *) &ip) < 0) { 113 result[n++] = ip;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
stacktrace_libunwind-inl.h | 77 void *ip; variable 107 if (unw_get_reg(&cursor, UNW_REG_IP, (unw_word_t *) &ip) < 0) { 113 result[n++] = ip;
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.mptr/ |
p3.cpp | 19 int A::*ip = &A::s; // expected-error {{cannot initialize a variable of type 'int A::*' with an rvalue of type 'int *'}} member in class:A
|
/external/clang/test/CXX/except/except.handle/ |
p16.cpp | 13 int *ip = 0; local 14 ptr = ip; // expected-error{{assigning to 'float *' from incompatible type 'int *'}}
|
/external/liblzf/ |
lzf_d.c | 59 u8 const *ip = (const u8 *)in_data; local 61 u8 const *const in_end = ip + in_len; 66 unsigned int ctrl = *ip++; 79 if (ip + ctrl > in_end) 87 lzf_movsb (op, ip, ctrl); 91 case 32: *op++ = *ip++; case 31: *op++ = *ip++; case 30: *op++ = *ip++; case 29: *op++ = *ip++; 92 case 28: *op++ = *ip++; case 27: *op++ = *ip++; case 26: *op++ = *ip++; case 25: *op++ = *ip++ [all...] |
/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/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...] |
/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)); 93 * finds the first global non-privacy IP of the given family for the given interface, or returns NULL. caller frees pointer 129 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/third_party/libjingle/source/talk/base/ |
nethelpers.cc | 59 IPAddress ip; local 60 if (IPFromAddrInfo(cursor, &ip)) { 61 addresses->push_back(ip);
|