OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fptr_t
(Results
1 - 10
of
10
) sorted by relevancy
/src/lib/csu/common/
crtbegin.c
34
typedef void (*
fptr_t
)(void);
typedef
36
__dso_hidden const
fptr_t
__JCR_LIST__[0] __section(".jcr");
38
__weakref_visible void Jv_RegisterClasses(const
fptr_t
*)
42
extern __dso_hidden const
fptr_t
__CTOR_LIST__start __asm("__CTOR_LIST__");
44
__dso_hidden const
fptr_t
__aligned(sizeof(void *)) __CTOR_LIST__[] __section(".ctors") = {
45
(
fptr_t
) -1,
47
__dso_hidden extern const
fptr_t
__CTOR_LIST_END__[];
91
for (const
fptr_t
*p = __CTOR_LIST_END__; p > &__CTOR_LIST__start + 1; ) {
99
extern __dso_hidden const
fptr_t
__DTOR_LIST__start __asm("__DTOR_LIST__");
101
__dso_hidden const
fptr_t
__aligned(sizeof(void *)) __DTOR_LIST__[] __section(".dtors") =
[
all
...]
crt0-common.c
56
typedef void (*
fptr_t
)(void);
typedef
100
extern const
fptr_t
__preinit_array_start[] __dso_hidden;
101
extern const
fptr_t
__preinit_array_end[] __dso_hidden __weak;
102
extern const
fptr_t
__init_array_start[] __dso_hidden;
103
extern const
fptr_t
__init_array_end[] __dso_hidden __weak;
104
extern const
fptr_t
__fini_array_start[] __dso_hidden;
105
extern const
fptr_t
__fini_array_end[] __dso_hidden __weak;
110
for (const
fptr_t
*f = __preinit_array_start; f < __preinit_array_end; f++) {
118
for (const
fptr_t
*f = __init_array_start; f < __init_array_end; f++) {
126
for (const
fptr_t
*f = __fini_array_start; f < __fini_array_end; f++)
[
all
...]
/src/external/gpl3/gcc/dist/libgcc/config/pa/
fptr.c
51
typedef int (*
fptr_t
) (void);
typedef
74
unsigned int __canonicalize_funcptr_for_compare (
fptr_t
)
78
__canonicalize_funcptr_for_compare (
fptr_t
fptr)
/src/external/gpl3/gcc.old/dist/libgcc/config/pa/
fptr.c
51
typedef int (*
fptr_t
) (void);
typedef
74
unsigned int __canonicalize_funcptr_for_compare (
fptr_t
)
78
__canonicalize_funcptr_for_compare (
fptr_t
fptr)
/src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/windows/
advapi32.d
28
alias
fptr_t
= extern(Windows) BOOL function(HANDLE, PBOOL);
30
auto IsWow64Process = cast(
fptr_t
) GetProcAddress(hKernel, "IsWow64Process");
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
slow-waitpid.c
170
typedef pid_t (*
fptr_t
) (pid_t, int *, int);
typedef
171
static
fptr_t
real_func = NULL;
302
typedef int (*
fptr_t
) (const sigset_t *);
typedef
303
static
fptr_t
real_func = NULL;
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
slow-waitpid.c
170
typedef pid_t (*
fptr_t
) (pid_t, int *, int);
typedef
171
static
fptr_t
real_func = NULL;
302
typedef int (*
fptr_t
) (const sigset_t *);
typedef
303
static
fptr_t
real_func = NULL;
/src/libexec/ld.elf_so/
rtld.h
148
typedef void (*
fptr_t
)(void);
typedef
197
fptr_t
init; /* Initialization function to call */
198
fptr_t
fini; /* Termination function to call */
309
fptr_t
*init_array; /* start of init array */
311
fptr_t
*fini_array; /* start of fini array */
313
fptr_t
*preinit_array; /* start of preinit array */
headers.c
315
(
fptr_t
*)(obj->relocbase + dynp->d_un.d_ptr);
321
obj->init_arraysz = dynp->d_un.d_val / sizeof(
fptr_t
);
336
(
fptr_t
*)(obj->relocbase + dynp->d_un.d_ptr);
342
obj->fini_arraysz = dynp->d_un.d_val / sizeof(
fptr_t
);
351
(
fptr_t
*)(obj->relocbase + dynp->d_un.d_ptr);
357
obj->preinit_arraysz = dynp->d_un.d_val / sizeof(
fptr_t
);
rtld.c
476
_rtld_call_initfini_function(
fptr_t
func, sigset_t *mask)
507
fptr_t
fini = *obj->fini_array++;
598
fptr_t
init = *obj->init_array++;
640
fptr_t
preinit = obj->preinit_array[i];
Completed in 20 milliseconds
Indexes created Tue Sep 08 00:25:21 UTC 2026