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

1234

/external/skia/gm/
H A Drrect.cpp75 static SkScalar prop(SkScalar radius, SkScalar newSize, SkScalar oldSize) { argument
76 return newSize * radius / oldSize;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLCanvasElement.cpp285 IntSize oldSize = size(); local
290 if (hadImageBuffer && oldSize == newSize && m_context && m_context->is2d()) {
298 if (m_context && m_context->is3d() && oldSize != size())
303 if (oldSize != size()) {
H A DHTMLSelectElement.cpp330 int oldSize = m_size; local
343 if (oldSize != size)
348 if (m_size != oldSize && inActiveDocument()) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGRoot.cpp174 LayoutSize oldSize = size(); local
183 m_isLayoutSizeChanged = needsLayout || (svg->hasRelativeLengths() && oldSize != size());
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageFrameGenerator.cpp245 const size_t oldSize = m_hasAlpha.size(); local
247 for (size_t i = oldSize; i < m_hasAlpha.size(); ++i)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageDecoder.cpp297 const size_t oldSize = m_frameBufferCache.size(); local
300 for (size_t i = oldSize; i < m_reader->imagesCount(); ++i) {
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDocument.cpp238 int oldSize = fPages.count(); local
240 for (int i = oldSize; i <= pageNumber; i++) {
/external/qemu/android/base/
H A DString.cpp99 size_t oldSize = mSize; local
101 ::memmove(mStr + oldSize, str, len);
/external/skia/src/pdf/
H A DSkPDFDocument.cpp238 int oldSize = fPages.count(); local
240 for (int i = oldSize; i <= pageNumber; i++) {
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DThreadState.cpp752 bool ThreadState::increasedEnoughToGC(size_t newSize, size_t oldSize) argument
756 size_t limit = oldSize + (oldSize >> 1);
774 bool ThreadState::increasedEnoughToForceConservativeGC(size_t newSize, size_t oldSize) argument
778 size_t limit = (m_lowCollectionRate ? 4 : 2) * oldSize;
/external/opencv/cv/src/
H A Dcvsurf.cpp82 icvResizeHaarPattern( const int src[][5], CvSurfHF* dst, int n, int oldSize, int newSize, int widthStep ) argument
86 int dx1 = src[k][0]*newSize/oldSize;
87 int dy1 = src[k][1]*newSize/oldSize;
88 int dx2 = src[k][2]*newSize/oldSize;
89 int dy2 = src[k][3]*newSize/oldSize;
/external/chromium_org/third_party/libxslt/libxslt/
H A Dtemplates.c123 int oldPos, oldSize; local
130 oldSize = ctxt->xpathCtxt->contextSize;
159 ctxt->xpathCtxt->contextSize = oldSize;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h551 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize,
561 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
/external/mesa3d/src/mesa/main/
H A Dimports.h549 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize,
559 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp531 void MemoryCache::update(Resource* resource, size_t oldSize, size_t newSize, bool wasAccessed) argument
539 if (oldSize)
540 removeFromLRUList(entry, lruListFor(entry->m_accessCount, oldSize));
546 ptrdiff_t delta = newSize - oldSize;
H A DMemoryCache.h193 void update(Resource*, size_t oldSize, size_t newSize, bool wasAccessed = false);
H A DResource.cpp591 size_t oldSize = size();
593 memoryCache()->update(this, oldSize, size());
601 size_t oldSize = size();
603 memoryCache()->update(this, oldSize, size());
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec_api.c246 const GLuint oldSize = exec->vtx.attrsz[attr]; local
262 if (unlikely(oldSize)) {
274 !oldSize && lastcount > 8 && exec->vtx.vertex_size) {
282 exec->vtx.vertex_size += newSize - oldSize;
288 if (unlikely(oldSize)) {
334 if (oldSize) {
336 COPY_CLEAN_4V_TYPE_AS_FLOAT(tmp, oldSize,
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_api.c246 const GLuint oldSize = exec->vtx.attrsz[attr]; local
262 if (unlikely(oldSize)) {
274 !oldSize && lastcount > 8 && exec->vtx.vertex_size) {
282 exec->vtx.vertex_size += newSize - oldSize;
288 if (unlikely(oldSize)) {
334 if (oldSize) {
336 COPY_CLEAN_4V_TYPE_AS_FLOAT(tmp, oldSize,
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe.js1741 "a.length += newSize - oldSize",
1742 "a.length -= oldSize - newSize",
1751 mutation, polymorphic, optimize, oldSize, newSize) {
1765 setLength(array(oldSize), newSize);
1766 setLength(array(oldSize), newSize);
1767 if (polymorphic) setLength(array(oldSize).map(isNaN), newSize);
1769 setLength(array(oldSize), newSize);
1772 var arr = array(oldSize);
1776 if (oldSize === newSize) {
1779 var count = oldSize > newSiz
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h333 const unsigned int oldSize = size * sizeof(Item); local
340 data = (Item *)REALLOC(data, oldSize, size * sizeof(Item));
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h333 const unsigned int oldSize = size * sizeof(Item); local
340 data = (Item *)REALLOC(data, oldSize, size * sizeof(Item));
/external/libcxxabi/src/Unwind/
H A DUnwindCursor.hpp116 size_t oldSize = (size_t)(_bufferEnd - _buffer); local
117 size_t newSize = oldSize * 4;
120 memcpy(newBuffer, _buffer, oldSize * sizeof(entry));
124 _bufferUsed = &newBuffer[oldSize];
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h641 size_t oldSize = result.size(); local
642 result.resize(oldSize + numberOfCharactersToCopy);
643 memmove(result.data() + numberOfCharactersToCopy, result.data(), oldSize * sizeof(UChar));
/external/jdiff/src/jdiff/
H A DAPIComparator.java376 int oldSize = oldClass.ctors_.size();
378 if (oldSize == 1 && oldSize == newSize) {

Completed in 4545 milliseconds

1234