Searched refs:oldSize (Results 26 - 50 of 77) sorted by relevance

1234

/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DCCallbackMgr.cp148 size_t oldSize = CCallbackMgr::Instance().mEventCallbacks.size(); local
152 if (oldSize == CCallbackMgr::Instance().mEventCallbacks.size())
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DCCallbackMgr.cp148 size_t oldSize = CCallbackMgr::Instance().mEventCallbacks.size(); local
152 if (oldSize == CCallbackMgr::Instance().mEventCallbacks.size())
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DCCallbackMgr.cp148 size_t oldSize = CCallbackMgr::Instance().mEventCallbacks.size(); local
152 if (oldSize == CCallbackMgr::Instance().mEventCallbacks.size())
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp231 unsigned oldSize = visited.size(); local
233 if (visited.size() != oldSize) {
/macosx-10.10/WebCore-7600.1.25/loader/
H A DTextResourceDecoder.cpp454 size_t oldSize = m_buffer.size(); local
455 m_buffer.grow(oldSize + len);
456 memcpy(m_buffer.data() + oldSize, data, len);
499 size_t oldSize = m_buffer.size(); local
500 m_buffer.grow(oldSize + len);
501 memcpy(m_buffer.data() + oldSize, data, len);
635 size_t oldSize = m_buffer.size(); local
636 m_buffer.grow(oldSize + len);
637 memcpy(m_buffer.data() + oldSize, data, len);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DWidthIterator.cpp353 int oldSize = glyphBuffer.size(); local
356 for (int i = oldSize; i < glyphBuffer.size(); ++i)
359 return glyphBuffer.size() > oldSize;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/opentype/
H A DOpenTypeUtilities.cpp177 size_t oldSize = m_buffer.size(); local
178 m_buffer.resize(oldSize + length + 2 * sizeof(unsigned short));
179 UChar* dst = reinterpret_cast<UChar*>(m_buffer.data() + oldSize);
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DFormData.cpp256 size_t oldSize = e.m_data.size(); local
257 e.m_data.grow(oldSize + size);
258 return e.m_data.data() + oldSize;
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DPluginStream.cpp431 int oldSize = m_deliveryData->size(); local
432 m_deliveryData->resize(oldSize + length);
433 memcpy(m_deliveryData->data() + oldSize, data, length);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLCanvasElement.cpp320 IntSize oldSize = size(); local
326 if (m_hasCreatedImageBuffer && oldSize == newSize && m_deviceScaleFactor == newDeviceScaleFactor && m_context && m_context->is2d()) {
337 if (is3D() && oldSize != size())
343 if (oldSize != size()) {
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderEmbeddedObject.cpp473 LayoutSize oldSize = contentBoxRect().size(); local
495 if (!wasMissingWidget && newSize.width() >= oldSize.width() && newSize.height() >= oldSize.height()) {
520 if (newSize == oldSize && !childBox->needsLayout())
H A DRenderImage.cpp677 LayoutSize oldSize = contentBoxRect().size(); local
683 layoutShadowControls(oldSize);
686 void RenderImage::layoutShadowControls(const LayoutSize& oldSize) argument
702 if (newSize == oldSize && !controlsNeedLayout)
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclHash.c1015 int oldSize, count, index;
1032 oldSize = tablePtr->numBuckets;
1060 for (oldChainPtr = oldBuckets; oldSize > 0; oldSize--, oldChainPtr++) {
997 int oldSize, count, index; local
H A DtclLiteral.c959 int oldSize, count, index, length;
961 oldSize = tablePtr->numBuckets;
983 for (oldChainPtr=oldBuckets ; oldSize>0 ; oldSize--,oldChainPtr++) {
946 int oldSize, count, index, length; local
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclHash.c1137 int oldSize, count, index;
1144 oldSize = tablePtr->numBuckets;
1182 for (oldChainPtr = oldBuckets; oldSize > 0; oldSize--, oldChainPtr++) {
1119 int oldSize, count, index; local
H A DtclLiteral.c836 int oldSize, count, index, length;
838 oldSize = tablePtr->numBuckets;
862 oldSize > 0;
863 oldSize--, oldChainPtr++) {
825 int oldSize, count, index, length; local
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/gif/
H A DGIFImageDecoder.cpp321 const size_t oldSize = m_frameBufferCache.size(); local
323 for (size_t i = oldSize; i < m_reader->imagesCount(); ++i)
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGRoot.cpp176 LayoutSize oldSize = size(); local
181 m_isLayoutSizeChanged = needsLayout || (svgSVGElement().hasRelativeLengths() && oldSize != size());
/macosx-10.10/WebCore-7600.1.25/editing/
H A DVisibleUnits.cpp446 unsigned oldSize = buffer.size(); local
448 buffer.grow(oldSize + length);
449 memmove(buffer.data() + length, buffer.data(), oldSize * sizeof(UChar));
456 unsigned oldSize = buffer.size(); local
457 buffer.grow(oldSize + count);
458 memmove(buffer.data() + count, buffer.data(), oldSize * sizeof(UChar));
465 unsigned oldSize = buffer.size(); local
466 buffer.grow(oldSize + count);
468 buffer[oldSize + i] = character;
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSMetaClass.cpp415 int oldSize = sStalled->capacity * sizeof(OSMetaClass *); local
416 int newSize = oldSize
427 memmove(sStalled->classes, oldStalled, oldSize);
428 kfree(oldStalled, oldSize);
429 ACCUMSIZE(newSize - oldSize);
/macosx-10.10/IOAudioFamily-200.6/
H A DIOAudioControl.cpp646 UInt32 oldSize, newSize; local
655 oldSize = oldData->getLength();
658 oldSize = 0;
674 result = valueChangeHandler.dataHandler(valueChangeTarget, this, oldBytes, oldSize, newBytes, newSize);
/macosx-10.10/libunwind-35.3/src/
H A DUnwindCursor.hpp148 int oldSize = fgBufferEnd - fgBuffer; local
149 int newSize = oldSize*4;
151 memcpy(newBuffer, fgBuffer, oldSize*sizeof(entry));
156 fgBufferUsed = &newBuffer[oldSize];
/macosx-10.10/objc4-646/runtime/
H A Dobjc-auto.mm1078 uintptr_t oldSize = table[0]+1;
1079 uintptr_t *newTable = (uintptr_t *)auto_zone_allocate_object(gc_zone, oldSize*2*sizeof(void *), AUTO_MEMORY_UNSCANNED, true, true);
1081 newTable[0] = 2*oldSize - 1;
1083 for (i = 2; i < oldSize; ++i) {
H A Dobjc-class-old.mm1732 size_t oldSize;
1739 oldSize = sizeof(old_ivar_list) +
1743 oldSize = sizeof(old_ivar_list) - sizeof(old_ivar);
1749 _calloc_internal(oldSize+sizeof(old_ivar), 1);
1750 if (old) memcpy(cls->ivars, old, oldSize);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundation.cpp348 IntSize oldSize = m_cachedNaturalSize; local
350 if (oldSize != m_cachedNaturalSize)

Completed in 288 milliseconds

1234