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

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/interpreter/mterp/arm64/
op_nop.S 2 GET_INST_OPCODE ip // ip<- opcode from rINST
3 GOTO_OPCODE ip // execute it
  /toolchain/binutils/binutils-2.27/gold/testsuite/
copy_test_protected.cc 27 extern int ip; // protected visibility; may not be copied
34 assert(ip == 3);
copy_test_2.cc 25 int ip __attribute__((visibility("protected"))) = 3; variable
  /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 *')}}
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
long-plt-format.d 13 .*: .* add ip, pc, #-268435456 ; 0xf0000000
14 .*: .* add ip, ip, #0, 12
15 .*: .* add ip, ip, #0, 20
16 .*: .* ldr pc, [ip, #[0-9]*]! ; 0x.*
  /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);
  /device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
switch8.S 21 ldrb ip, [lr, #-1]
22 cmp r0, ip
24 ldrsbcs r0, [lr, ip]
25 add ip, lr, r0, lsl #1
26 bx ip
switchu8.S 21 ldrb ip,[lr,#-1]
22 cmp r0,ip
24 ldrbcs r0,[lr,ip]
25 add ip,lr,r0,LSL #1
26 bx ip
switch16.S 21 ldrh ip, [lr, #-1]
22 cmp r0, ip
25 add ip, lr, ip, lsl #1
26 ldrshcs r0, [ip, #1]
27 add ip, lr, r0, lsl #1
28 bx ip
switch32.S 21 ldr ip, [lr, #-1]
22 cmp r0, ip
25 add ip, lr, ip, lsl #2
26 ldrcs r0, [ip, #3]
27 add ip, lr, r0
28 bx ip
  /external/libvpx/libvpx/vp8/encoder/
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 += pitch / 2
64 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/libvpx/libvpx/vp8/common/mips/dspr2/
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[4] + ((ip[4] * cospi8sqrt2minus1) >> 16)
269 short *ip = input; local
    [all...]
  /external/iproute2/man/man8/
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/
p5.cpp 10 int* ip; local
11 float &fr1 = f(ip);
12 float &fr2 = g(ip);
  /art/runtime/interpreter/mterp/arm/
op_nop.S 2 GET_INST_OPCODE ip @ ip<- opcode from rINST
3 GOTO_OPCODE ip @ execute it
  /external/libvpx/libvpx/vp8/common/
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[4] * cospi8sqrt2minus1) >> 16)
132 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

Completed in 403 milliseconds

1 2 3 4 5 6 7 8 91011>>