OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ip
(Results
1 - 25
of
282
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/
p5.cpp
9
int*
ip
;
local
10
float &fr1 = f(
ip
);
11
float &fr2 = g(
ip
);
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p2.cpp
16
// int *
ip
= cta;
17
//
ip
= cta;
34
int *
ip
= ctcv;
local
p3.cpp
10
int* const
ip
= ap;
local
17
const int* const &
ip
= ap;
local
p4.cpp
27
int * const * const * const
ip
= a3;
local
/external/clang/test/FixIt/
dereference-addressof.c
6
void
ip
(int *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}}
function
14
ip
(a); // expected-warning{{incompatible integer to pointer conversion passing 'int' to parameter of type 'int *'; take the address with &}}
/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/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/dcl.decl/dcl.meaning/dcl.mptr/
p3.cpp
19
int A::*
ip
= &A::s; // expected-error {{cannot initialize a variable of type 'int A::*' with an rvalue of type 'int *'}}
member in class:A
/external/clang/test/CXX/except/except.handle/
p16.cpp
13
int *
ip
= 0;
local
14
ptr =
ip
; // expected-error{{assigning to 'float *' from incompatible type 'int *'}}
/external/clang/test/Index/
complete-macros.c
13
int *
ip
= nil;
local
14
ip
= nil;
/external/clang/test/SemaCXX/
condition.cpp
42
float *
ip
;
local
43
if (int *
ip
=
ip
) {
complex-overload.cpp
17
int *
ip
= foo(fc);
local
26
int *
ip
= foo(fc);
local
/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/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;
/hardware/ti/omap4xxx/
stacktrace.c
53
intptr_t
ip
= (intptr_t)_Unwind_GetIP(context);
local
54
if (
ip
) {
55
state->addrs[0] =
ip
;
/external/iproute2/doc/
ip-cref.tex
2
\def\TITLE{
IP
Command Reference}
5
\Large\bf
IP
Command Reference.
24
This document presents a comprehensive description of the \verb|
ip
| utility
30
and examples to understand and configure Linux-2.2
IP
and IPv6
33
This document is split into sections explaining \verb|
ip
| commands
34
and options, decrypting \verb|
ip
| output and containing a few examples.
41
\section{{\tt
ip
} --- command syntax}
43
The generic form of an \verb|
ip
| command is:
45
ip
[ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]]
48
general behaviour of the \verb|
ip
| utility or changing its output. All option
[
all
...]
/external/clang/test/Analysis/
nullptr.cpp
26
int *
ip
= &(((struct foo *)np)->f);
local
27
*
ip
= 0; // expected-warning{{Dereference of null pointer}}
/external/clang/test/CXX/expr/expr.unary/expr.new/
p19.cpp
14
int *
ip
= I; // expected-error{{cannot initialize}}
local
36
int *
ip
= I; // expected-error{{cannot initialize}}
local
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
p11.cpp
7
int *
ip
= f<int>(1); // calls #1
local
21
int*
ip
= f2<int>(1);
local
/external/clang/test/PCH/
chain-conversion-lookup.cpp
20
int *
ip
= x.operator int*();
local
/external/clang/test/Sema/
overloadable-complex.c
17
int *
ip
= foo(fc);
local
26
int *
ip
= foo(fc);
local
/external/clang/test/SemaTemplate/
metafun-apply.cpp
30
apply1<add_pointer, int>::type
ip
= &i;
variable
typename-specifier-2.cpp
16
// FIXME: if we make the declarator below a pointer (e.g., with *
ip
),
20
bind_metafun<add_pointer, int>::type::type
ip
= &i;
variable
/external/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/openssl/crypto/bio/
bss_sock.c
171
int *
ip
;
local
184
ip
=(int *)ptr;
185
if (
ip
!= NULL) *
ip
=b->num;
Completed in 254 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>