Searched refs:ctors (Results 1 - 3 of 3) sorted by relevance

/barrelfish-master/lib/crt/
H A Dcrtend.c3 * \brief C++ startup code. Contains .ctors section footer and ABI support.
21 /// NULL terminate the .ctors array
22 static CDtor ctors[1] variable
23 __attribute__ ((used, section(".ctors"), aligned(sizeof(CDtor))))
H A Dcrtbegin.c3 * \brief C++ startup code. Contains .ctors section header and _main().
22 /// First entry in .ctors array is the unspecified length marker (-1)
23 static volatile CDtor ctors[1] variable
24 __attribute__ ((unused, section(".ctors"), aligned(sizeof(CDtor))))
38 * \brief Call global (static) constructors, listed in .ctors
41 * .ctors section and calls each function therein, in reverse
47 // First word gives length of ctors array, or -1
48 intptr_t n = (intptr_t)ctors[0];
52 for(n = 0; ctors[n + 1] != 0; n++);
57 ctors[
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/perlasm/
H A Dx86gas.pl220 .section .ctors

Completed in 84 milliseconds