HomeSort by relevance Sort by last modified time
    Searched refs:oldSize (Results 26 - 50 of 131) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
FormData.cpp 132 size_t oldSize = e.m_data.size();
133 e.m_data.grow(oldSize + size);
134 memcpy(e.m_data.data() + oldSize, data, size);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.cpp 261 IntSize oldSize = size();
267 if (m_hasCreatedImageBuffer && oldSize == newSize && m_deviceScaleFactor == newDeviceScaleFactor && m_context && m_context->is2d()) {
277 if (m_context && m_context->is3d() && oldSize != size())
282 if (oldSize != size()) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
ImageFrameGenerator.cpp 235 const size_t oldSize = m_hasAlpha.size();
237 for (size_t i = oldSize; i < m_hasAlpha.size(); ++i)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderEmbeddedObject.cpp 213 LayoutSize oldSize = contentBoxRect().size();
245 if (newSize == oldSize && !childBox->needsLayout())
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 231 unsigned oldSize = visited.size();
233 if (visited.size() != oldSize) {
  /external/skia/gm/
rrect.cpp 75 static SkScalar prop(SkScalar radius, SkScalar newSize, SkScalar oldSize) {
76 return newSize * radius / oldSize;
  /frameworks/av/libvideoeditor/vss/3gpwriter/src/
M4MP4W_Utils.c 118 void* M4MP4W_realloc(M4OSA_MemAddr32 ptr, M4OSA_UInt32 oldSize, M4OSA_UInt32 newSize)
125 memcpy((void *)ptr2, (void *)ptr, oldSize);
  /frameworks/base/services/java/com/android/server/accessibility/
ScreenMagnifier.java 437 final int oldSize = (mTempPointerCoords != null) ? mTempPointerCoords.length : 0;
438 if (oldSize < size) {
442 System.arraycopy(oldTempPointerCoords, 0, mTempPointerCoords, 0, oldSize);
445 for (int i = oldSize; i < size; i++) {
452 final int oldSize = (mTempPointerProperties != null) ? mTempPointerProperties.length : 0;
453 if (oldSize < size) {
457 System.arraycopy(oldTempPointerProperties, 0, mTempPointerProperties, 0, oldSize);
460 for (int i = oldSize; i < size; i++) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextResourceDecoder.cpp 467 size_t oldSize = m_buffer.size();
468 m_buffer.grow(oldSize + len);
469 memcpy(m_buffer.data() + oldSize, data, len);
510 size_t oldSize = m_buffer.size();
511 m_buffer.grow(oldSize + len);
512 memcpy(m_buffer.data() + oldSize, data, len);
640 size_t oldSize = m_buffer.size();
641 m_buffer.grow(oldSize + len);
642 memcpy(m_buffer.data() + oldSize, data, len);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
WidthIterator.cpp 338 int oldSize = glyphBuffer.size();
341 for (int i = oldSize; i < glyphBuffer.size(); ++i)
344 return glyphBuffer.size() > oldSize;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
OpenTypeUtilities.cpp 175 size_t oldSize = m_buffer.size();
176 m_buffer.resize(oldSize + length + 2 * sizeof(unsigned short));
177 UChar* dst = reinterpret_cast<UChar*>(m_buffer.data() + oldSize);
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageDecoder.cpp 293 const size_t oldSize = m_frameBufferCache.size();
296 for (size_t i = oldSize; i < m_reader->imagesCount(); ++i) {
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDocument.cpp 238 int oldSize = fPages.count();
240 for (int i = oldSize; i <= pageNumber; i++) {
  /external/skia/src/pdf/
SkPDFDocument.cpp 238 int oldSize = fPages.count();
240 for (int i = oldSize; i <= pageNumber; i++) {
  /external/opencv/cv/src/
cvsurf.cpp 82 icvResizeHaarPattern( const int src[][5], CvSurfHF* dst, int n, int oldSize, int newSize, int widthStep )
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/
templates.c 123 int oldPos, oldSize;
130 oldSize = ctxt->xpathCtxt->contextSize;
159 ctxt->xpathCtxt->contextSize = oldSize;
  /external/libxslt/libxslt/
templates.c 122 int oldPos, oldSize;
129 oldSize = ctxt->xpathCtxt->contextSize;
158 ctxt->xpathCtxt->contextSize = oldSize;
  /frameworks/av/media/libstagefright/id3/
ID3.cpp 327 size_t oldSize = mSize;
375 memmove(&mData[writeOffset], &mData[readOffset], oldSize - readOffset);
389 memset(&mData[mSize], 0, oldSize - mSize);
  /external/chromium_org/v8/test/mjsunit/harmony/
object-observe.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 223 LayoutSize oldSize = size();
230 m_isLayoutSizeChanged = needsLayout || (svg->hasRelativeLengths() && oldSize != size());
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 549 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize,
559 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
  /external/mesa3d/src/mesa/main/
imports.h 549 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize,
559 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
VectorTest.java     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec_api.c 246 const GLuint oldSize = exec->vtx.attrsz[attr];
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,
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_api.c 246 const GLuint oldSize = exec->vtx.attrsz[attr];
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,
    [all...]

Completed in 1794 milliseconds

12 3 4 5 6