Searched refs:_start (Results 1 - 7 of 7) sorted by relevance

/xnu-2422.115.4/bsd/sys/
H A Dbitstring.h110 int _start = (start), _stop = (stop); \
111 int _startbyte = _bit_byte(_start); \
114 _name[_startbyte] &= ((0xff >> (8 - (_start & 0x7))) | \
117 _name[_startbyte] &= 0xff >> (8 - (_start & 0x7)); \
127 int _start = (start), _stop = (stop); \
128 int _startbyte = _bit_byte(_start); \
131 _name[_startbyte] |= ((0xff << (_start & 0x7)) & \
134 _name[_startbyte] |= 0xff << ((_start) & 0x7); \
/xnu-2422.115.4/libkern/kmod/
H A Dc_start.c40 The trick is that the linkline links all of the developers modules. If any static constructors are used .constructors_used will be left as an undefined symbol. This symbol is exported by the cplus_start.c routine which automatically brings in the appropriate C++ _start routine. However the actual _start symbol is only required by the kmod_info structure that is created and initialized by the CreateKModInfo.perl script. If no C++ was used the _start will be an undefined symbol that is finally satisfied by the c_start module in the kmod library.
54 __private_extern__ kern_return_t _start(kmod_info_t *ki, void *data) function
/xnu-2422.115.4/iokit/Kernel/
H A DIOSubMemoryDescriptor.cpp93 _start = offset;
125 address = _parent->getPhysicalSegment( offset + _start, &actualLength, options );
184 options, _start + offset, length );
/xnu-2422.115.4/iokit/IOKit/
H A DIOSubMemoryDescriptor.h44 IOByteCount _start; member in class:IOSubMemoryDescriptor
/xnu-2422.115.4/tools/lldbmacros/core/
H A Dcvalue.py68 _start = int(key.start)
74 while _start < _end:
75 retval.append(self[_start])
76 _start += _step
/xnu-2422.115.4/osfmk/x86_64/
H A Dstart.s140 .globl EXT(_start)
142 LEXT(_start)
/xnu-2422.115.4/security/
H A Dmac_policy.h6807 extern kern_return_t _start(kmod_info_t *ki, void *data); \
6810 KMOD_EXPLICIT_DECL(security.mpname, POLICY_VER, _start, _stop) \

Completed in 46 milliseconds