Searched refs:initialSize (Results 1 – 8 of 8) sorted by relevance
/external/icu4c/i18n/ |
D | uspoof_impl.cpp | 527 uint32_t initialSize = (sizeof(SpoofDataHeader) + 15) & ~15; in SpoofData() local 528 U_ASSERT(initialSize == sizeof(SpoofDataHeader)); in SpoofData() 530 fRawData = static_cast<SpoofDataHeader *>(uprv_malloc(initialSize)); in SpoofData() 531 fMemLimit = initialSize; in SpoofData() 536 uprv_memset(fRawData, 0, initialSize); in SpoofData()
|
/external/chromium/third_party/icu/source/i18n/ |
D | uspoof_impl.cpp | 527 uint32_t initialSize = (sizeof(SpoofDataHeader) + 15) & ~15; in SpoofData() local 528 U_ASSERT(initialSize == sizeof(SpoofDataHeader)); in SpoofData() 530 fRawData = static_cast<SpoofDataHeader *>(uprv_malloc(initialSize)); in SpoofData() 531 fMemLimit = initialSize; in SpoofData() 536 uprv_memset(fRawData, 0, initialSize); in SpoofData()
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | MediaPlayerPrivateQTKit.mm | 857 NSSize initialSize = NSZeroSize; 865 initialSize = [displayTransform transformSize:naturalSize]; 867 initialSize.width = naturalSize.width; 868 initialSize.height = naturalSize.height; 871 initialSize = [[m_qtMovie.get() attributeForKey:QTMovieCurrentSizeAttribute] sizeValue]; 875 m_scaleFactor.setWidth(initialSize.width / naturalSize.width); 877 m_scaleFactor.setHeight(initialSize.height / naturalSize.height);
|
/external/webkit/WebCore/page/ |
D | FrameView.h | 59 static PassRefPtr<FrameView> create(Frame*, const IntSize& initialSize);
|
D | FrameView.cpp | 147 PassRefPtr<FrameView> FrameView::create(Frame* frame, const IntSize& initialSize) in create() argument 150 view->Widget::setFrameRect(IntRect(view->pos(), initialSize)); in create()
|
/external/libxml2/ |
D | xpath.c | 417 int initialSize) in xmlPointerListAddSize() argument 420 if (initialSize <= 0) in xmlPointerListAddSize() 421 initialSize = 1; in xmlPointerListAddSize() 423 initialSize * sizeof(void *)); in xmlPointerListAddSize() 430 list->size = initialSize; in xmlPointerListAddSize() 454 xmlPointerListCreate(int initialSize) in xmlPointerListCreate() argument 465 if (initialSize > 0) { in xmlPointerListCreate() 466 xmlPointerListAddSize(ret, NULL, initialSize); in xmlPointerListCreate()
|
D | xmlschemas.c | 3346 int initialSize, in xmlSchemaItemListAddSize() argument 3350 if (initialSize <= 0) in xmlSchemaItemListAddSize() 3351 initialSize = 1; in xmlSchemaItemListAddSize() 3353 initialSize * sizeof(void *)); in xmlSchemaItemListAddSize() 3358 list->sizeItems = initialSize; in xmlSchemaItemListAddSize() 3412 int initialSize, 3417 if (initialSize <= 0) 3418 initialSize = 1; 3420 initialSize * sizeof(void *)); 3425 list->sizeItems = initialSize; [all …]
|
/external/webkit/WebCore/rendering/style/ |
D | RenderStyle.h | 1141 static Length initialSize() { return Length(); } in initialSize() function
|