HomeSort by relevance Sort by last modified time
    Searched refs:uninitializedCopy (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 166 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
179 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
257 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
259 VectorCopier<VectorTraits<T>::canCopyWithMemcpy, T>::uninitializedCopy(src, srcEnd, dst);
667 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
677 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
702 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
735 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
    [all...]
Deque.h 322 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
324 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
325 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);

Completed in 160 milliseconds