HomeSort by relevance Sort by last modified time
    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 178 fnptr fnp = (fnptr)(l); local
179 (void)(char)(fnp); // expected-error {{cast from pointer to smaller type 'char' loses information}}
180 (void)(long)(fnp);
functional-cast.cpp 241 fnptr fnp = fnptr(l); local
242 (void)char(fnp); // expected-error {{cast from pointer to smaller type 'char' loses information}}
243 (void)long(fnp);
reinterpret-cast.cpp 41 fnptr fnp = reinterpret_cast<fnptr>(i); local
42 (void)reinterpret_cast<char>(fnp); // expected-error {{cast from pointer to smaller type 'char' loses information}}
43 (void)reinterpret_cast<intptr_t>(fnp);

Completed in 73 milliseconds