OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:int_ptr
(Results
1 - 24
of
24
) sorted by relevancy
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/
scm-value-cc.cc
21
typedef int *
int_ptr
;
typedef
28
int_ptr
ptr = &val;
29
int_ptr
&int_ptr_ref = ptr;
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/
scm-value-cc.cc
21
typedef int *
int_ptr
;
typedef
28
int_ptr
ptr = &val;
29
int_ptr
&int_ptr_ref = ptr;
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-explore.cc
31
typedef int *
int_ptr
;
typedef
38
int_ptr
ptr = &val;
39
int_ptr
&int_ptr_ref = ptr;
py-rvalue-ref-value-cc.cc
43
typedef int *
int_ptr
;
typedef
50
int_ptr
ptr = &val;
51
int_ptr
&&int_ptr_rref = std::move (ptr);
py-prettyprint-stub.py
28
int_ptr
= gdb.lookup_type("int").pointer()
31
(self.val.address.cast(char_ptr) +
int_ptr
.sizeof)
32
.cast(
int_ptr
)
py-value-cc.cc
86
typedef int *
int_ptr
;
typedef
94
int_ptr
ptr = &val;
95
int_ptr
&int_ptr_ref = ptr;
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-explore.cc
31
typedef int *
int_ptr
;
typedef
38
int_ptr
ptr = &val;
39
int_ptr
&int_ptr_ref = ptr;
py-rvalue-ref-value-cc.cc
43
typedef int *
int_ptr
;
typedef
50
int_ptr
ptr = &val;
51
int_ptr
&&int_ptr_rref = std::move (ptr);
py-prettyprint-stub.py
26
int_ptr
= gdb.lookup_type("int").pointer()
29
(self.val.address.cast(char_ptr) +
int_ptr
.sizeof)
30
.cast(
int_ptr
)
py-value-cc.cc
80
typedef int *
int_ptr
;
typedef
88
int_ptr
ptr = &val;
89
int_ptr
&int_ptr_ref = ptr;
/src/tests/usr.bin/xlint/lint1/
msg_247_ilp32_ldbl64.c
41
static int *
int_ptr
;
variable
76
bool_ptr = (typeof(bool_ptr))
int_ptr
;
121
char_ptr = (typeof(char_ptr))
int_ptr
;
153
schar_ptr = (typeof(schar_ptr))
int_ptr
;
198
uchar_ptr = (typeof(uchar_ptr))
int_ptr
;
229
short_ptr = (typeof(short_ptr))
int_ptr
;
277
ushort_ptr = (typeof(ushort_ptr))
int_ptr
;
317
int_ptr
= (typeof(
int_ptr
))bool_ptr;
318
int_ptr
= (typeof(int_ptr))char_ptr
[
all
...]
msg_247_lp64_ldbl128.c
41
static int *
int_ptr
;
variable
76
bool_ptr = (typeof(bool_ptr))
int_ptr
;
121
char_ptr = (typeof(char_ptr))
int_ptr
;
153
schar_ptr = (typeof(schar_ptr))
int_ptr
;
198
uchar_ptr = (typeof(uchar_ptr))
int_ptr
;
229
short_ptr = (typeof(short_ptr))
int_ptr
;
277
ushort_ptr = (typeof(ushort_ptr))
int_ptr
;
317
int_ptr
= (typeof(
int_ptr
))bool_ptr;
318
int_ptr
= (typeof(int_ptr))char_ptr
[
all
...]
msg_247_portable.c
44
static int *
int_ptr
;
variable
79
bool_ptr = (typeof(bool_ptr))
int_ptr
;
124
char_ptr = (typeof(char_ptr))
int_ptr
;
156
schar_ptr = (typeof(schar_ptr))
int_ptr
;
201
uchar_ptr = (typeof(uchar_ptr))
int_ptr
;
232
short_ptr = (typeof(short_ptr))
int_ptr
;
280
ushort_ptr = (typeof(ushort_ptr))
int_ptr
;
320
int_ptr
= (typeof(
int_ptr
))bool_ptr;
321
int_ptr
= (typeof(int_ptr))char_ptr
[
all
...]
msg_247_portable_int.c
49
static int *
int_ptr
;
variable
84
bool_ptr = (typeof(bool_ptr))
int_ptr
;
129
char_ptr = (typeof(char_ptr))
int_ptr
;
161
schar_ptr = (typeof(schar_ptr))
int_ptr
;
206
uchar_ptr = (typeof(uchar_ptr))
int_ptr
;
237
short_ptr = (typeof(short_ptr))
int_ptr
;
285
ushort_ptr = (typeof(ushort_ptr))
int_ptr
;
325
int_ptr
= (typeof(
int_ptr
))bool_ptr;
326
int_ptr
= (typeof(int_ptr))char_ptr
[
all
...]
queries.c
79
int *
int_ptr
;
variable
537
int_ptr
= void_ptr;
539
int_ptr
= (int *)void_ptr;
544
int_ptr
= void_ptr;
546
int_ptr
= char_ptr;
548
char_ptr =
int_ptr
;
550
int_ptr
= (void *)0;
c11.c
80
typedef int *
int_ptr
;
typedef
81
const
int_ptr
constant_ptr;
/src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_interface_test.cc
33
int *
int_ptr
= Ident(new int);
local
39
EXPECT_EQ(true, __sanitizer_get_ownership(
int_ptr
));
40
EXPECT_EQ(sizeof(int), __sanitizer_get_allocated_size(
int_ptr
));
63
delete
int_ptr
;
asan_test.cc
423
int *
int_ptr
= new int[0];
local
425
EXPECT_TRUE(NULL !=
int_ptr
);
427
EXPECT_NE(
int_ptr
, int_ptr2);
428
delete[]
int_ptr
;
439
int *
int_ptr
= Ident(new int);
local
442
EXPECT_EQ(sizeof(int), malloc_usable_size(
int_ptr
));
448
delete
int_ptr
;
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc
4571
int *
int_ptr
= new int;
local
4576
EXPECT_TRUE(__sanitizer_get_ownership(
int_ptr
));
4577
EXPECT_EQ(sizeof(*
int_ptr
), __sanitizer_get_allocated_size(
int_ptr
));
4594
delete
int_ptr
;
4632
int *
int_ptr
= Ident(new int);
local
4635
EXPECT_EQ(sizeof(int), malloc_usable_size(
int_ptr
));
4637
delete
int_ptr
;
/src/external/bsd/openpam/dist/
configure
6621
typedef int *
int_ptr
;
6622
int foo (
int_ptr
$ac_kw ip) { return ip[0]; }
/src/external/gpl3/gdb/dist/gnulib/
configure
7542
typedef int *
int_ptr
;
7543
int foo (
int_ptr
$ac_kw ip) { return ip[0]; }
/src/external/gpl3/gdb.old/dist/gnulib/
configure
7542
typedef int *
int_ptr
;
7543
int foo (
int_ptr
$ac_kw ip) { return ip[0]; }
/src/external/lgpl3/gmp/dist/
configure
23544
typedef int *
int_ptr
;
23545
int foo (
int_ptr
$ac_kw ip) {
/src/external/gpl2/gettext/dist/gettext-tools/
configure
[
all
...]
Completed in 120 milliseconds
Indexes created Sat Feb 28 05:31:39 UTC 2026