Symbol: _start
dist/pf/sbin/pfctl/pfctl_osfp.c
557
int _dot = -1, _start = -1, _end = -1, _i = 0; \
dist/pf/sbin/pfctl/pfctl_osfp.c
564
_start = fp->field[_i++] - '0'; \
dist/pf/sbin/pfctl/pfctl_osfp.c
568
_start = (_start * 10) + fp->field[_i++] - '0'; \
dist/pf/sbin/pfctl/pfctl_osfp.c
587
for (;_start <= _end; _start++) { \
dist/pf/sbin/pfctl/pfctl_osfp.c
592
"%d", _start); \
dist/pf/sbin/pfctl/pfctl_osfp.c
595
"%d.%d", _dot, _start); \
include/bitstring.h
100
bit_clear(_name, _start); \
include/bitstring.h
101
_start++; \
include/bitstring.h
108
size_t _start = start, _stop = stop; \
include/bitstring.h
109
while (_start <= _stop) { \
include/bitstring.h
110
bit_set(_name, _start); \
include/bitstring.h
111
_start++; \
include/bitstring.h
98
size_t _start = start, _stop = stop; \
include/bitstring.h
99
while (_start <= _stop) { \
sys/arch/ia64/stand/common/bitstring.h
101
_name[_startbyte] |= 0xff << ((_start)&0x7); \
sys/arch/ia64/stand/common/bitstring.h
77
register int _start = (start), _stop = (stop); \
sys/arch/ia64/stand/common/bitstring.h
78
register int _startbyte = _bit_byte(_start); \
sys/arch/ia64/stand/common/bitstring.h
81
_name[_startbyte] &= ((0xff >> (8 - (_start&0x7))) | \
sys/arch/ia64/stand/common/bitstring.h
84
_name[_startbyte] &= 0xff >> (8 - (_start&0x7)); \
sys/arch/ia64/stand/common/bitstring.h
94
register int _start = (start), _stop = (stop); \
sys/arch/ia64/stand/common/bitstring.h
95
register int _startbyte = _bit_byte(_start); \
sys/arch/ia64/stand/common/bitstring.h
98
_name[_startbyte] |= ((0xff << (_start&0x7)) & \
sys/arch/prep/stand/boot/inkernel.c
43
extern char _start[], _edata[];
sys/arch/prep/stand/boot/inkernel.c
44
char *p = (char *)(ladr + (_edata - _start));
sys/arch/rs6000/stand/boot/inkernel.c
45
extern char _start[], _edata[], _end[];
sys/arch/rs6000/stand/boot/inkernel.c
50
printf("p=%p start %p edata %p end %p ladr %lx\n", p, _start, _edata, _end, ladr);
sys/arch/sun68k/stand/libsa/libsa.h
22
void _start(void);
sys/arch/usermode/usermode/pmap.c
156
extern void _start(void); /* start of kernel */
sys/arch/usermode/usermode/pmap.c
167
thunk_printf_debug("start kernel at %p\n", _start);
sys/arch/usermode/usermode/pmap.c
176
kmem_k_start = (vaddr_t) PAGE_SIZE * (atop(_start) );
sys/arch/vax/vax/locore.c
49
void _start(struct rpb *);
sys/arch/zaurus/stand/zboot/crt0.c
36
void _start(void);
sys/kern/subr_extent.c
110
#define EXTENT_ALIGN(_start, _align, _skew) \
sys/kern/subr_extent.c
111
(((((_start) - (_skew)) + ((_align) - 1)) & (-(_align))) + (_skew))
sys/sys/mount.h
256
int fsname##_start(struct mount *, int); \