/external/clang/test/Parser/ |
H A D | 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/libcxx/test/std/utilities/memory/temporary.buffer/ |
H A D | 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);
|
H A D | 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);
|
/external/clang/test/SemaTemplate/ |
H A D | ambiguous-ovl-print.cpp | 7 void test_f(int *ip, int i) { argument 8 f(ip, i); // expected-error{{ambiguous}}
|
/external/libvpx/libvpx/vp8/encoder/ |
H A D | dct.c | 18 short *ip = input; local 22 a1 = ((ip[0] + ip[3]) * 8); 23 b1 = ((ip[1] + ip[2]) * 8); 24 c1 = ((ip[1] - ip[2]) * 8); 25 d1 = ((ip[0] - ip[3]) * 8); 33 ip 64 short *ip = input; local [all...] |
/external/compiler-rt/lib/builtins/arm/ |
H A D | switch16.S | 34 ldrh ip, [lr, #-1] // get first 16-bit word in table 35 cmp r0, ip // compare with index 37 add ip, lr, ip, lsl #1 // compute address of last element in table 40 ldrshhs r0, [ip, #1] // load 16-bit element if r0 out of range 41 add ip, lr, r0, lsl #1 // compute label = lr + element*2 42 bx ip // jump to computed label
|
H A D | switch32.S | 34 ldr ip, [lr, #-1] // get first 32-bit word in table 35 cmp r0, ip // compare with index 37 add ip, lr, ip, lsl #2 // compute address of last element in table 40 ldrhs r0, [ip, #3] // load 32-bit element if r0 out of range 41 add ip, lr, r0 // compute label = lr + element 42 bx ip // jump to computed label
|
H A D | switch8.S | 34 ldrb ip, [lr, #-1] // get first byte in table 35 cmp r0, ip // signed compare with index 38 ldrsbhs r0, [lr, ip] // if out of range, use last entry in table 39 add ip, lr, r0, lsl #1 // compute label = lr + element*2 40 bx ip // jump to computed label
|
H A D | switchu8.S | 34 ldrb ip, [lr, #-1] // get first byte in table 35 cmp r0, ip // compare with index 38 ldrbhs r0, [lr, ip] // if out of range, use last entry in table 39 add ip, lr, r0, lsl #1 // compute label = lr + element*2 40 bx ip // jump to computed label
|
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
H A D | idctllm_dspr2.c | 43 short *ip = input; local 53 prefetch_load_short(ip + 8); 56 a1 = ip[0] + ip[8]; 57 b1 = ip[0] - ip[8]; 59 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 60 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 63 temp1 = ip[ 269 short *ip = input; local [all...] |
/external/iproute2/man/man8/ |
H A D | Makefile | 1 TARGETS = ip-address.8 ip-link.8 ip-route.8 7 ip-address.8: ip-address.8.in 10 ip-link.8: ip-link.8.in 13 ip-route.8: ip-route.8.in
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/ |
H A D | p5.cpp | 10 int* ip; local 11 float &fr1 = f(ip); 12 float &fr2 = g(ip);
|
/external/libvpx/libvpx/vp8/common/ |
H A D | idctllm.c | 36 short *ip = input; local 42 a1 = ip[0] + ip[8]; 43 b1 = ip[0] - ip[8]; 45 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 46 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 49 temp1 = ip[4] + ((ip[ 132 short *ip = input; local [all...] |
/external/clang/test/CXX/over/over.match/over.match.best/ |
H A D | p1.cpp | 7 void test_f0(int* ip, void *vp) { argument 9 int &ir = f0(ip, 0);
|
/external/iproute2/ip/ |
H A D | routef | 4 exec ip -4 ro flush scope global type unicast
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
H A D | test_xdp_redirect.sh | 22 ip netns del ns1 2> /dev/null 23 ip netns del ns2 2> /dev/null 26 ip link set dev lo xdpgeneric off 2>/dev/null > /dev/null 28 echo "selftests: [SKIP] Could not run test without the ip xdpgeneric support" 33 ip netns add ns1 34 ip netns add ns2 38 ip link add veth1 index 111 type veth peer name veth11 39 ip link add veth2 index 222 type veth peer name veth22 41 ip link set veth11 netns ns1 42 ip lin [all...] |
H A D | test_xdp_meta.sh | 12 ip netns del ns1 2> /dev/null 13 ip netns del ns2 2> /dev/null 16 ip link set dev lo xdp off 2>/dev/null > /dev/null 18 echo "selftests: [SKIP] Could not run test without the ip xdp support" 23 ip netns add ns1 24 ip netns add ns2 28 ip link add veth1 type veth peer name veth2 30 ip link set veth1 netns ns1 31 ip link set veth2 netns ns2 33 ip netn [all...] |
/external/iproute2/testsuite/tests/tc/ |
H A D | pedit.t | 64 # do_it ip $field set $val 67 # do_it ip $field $i 86 do_pedit ip ihl set 0x04 88 do_pedit ip ihl set 0x40 90 do_pedit ip ihl preserve 92 do_pedit ip ihl invert 94 do_pedit ip ihl clear 96 do_pedit ip src set 1.2.3.4 98 do_pedit ip src preserve 100 do_pedit ip sr [all...] |
/external/clang/test/Misc/ |
H A D | message-length.c | 21 void a_very_long_line(int *ip, float *FloatPointer) { argument 22 for (int ALongIndexName = 0; ALongIndexName < 100; ALongIndexName++) if (ip[ALongIndexName] == 17) a_func_to_call(ip == FloatPointer, ip[ALongIndexName], FloatPointer[ALongIndexName]);
|
/external/valgrind/memcheck/tests/ |
H A D | fprw.c | 13 int* ip = (int*)0x12345678; local 22 free(ip); 23 ip = malloc(sizeof(int)); 24 * ((double*)ip) = 1.2 + d;
|
/external/syslinux/com32/samples/ |
H A D | resolv.c | 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/lzo/src/ |
H A D | lzo1x_d.ch | 44 const lzo_bytep ip; 83 ip = in; 86 if (*ip > 17) 88 t = *ip++ - 17; 92 do *op++ = *ip++; while (--t > 0); 99 t = *ip++; 105 while (*ip == 0) 108 ip++; 112 t += 15 + *ip++; 120 UA_COPY8(op,ip); [all...] |
H A D | lzo1x_oo.ch | 29 #define TEST_IP (ip < ip_end) 40 static void copy2(lzo_bytep ip, const lzo_bytep m_pos, lzo_uint off) 43 ip[0] = m_pos[0]; 45 ip[1] = m_pos[0]; 47 ip[1] = m_pos[1]; 51 static void copy3(lzo_bytep ip, const lzo_bytep m_pos, lzo_uint off) 54 ip[0] = m_pos[0]; 57 ip[2] = ip[1] = m_pos[0]; 61 ip[ [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
H A D | basic.cpp | 7 void test_f0(int *ip, float const *cfp) { argument 8 A<int> a0 = f0(ip); 14 void test_f1(int *ip, float fv) { argument 15 f1(ip, fv); 25 void test_f2(int *ip, float *fp) { argument 26 f2(ip, ConvToIntPtr()); // expected-error{{no matching function}} 27 f2(ip, ip); // okay 28 f2(ip, fp); // expected-error{{no matching function}}
|
/external/valgrind/helgrind/tests/ |
H A D | 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;
|