/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/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/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/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/libvpx/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/compiler-rt/lib/builtins/arm/ |
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
|
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
|
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
|
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/chromium_org/third_party/libvpx/source/libvpx/vp8/common/mips/dspr2/ |
idctllm_dspr2.c | 49 short *ip = input; local 59 prefetch_load_short(ip + 8); 62 a1 = ip[0] + ip[8]; 63 b1 = ip[0] - ip[8]; 65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16) 287 short *ip = input; local [all...] |
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
idctllm_dspr2.c | 49 short *ip = input; local 59 prefetch_load_short(ip + 8); 62 a1 = ip[0] + ip[8]; 63 b1 = ip[0] - ip[8]; 65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16) 287 short *ip = input; local [all...] |
/external/iproute2/man/man8/ |
Makefile | 1 TARGETS = ip-address.8 ip-link.8 ip-route.8 3 MAN8PAGES = $(TARGETS) ip.8 arpd.8 lnstat.8 routel.8 rtacct.8 rtmon.8 ss.8 \ 7 tc-sfb.8 tc-netem.8 tc-choke.8 ip-tunnel.8 ip-rule.8 ip-ntable.8 \ 8 ip-monitor.8 tc-stab.8 tc-hfsc.8 ip-xfrm.8 ip-netns.8 [all...] |
/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/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ |
idctllm.c | 36 short *ip = input; local 43 a1 = ip[0] + ip[8]; 44 b1 = ip[0] - ip[8]; 46 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 47 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 50 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16) 146 short *ip = input; local [all...] |
/external/libvpx/libvpx/vp8/common/ |
idctllm.c | 36 short *ip = input; local 43 a1 = ip[0] + ip[8]; 44 b1 = ip[0] - ip[8]; 46 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 47 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 50 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16) 146 short *ip = input; local [all...] |
/external/clang/test/CXX/over/over.match/over.match.best/ |
p1.cpp | 7 void test_f0(int* ip, void *vp) { 9 int &ir = f0(ip, 0);
|
/external/clang/test/SemaTemplate/ |
ambiguous-ovl-print.cpp | 7 void test_f(int *ip, int i) { 8 f(ip, i); // expected-error{{ambiguous}}
|
/external/iproute2/ip/ |
routef | 4 exec ip -4 ro flush scope global type unicast
|
/external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/ |
simple_dns.js | 6 var ip = dnsResolve(host); 7 return "PROXY " + ip + ':' + g_iteration;
|
/external/clang/test/Misc/ |
message-length.c | 21 void a_very_long_line(int *ip, float *FloatPointer) { 22 for (int ALongIndexName = 0; ALongIndexName < 100; ALongIndexName++) if (ip[ALongIndexName] == 17) a_func_to_call(ip == FloatPointer, ip[ALongIndexName], FloatPointer[ALongIndexName]);
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
basic.cpp | 7 void test_f0(int *ip, float const *cfp) { 8 A<int> a0 = f0(ip); 14 void test_f1(int *ip, float fv) { 15 f1(ip, fv); 25 void test_f2(int *ip, float *fp) { 26 f2(ip, ConvToIntPtr()); // expected-error{{no matching function}} 27 f2(ip, ip); // okay 28 f2(ip, fp); // expected-error{{no matching function}}
|
/bionic/libc/arch-arm/cortex-a15/bionic/ |
strlen.S | 72 lsls ip, r3, #31 80 ands ip, r3, #2 93 sub ip, r3, #0x01010101 94 bic ip, ip, r3 95 ands ip, ip, #0x80808080 104 sub ip, r2, #0x01010101 105 bic ip, ip, r [all...] |
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p9-linkage.cpp | 31 int *&test(X0<int*> xi, int *ip) { 33 xi.f(ip); 35 xi.g(ip); 37 xi.h(ip); 54 void test_f0(int *ip, float *fp) { 56 f0(ip); 61 void test_f1(int *ip, float *fp) { 63 f1(ip);
|
p9.cpp | 31 int *&test(X0<int*> xi, int *ip) { 32 xi.f(ip); // expected-note{{instantiation}} 33 xi.g(ip); // expected-note{{instantiation}} 34 xi.h(ip); 51 void test_f0(int *ip, float *fp) { 52 f0(ip); 56 void test_f1(int *ip, float *fp) { 57 f1(ip); // expected-note{{instantiation}}
|
/external/libunwind/src/unwind/ |
FindEnclosingFunction.c | 29 _Unwind_FindEnclosingFunction (void *ip) 34 (unw_word_t) (uintptr_t) ip, &pi, 0)
|