HomeSort by relevance Sort by last modified time
    Searched full:newsize (Results 101 - 125 of 282) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit/mac/Misc/
WebNSViewExtras.m 175 NSSize newSize = [dragImage size];
180 origin.x = mouseDownPoint.x - (((mouseDownPoint.x - origin.x) / originalSize.width) * newSize.width);
182 origin.y = mouseDownPoint.y - (((mouseDownPoint.y - origin.y) / originalSize.height) * newSize.height);
  /external/dropbear/
buffer.h 43 void buf_resize(buffer *buf, unsigned int newsize);
  /external/icu4c/common/
uvectr32.h 135 * Change the size of this vector as follows: If newSize is
137 * elements for i >= newSize. If newSize is larger, grow the
140 void setSize(int32_t newSize);
  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.h 45 static bool resizeMemory(void* p, size_t newSize);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
memory.h 53 extern void *mem_Realloc(MemoryPool *p, void *old, size_t oldsize, size_t newsize);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
LayerTreeHost.h 60 virtual void sizeDidChange(const WebCore::IntSize& newSize) = 0;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
LayerTreeHostCAWin.h 58 virtual void sizeDidChange(const WebCore::IntSize& newSize);
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.h 54 bool Resize(int newSize);
  /external/llvm/include/llvm/ADT/
IntervalMap.h 328 /// @param NewSize Array of desired node sizes.
331 unsigned CurSize[], const unsigned NewSize[]) {
334 if (CurSize[n] == NewSize[n])
338 NewSize[n] - CurSize[n]);
342 if (CurSize[n] >= NewSize[n])
352 if (CurSize[n] == NewSize[n])
356 CurSize[n] - NewSize[n]);
360 if (CurSize[n] >= NewSize[n])
367 assert(CurSize[n] == NewSize[n] && "Insufficient element shuffle");
381 /// NewSize[] will be filled in such that
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macevents.c 297 int newSize;
305 newSize = GrowWindow(win, event.where, NULL);
307 newSize = GrowWindow(win, event.where, &theQD->screenBits.bounds);
309 if ( newSize ) {
313 SizeWindow ( win, LoWord (newSize), HiWord (newSize), 1 );
314 SDL_PrivateResize ( LoWord (newSize), HiWord (newSize) );
  /external/skia/gm/
rrect.cpp 75 static SkScalar prop(SkScalar radius, SkScalar delta, SkScalar newSize, SkScalar oldSize) {
76 return newSize * radius / oldSize;
  /external/valgrind/main/callgrind/
fn.c 662 Int i, newsize; local
664 newsize = current_fn_active.size;
665 while (newsize <= CLG_(stat).distinct_fns) newsize *=2;
668 current_fn_active.size, newsize);
670 new_array = (UInt*) CLG_MALLOC("cl.fn.rfa.1", newsize * sizeof(UInt));
673 while(i<newsize)
677 current_fn_active.size = newsize;
  /external/webkit/Source/WebCore/platform/text/cf/
StringImplCF.cpp 71 static void* reallocate(void* pointer, CFIndex newSize, CFOptionFlags, void*)
73 size_t newAllocationSize = sizeof(StringImpl*) + newSize;
  /external/webkit/Source/WebKit2/UIProcess/qt/
TiledDrawingAreaTileQt.cpp 89 void TiledDrawingAreaTile::resize(const IntSize& newSize)
92 m_rect = IntRect(m_rect.location(), newSize);
  /frameworks/av/libvideoeditor/vss/3gpwriter/src/
M4MP4W_Utils.c 118 void* M4MP4W_realloc(M4OSA_MemAddr32 ptr, M4OSA_UInt32 oldSize, M4OSA_UInt32 newSize)
121 M4OSA_MemAddr32 ptr2 = (M4OSA_MemAddr32)M4OSA_32bitAlignedMalloc(newSize, M4MP4_WRITER,
  /libcore/luni/src/main/java/java/util/
ArrayList.java 195 int newSize = s + newPartSize; // If add overflows, arraycopy will fail
196 if (newSize > a.length) {
197 int newCapacity = newCapacity(newSize - 1); // ~33% growth room
203 size = newSize;
234 int newSize = s + newPartSize; // If add overflows, arraycopy will fail
235 if (newSize <= a.length) {
238 int newCapacity = newCapacity(newSize - 1); // ~33% growth room
245 size = newSize;
  /external/skia/src/core/
SkPathRef.h 423 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
425 size_t minSize = newSize + newReserve;
439 fFreeSpace -= newSize;
517 size_t newSize = oldSize + growSize;
520 fPoints = reinterpret_cast<SkPoint*>(sk_realloc_throw(fPoints, newSize));
523 reinterpret_cast<intptr_t>(fPoints) + newSize - oldVerbSize);
527 fVerbs = reinterpret_cast<uint8_t*>(reinterpret_cast<intptr_t>(fPoints) + newSize);
  /external/webkit/Source/WebKit/chromium/src/
WebPopupMenuImpl.cpp 137 void WebPopupMenuImpl::resize(const WebSize& newSize)
139 if (m_size == newSize)
141 m_size = newSize;
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 118 int newsize = ArrayUtils.idealIntArraySize(mSpanCount + 1); local
119 Object[] newtags = new Object[newsize];
120 int[] newdata = new int[newsize * 3];
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimationDrawable.java 348 public void growArray(int oldSize, int newSize) {
349 super.growArray(oldSize, newSize);
350 int[] newDurations = new int[newSize];
MipmapDrawable.java 298 public void growArray(int oldSize, int newSize) {
299 super.growArray(oldSize, newSize);
300 int[] newInts = new int[newSize];
StateListDrawable.java 315 public void growArray(int oldSize, int newSize) {
316 super.growArray(oldSize, newSize);
317 final int[][] newStateSets = new int[newSize][];
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
VideoUtils.java 162 int newSize = format.getInteger(MediaFormat.KEY_MAX_INPUT_SIZE);
163 bufferSize = newSize > bufferSize ? newSize : bufferSize;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
AbstractDirectory.java 127 * @param newSize the new storage space for the directory in bytes
130 protected final void sizeChanged(long newSize) throws IOException {
131 final long newCount = newSize / FatDirectoryEntry.SIZE;
  /dalvik/vm/
LinearAlloc.h 69 void* dvmLinearRealloc(Object* classLoader, void* mem, size_t newSize);

Completed in 727 milliseconds

1 2 3 45 6 7 8 91011>>