Searched refs:startAddress (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclLoadAout.c166 char * startAddress; /* Starting address of the module */
207 startAddress = (char *) (((unsigned long) sbrk (0)
211 sprintf (p, "%08lx", (long) startAddress);
243 if ((unsigned long) sbrk (0) > (unsigned long) startAddress) {
260 (void) brk (startAddress + relocatedSize);
285 if (read (relocatedFd, startAddress, relocatedSize) < relocatedSize) {
286 brk (startAddress);
311 *loadHandle = startAddress;
165 char * startAddress; /* Starting address of the module */ local
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/
H A DtclLoadAout.c158 char * startAddress; /* Starting address of the module */
271 startAddress = (char *) (((unsigned long) sbrk (0)
275 sprintf(p, "%08lx", (long) startAddress);
308 if ((unsigned long) sbrk (0) > (unsigned long) startAddress) {
324 (void) brk (startAddress + relocatedSize);
342 if (read (relocatedFd, startAddress, relocatedSize) < relocatedSize) {
343 brk (startAddress);
370 return (void *) startAddress;
157 char * startAddress; /* Starting address of the module */ local
/macosx-10.10/xnu-2782.1.97/libkern/gen/
H A DOSAtomicOperations.c127 static Boolean OSTestAndSetClear(UInt32 bit, Boolean wantSet, volatile UInt8 * startAddress) argument
133 startAddress += (bit / 8);
138 oldValue = *startAddress;
142 } while (! OSCompareAndSwap8(oldValue, (oldValue & ~mask) | wantValue, startAddress));
147 Boolean OSTestAndSet(UInt32 bit, volatile UInt8 * startAddress) argument
149 return OSTestAndSetClear(bit, true, startAddress);
152 Boolean OSTestAndClear(UInt32 bit, volatile UInt8 * startAddress) argument
154 return OSTestAndSetClear(bit, false, startAddress);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DWin64EH.h63 uint64_t startAddress; member in struct:llvm::Win64EH::RuntimeFunction
/macosx-10.10/tcl-105/tcl_ext/trf/trf/compat/
H A DtclLoadAout.c156 char * startAddress; /* Starting address of the module */
238 startAddress = (char *) (((unsigned long) sbrk (0)
242 sprintf (p, "%08lx", (long) startAddress);
275 if ((unsigned long) sbrk (0) > (unsigned long) startAddress) {
291 (void) brk (startAddress + relocatedSize);
309 if (read (relocatedFd, startAddress, relocatedSize) < relocatedSize) {
310 brk (startAddress);
337 return (VOID *) startAddress;
155 char * startAddress; /* Starting address of the module */ local
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DJITStubRoutineSet.cpp62 uintptr_t start = routine->startAddress();
95 uintptr_t start = routine->startAddress();
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DJITStubRoutine.h100 uintptr_t startAddress() const { return m_code.executableMemory()->startAsInteger(); } function in class:JSC::JITStubRoutine
/macosx-10.10/xnu-2782.1.97/libkern/libkern/
H A DOSAtomic.h550 * @param startAddress The address of the byte to update atomically.
555 volatile UInt8 * startAddress);
568 * @param startAddress The address of the byte to update atomically.
573 volatile UInt8 * startAddress);
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIOFramebufferPrivate.h297 IOReturn readDDCBlock(IOIndex bus, IOI2CBusTiming * timing, UInt8 deviceAddress, UInt8 startAddress, UInt8 * data);
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIOFramebuffer.cpp9045 UInt8 startAddress; local
9056 startAddress = kDDCBlockSize * (blockNumber - 1);
9070 err = readDDCBlock(bus, timing, 0xa0, startAddress, data);
9296 // -> startAddress start address to get data from
9299 IOReturn IOFramebuffer::readDDCBlock(IOIndex bus, IOI2CBusTiming * timing, UInt8 deviceAddress, UInt8 startAddress, UInt8 * data) argument
9306 err = i2cWrite(bus, timing, deviceAddress, 1, &startAddress);

Completed in 111 milliseconds