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

/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DJSStack.h79 bool containsAddress(Register* address) { return (lowAddress() <= address && address < highAddress()); }
96 return highAddress() - 1;
99 size_t size() const { return highAddress() - lowAddress(); }
116 Register* highAddress() const function in class:JSC::JSStack
122 Register* highAddress() const;
H A DJSStack.cpp62 setStackLimit(highAddress());
63 m_commitTop = highAddress();
74 ptrdiff_t sizeToDecommit = reinterpret_cast<char*>(highAddress()) - reinterpret_cast<char*>(m_commitTop);
111 conservativeRoots.add(topOfStack() + 1, highAddress());
116 conservativeRoots.add(topOfStack() + 1, highAddress(), jitStubRoutines, codeBlocks);
136 Register* highAddressWithReservedZone = highAddress() - m_reservedZoneSizeInRegisters;
170 Register* JSStack::highAddress() const function in class:JSC::JSStack
H A DJSStackInlines.h71 if (m_end == baseOfStack() && (highAddress() - m_commitTop) >= maxExcessInRegisters)
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWDCLProgram.cpp139 IOVirtualAddress highAddress = 0 ; local
149 highAddress = MAX( highAddress, round_page( tempRange.address + tempRange.length ) ) ;
154 DebugLog("IODCLProgram::generateBufferMap lowAddress=%llx highAddress=%llx\n", lowAddress, highAddress ) ;
156 DebugLog("IODCLProgram::generateBufferMap lowAddress=%x highAddress=%x\n", lowAddress, highAddress ) ;
164 IOByteCount length = highAddress - lowAddress;
H A DIOFWDCL.cpp185 IOVirtualAddress highAddress = lowAddress + fRanges[0].length ; local
190 highAddress = min( lowAddress + fRanges[ index ].length, highAddress ) ;
194 result.length = highAddress - lowAddress ;
/macosx-10.10.1/dyld-353.2.1/src/
H A Ddyld.cpp3214 static void getCacheBounds(uint32_t mappingsCount, const shared_file_mapping_np mappings[], uint64_t& lowAddress, uint64_t& highAddress) argument
3217 highAddress = 0;
3221 highAddress = mappings[i].sfm_address + mappings[i].sfm_size;
3226 if ( (mappings[i].sfm_address + mappings[i].sfm_size) > highAddress )
3227 highAddress = mappings[i].sfm_address + mappings[i].sfm_size;
3263 uint64_t highAddress; local
3264 getCacheBounds(mappingsCount, mappings, lowAddress, highAddress);
3267 const uint64_t space = (SHARED_REGION_BASE + SHARED_REGION_SIZE) - highAddress;
3433 uint64_t highAddress; local
3434 getCacheBounds(mappingCount, mappings, lowAddress, highAddress);
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/yarr/
H A DYarrJIT.cpp845 BaseIndex highAddress(input, index, TimesOne, (startTermPosition - m_checked) * sizeof(LChar));
846 load16Unaligned(highAddress, character);

Completed in 107 milliseconds