Searched refs:newBase (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WTF-7600.1.24/wtf/
H A DOSAllocator.h104 void* newBase = reserveAndCommit(newSize, usage, writable, executable); local
105 memcpy(newBase, oldBase, std::min(oldSize, newSize));
107 return static_cast<T*>(newBase);
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/TinyTP/
H A Dttp3.cpp117 unsigned char *newBase; // pointer to start of segment local
129 newBase = BufBase(ttpbuf) + (i * MaxSegSize); // starting point
130 seg = CBufferSegment::New(newBase, length); // wrap a cbuffer around the block
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DMIPSAssembler.h186 void* newBase = m_buffer.data(); local
187 if (oldBase != newBase)
188 relocateJumps(oldBase, newBase);
931 /* Update each jump in the buffer of newBase. */
932 void relocateJumps(void* oldBase, void* newBase) argument
937 MIPSWord* insn = reinterpret_cast<MIPSWord*>(reinterpret_cast<intptr_t>(newBase) + pos);
945 int oldInsnAddress = (int)insn - (int)newBase + (int)oldBase;
948 int newTargetAddress = oldTargetAddress - (int)oldBase + (int)newBase;
964 int newTargetAddress = oldTargetAddress - (int)oldBase + (int)newBase;
/macosx-10.10/WebCore-7600.1.25/editing/
H A DDeleteSelectionCommand.cpp168 VisiblePosition newBase; local
171 newBase = start;
174 newBase = end;
177 setStartingSelection(VisibleSelection(newBase, newExtent, startingSelection().isDirectional()));
H A DFrameSelection.cpp236 VisiblePosition newBase = base; local
240 adjustEndpointsAtBidiBoundary(newBase, newExtent);
242 if (newBase != base || newExtent != extent) {
244 newSelection.setBase(newBase);
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSObject.cpp2704 void* newBase = butterfly->base(preCapacity, outOfLineCapacityBefore); local
2706 memmove(newBase, currentBase, this->butterflyTotalSize());
2707 setButterflyWithoutChangingStructure(vm, Butterfly::fromBase(newBase, preCapacity, outOfLineCapacityAfter));

Completed in 148 milliseconds