HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 1 - 25 of 676) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/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);
overaligned.pass.cpp 31 std::pair<A*, std::ptrdiff_t> ip = std::get_temporary_buffer<A>(5); local
32 assert(!(ip.first == nullptr) ^ (ip.second == 0));
33 assert(reinterpret_cast<uintptr_t>(ip.first) % alignof(A) == 0);
34 std::return_temporary_buffer(ip.first);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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);
  /toolchain/binutils/binutils-2.27/gold/testsuite/
copy_test_2.cc 25 int ip __attribute__((visibility("protected"))) = 3; variable
  /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/test/BlocksRuntime/
cast.c 25 int *ip; local
29 ip = (int *)aBlock;
32 aBlock = (void (^)(void))ip;
  /external/syslinux/com32/samples/
resolv.c 16 * Resolve an IP address
33 uint32_t ip; local
48 ip = resolv(argv[1]);
50 if (ip) {
52 (ip & 0xff), (ip >> 8) & 0xff,
53 (ip >> 16) & 0xff, (ip >> 24) & 0xff);
  /external/syslinux/com32/modules/
host.c 22 uint32_t ip; local
32 ip = dns_resolve(argv[i]);
33 if (!ip) {
36 printf("%-39s %08X %u.%u.%u.%u\n", argv[i], ntohl(ip), ip & 0xFF,
37 (ip >> 8) & 0xFF, (ip >> 16) & 0xFF, (ip >> 24) & 0xFF);
  /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/libunwind/src/hppa/
Gstep.c 35 Debug (1, "(cursor=%p, ip=0x%08x)\n", c, (unsigned) c->dwarf.ip);
58 unw_word_t ip, sc_addr = c->dwarf.ip + LINUX_RT_SIGFRAME_UC_OFF; local
65 if ((ret = dwarf_get (&c->dwarf, iaoq_loc, &ip)) < 0)
70 c->dwarf.ip = ip & ~0x3; /* mask out the privilege level */
91 c->dwarf.ip = 0;
93 ret = (c->dwarf.ip == 0) ? 0 : 1;
  /external/libunwind/src/mi/
backtrace.c 39 unw_word_t ip; local
50 if (unw_get_reg (&cursor, UNW_REG_IP, &ip) < 0)
52 buffer[n++] = (void *) (uintptr_t) ip;
  /external/libvpx/libvpx/vp8/encoder/mips/mmi/
dct_mmi.c 48 int16_t *ip = input; local
94 "gsldlc1 %[ftmp1], 0x07(%[ip]) \n\t"
95 "gsldrc1 %[ftmp1], 0x00(%[ip]) \n\t"
96 MMI_ADDU(%[ip], %[ip], %[pitch])
97 "gsldlc1 %[ftmp2], 0x07(%[ip]) \n\t"
98 "gsldrc1 %[ftmp2], 0x00(%[ip]) \n\t"
99 MMI_ADDU(%[ip], %[ip], %[pitch])
100 "gsldlc1 %[ftmp3], 0x07(%[ip]) \n\t
    [all...]
  /external/syslinux/com32/lib/syslinux/
pxe_dns.c 48 uint32_t ip; member in union:__anon37039
56 return q.ip;
  /external/valgrind/memcheck/tests/
fprw.c 13 int* ip = (int*)0x12345678; local
22 free(ip);
23 ip = malloc(sizeof(int));
24 * ((double*)ip) = 1.2 + d;
  /tools/acloud/public/
avd.py 21 with IP and instance name. A complete implementation
41 def __init__(self, instance_name, ip=None):
46 ip: Ip address of the gce instance, e.g. "140.110.20.1"
48 self._ip = ip
52 def ip(self): member in class:AndroidVirtualDevice
54 raise ValueError("IP of instance %s is unknown yet." %
58 @ip.setter
59 def ip(self, value): member in class:AndroidVirtualDevice
68 return "<ip: %s, instance_name: %s >" % (self._ip, self._instance_name
    [all...]
  /external/boringssl/src/crypto/x509/
vpm_int.h 68 unsigned char *ip; /* If not NULL IP address to match */ member in struct:X509_VERIFY_PARAM_ID_st
69 size_t iplen; /* Length of IP address */
  /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/libunwind/src/aarch64/
Gis_signal_frame.c 39 unw_word_t w0, ip; local
49 ip = c->dwarf.ip;
52 ip += 4;
55 ret = (*a->access_mem) (as, ip, &w0, 0, arg);
  /external/libunwind/src/mips/
Gis_signal_frame.c 33 unw_word_t w0, w1, ip; local
43 ip = c->dwarf.ip;
46 if ((ret = (*a->access_mem) (as, ip + 4, &w1, 0, arg)) < 0)
52 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0)
  /external/libunwind/src/ppc/
Gis_signal_frame.c 34 unw_word_t w0, w1, ip; local
41 as->validate = 1; /* Don't trust the ip */
51 ip = c->dwarf.ip;
52 if (ip == 0)
55 /* Read up two 8-byte words at the IP. We are only looking at 3
60 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0
61 || (ret = (*a->access_mem) (as, ip + 8, &w1, 0, arg)) < 0)
  /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);

Completed in 1078 milliseconds

1 2 3 4 5 6 7 8 91011>>