/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 *')}}
|
/ndk/sources/cxx-stl/llvm-libc++/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/compiler-rt/lib/arm/ |
switch8.S | 34 ldrb ip, [lr, #-1] // get first byte in table 35 cmp r0, ip // signed compare with index 37 ldrsbhs r0, [lr, ip] // if out of range, use last entry in table 38 add ip, lr, r0, lsl #1 // compute label = lr + element*2 39 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 37 ldrbhs r0, [lr, ip] // if out of range, use last entry in table 38 add ip, lr, r0, lsl #1 // compute label = lr + element*2 39 bx ip // jump to computed label
|
switch16.S | 34 ldrh ip, [lr, #-1] // get first 16-bit word in table 35 cmp r0, ip // compare with index 38 add ip, lr, ip, lsl #1 // compute address of last element in table 39 ldrshhs r0, [ip, #1] // load 16-bit element if r0 out of range 40 add ip, lr, r0, lsl #1 // compute label = lr + element*2 41 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 38 add ip, lr, ip, lsl #2 // compute address of last element in table 39 ldrcs r0, [ip, #3] // load 32-bit element if r0 out of range 40 add ip, lr, r0 // compute label = lr + element 41 bx ip // jump to computed label
|
/external/libvpx/libvpx/vp8/encoder/ |
dct.c | 18 short *ip = input; local 23 a1 = ((ip[0] + ip[3])<<3); 24 b1 = ((ip[1] + ip[2])<<3); 25 c1 = ((ip[1] - ip[2])<<3); 26 d1 = ((ip[0] - ip[3])<<3); 34 ip += pitch / 2 69 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/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/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/chromium/net/tools/fetch/ |
http_server.cc | 8 HttpServer::HttpServer(std::string ip, int port) 9 : ALLOW_THIS_IN_INITIALIZER_LIST(session_(new HttpSession(ip, port))) {
|
/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/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/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/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}}
|
/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;
|
/frameworks/base/core/java/android/os/ |
PatternMatcher.java | 124 int ip = 0, im = 0; local 126 while ((ip<NP) && (im<NM)) { 128 ip++; 129 nextChar = ip < NP ? pattern.charAt(ip) : 0; 133 ip++; 134 nextChar = ip < NP ? pattern.charAt(ip) : 0; 138 if (ip >= (NP-1)) { 143 ip++ [all...] |
/external/qemu/slirp-android/ |
helper.h | 44 /* return ip address in network order */ 46 ip_getn( ipaddr_t ip ) 48 return ip.addr; 51 /* return ip address in host order */ 53 ip_geth( ipaddr_t ip ) 55 return ntohl(ip.addr); 58 /* set ip address in network order */ 62 ipaddr_t ip; local 63 ip.addr = val; 64 return ip; 71 ipaddr_t ip; local 79 ipaddr_t ip; local [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/oprofile/libpp/ |
populate_for_spu.h | 25 bool is_spu_profile(inverted_profile const & ip); 32 inverted_profile const & ip,
|
/external/qemu/slirp/ |
ip_output.c | 50 * IP output. The packet in mbuf chain m contains a skeletal IP 58 register struct ip *ip; local 60 register int hlen = sizeof(struct ip ); 73 ip = mtod(m, struct ip *); 75 * Fill in IP header. 77 ip->ip_v = IPVERSION; 78 ip->ip_off &= IP_DF [all...] |