/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);
|
/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/liblzf/ |
H A D | 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 [all...] |
H A D | lzf_c.c | 109 const u8 *ip = (const u8 *)in_data; local 111 const u8 *in_end = ip + in_len; 139 hval = FRST (ip); 140 while (ip < in_end - 2) 144 hval = NEXT (hval, ip); 146 ref = *hslot + LZF_HSLOT_BIAS; *hslot = ip - LZF_HSLOT_BIAS; 150 && ref < ip /* the next test will actually take care of this, but this is faster */ 152 && (off = ip - ref - 1) < MAX_OFF 154 && ref[2] == ip[2] 156 && ((ref[1] << 8) | ref[0]) == ((ip[ [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
H A D | dct.c | 20 short *ip = input; local 25 a1 = ((ip[0] + ip[3]) * 8); 26 b1 = ((ip[1] + ip[2]) * 8); 27 c1 = ((ip[1] - ip[2]) * 8); 28 d1 = ((ip[0] - ip[3]) * 8); 36 ip 71 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 | 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[ 287 short *ip = input; local [all...] |
/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 | 37 short *ip = input; local 44 a1 = ip[0] + ip[8]; 45 b1 = ip[0] - ip[8]; 47 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 48 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 51 temp1 = ip[4] + ((ip[ 147 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/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/iproute2/man/man8/ |
H A D | 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 rtpr.8 ss.8 \ 10 ip-addrlabel.8 ip-fou.8 ip-gue.8 ip-l2tp.8 \ 11 ip-maddress.8 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;
|
/external/clang/test/CXX/temp/temp.names/ |
H A D | p4.cpp | 14 void test_f(int *ip) { argument 15 f<meta, int>(ip);
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
H A D | p9-linkage.cpp | 31 int *&test(X0<int*> xi, int *ip) { argument 33 xi.f(ip); 35 xi.g(ip); 37 xi.h(ip); 54 void test_f0(int *ip, float *fp) { argument 56 f0(ip); 61 void test_f1(int *ip, float *fp) { argument 63 f1(ip);
|
H A D | p9.cpp | 31 int *&test(X0<int*> xi, int *ip) { argument 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) { argument 52 f0(ip); 56 void test_f1(int *ip, float *fp) { argument 57 f1(ip); // expected-note{{instantiation}}
|
/external/libunwind/src/unwind/ |
H A D | FindEnclosingFunction.c | 29 _Unwind_FindEnclosingFunction (void *ip) argument 34 (unw_word_t) (uintptr_t) ip, &pi, 0)
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/ |
H A D | p2.cpp | 17 // int *ip = cta; 18 // ip = cta; 35 int *ip = ctcv; local
|