Home
last modified time | relevance | path

Searched refs:structors (Results 1 – 2 of 2) sorted by relevance

/xnu-11215/libkern/c++/
H A DOSRuntime.cpp192 structor_t * structors = (structor_t *)section->addr; in OSRuntimeCallStructorsInSection() local
193 if (!structors) { in OSRuntimeCallStructorsInSection()
209 structor = structors[baseIdx + (lim >> 1)]; in OSRuntimeCallStructorsInSection()
218 structor = structors[firstIndex - 1]; in OSRuntimeCallStructorsInSection()
239 if ((structor = structors[firstIndex])) { in OSRuntimeCallStructorsInSection()
356 structor_t * structors; in OSRuntimeSignStructorsInSegment() local
367 structors = (structor_t *)section->addr; in OSRuntimeSignStructorsInSegment()
368 if (!structors) { in OSRuntimeSignStructorsInSegment()
373 structor = structors[idx]; in OSRuntimeSignStructorsInSegment()
379 structors[idx] = structor; in OSRuntimeSignStructorsInSegment()
/xnu-11215/doc/allocators/
H A Dapi-basics.md305 However, if you have non default structors, or members of your class/struct
306 have non default structors, you will need to manually enroll it into `kalloc_type`.