OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fnp
(Results
1 - 4
of
4
) sorted by null
/bionic/libc/stdlib/
atexit.c
64
struct atexit_fn *
fnp
;
local
95
fnp
= &p->fns[p->ind++];
96
fnp
->fn_ptr.cxa_func = func;
97
fnp
->fn_arg = arg;
98
fnp
->fn_dso = dso;
/external/clang/test/SemaCXX/
cstyle-cast.cpp
177
fnptr
fnp
= (fnptr)(l);
local
178
(void)(char)(
fnp
); // expected-error {{cast from pointer to smaller type 'char' loses information}}
179
(void)(long)(
fnp
);
functional-cast.cpp
240
fnptr
fnp
= fnptr(l);
local
241
(void)char(
fnp
); // expected-error {{cast from pointer to smaller type 'char' loses information}}
242
(void)long(
fnp
);
reinterpret-cast.cpp
27
fnptr
fnp
= reinterpret_cast<fnptr>(i);
local
28
(void)reinterpret_cast<char>(
fnp
); // expected-error {{cast from pointer to smaller type 'char' loses information}}
29
(void)reinterpret_cast<intptr_t>(
fnp
);
Completed in 183 milliseconds