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

12

/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dunknown.s2 .global _start
3 _start: label
/macosx-10.9.5/dyld-239.4/src/
H A Dstart_glue.s29 .globl _start
30 .private_extern _start
31 _start: label
44 .globl _start
45 .private_extern _start
46 _start: label
60 .globl _start
61 .private_extern _start
62 .thumb_func _start
63 _start label
[all...]
H A DdyldStartup.s151 pushl %edx # simulate return address into _start in libdyld
152 jmp *%eax # jump to main(argc,argv,env,apple) with return address set to _start
222 pushq %rdi # simulate return address into _start in libdyld
231 jmp *%rax # jump to main(argc,argv,env,apple) with return address set to _start
305 Lnew: mov lr, r5 // simulate return address into _start in libdyld
/macosx-10.9.5/Libc-997.90.3/include/
H A Dbitstring.h82 register int _start = start, _stop = stop; \
83 register int _startbyte = _bit_byte(_start); \
86 _name[_startbyte] &= ((0xff >> (8 - (_start&0x7))) | \
89 _name[_startbyte] &= 0xff >> (8 - (_start&0x7)); \
99 register int _start = start, _stop = stop; \
100 register int _startbyte = _bit_byte(_start); \
103 _name[_startbyte] |= ((0xff << (_start&0x7)) & \
106 _name[_startbyte] |= 0xff << ((_start)&0x7); \
/macosx-10.9.5/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); \
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Dlynxos.h49 #define _start __text macro
/macosx-10.9.5/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
/macosx-10.9.5/emacs-92/emacs/src/
H A Decrt0.c66 Similarly, note that the address of _start() should be the start
92 _start() function
109 /* _start must initialize _curbrk and _minbrk on the first startup;
125 _start (DUMMIES argc, argv, envp)
148 _start () function
150 /* On 16000, _start pushes fp onto stack */
170 _start() function
246 hack. So we hand-code _start in assembly language. */
258 _start () function
295 asm (" global _start");
348 _start () function
571 _start() function
[all...]
/macosx-10.9.5/libauto-185.5/
H A DStatistics.h46 volatile uint64_t _start; // The absolute time when the timer was last started (0 if the timer is not running) member in class:Auto::Timer
51 Timer() : _start(0), _accumulated(0) {}
54 inline boolean_t timer_running() const { return _start != 0; }
57 void start() { assert(!timer_running()); _start = _timeDataSource.current_time(); }
60 void stop() { assert(timer_running()); add_time(_timeDataSource.microseconds_duration(_start, _timeDataSource.current_time())); _start = 0; }
77 int64_t start = _start;
H A DDefinitions.h578 uint64_t _start, _stop; member in class:Auto::MicroTimer
580 MicroTimer() : _start(0), _stop(0) {}
581 void start() { _start = micro_time(); }
583 uint64_t elapsed() { return _stop - _start; }
599 uint64_t _start, _stop; member in class:Auto::NanoTimer
603 NanoTimer() : _start(0), _stop(0), _timebase(cached_timebase_info()) {}
605 void start() { _start = mach_absolute_time(); }
607 uint64_t elapsed() { return ((_stop - _start) * _timebase.numer) / _timebase.denom; }
/macosx-10.9.5/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 );
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOSubMemoryDescriptor.h44 IOByteCount _start; member in class:IOSubMemoryDescriptor
/macosx-10.9.5/Csu-79/
H A Dcrt.c168 * _start() is called from the machine dependent assembly entry point "start:" .
174 _start(int argc, const char* argv[], const char* envp[]) function
H A Dstart.s144 call __start # call _start(argc, argv, envp)
172 call __start # call _start(argc, argv, envp)
/macosx-10.9.5/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
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDQueueClass.h72 static IOReturn _start (void * self, IOOptionBits options);
128 static IOReturn _start (void * self);
H A DIOHIDEventServiceClass.h75 static IOReturn _start(void *self, CFDictionaryRef propertyTable, io_service_t service);
H A DIOHIDUPSClass.h103 static IOReturn _start(void *self,
H A DIOHIDQueueClass.cpp592 &IOHIDQueueClass::_start,
619 IOReturn IOHIDQueueClass::_start (void * self, IOOptionBits options) function in class:IOHIDQueueClass
652 &IOHIDObsoleteQueueClass::_start,
690 IOReturn IOHIDObsoleteQueueClass::_start (void * self) function in class:IOHIDObsoleteQueueClass
H A DIOHIDEventServiceClass.cpp67 &IOHIDEventServiceClass::_start,
195 IOReturn IOHIDEventServiceClass::_start(void *self, CFDictionaryRef propertyTable, io_service_t service) function in class:IOHIDEventServiceClass
/macosx-10.9.5/expat-12/expat/amiga/
H A Dexpat_lib.c120 void _start() function
/macosx-10.9.5/postfix-252/postfix/src/anvil/
H A Danvil.c334 #define ANVIL_REMOTE_RSET_RATE(remote, _start) \
340 (remote)->start = _start; \
/macosx-10.9.5/xnu-2422.115.4/osfmk/x86_64/
H A Dstart.s140 .globl EXT(_start)
142 LEXT(_start)
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dtabset.itk162 private variable _start 0 ;# -start in screen units
316 set _start [winfo pixels $itk_interior $itk_option(-start)]
319 set _start 4
1068 set tabStart $_start
1385 set startX [expr {$_start + $x - $_anchorX}]
1391 set startY [expr {$_start + $y - $_anchorY}]
1407 set startX [expr {$_start + $x - $_anchorX}]
1412 set startY [expr {$_start + $y - $_anchorY}]
/macosx-10.9.5/IOStorageFamily-172/
H A DIOBlockStorageDriver.cpp2984 if ( _start + _length < _requestCount )
2986 _start += _length;
2987 _length = min(_breakSize, _requestCount - _start);
2998 /* withRequestBufferOffset */ _start + _length );
3005 _byteStart = _requestStart + _start;
3026 *actualByteCount += _start;

Completed in 1195 milliseconds

12