/external/opencore/nodes/pvprotocolenginenode/download_protocols/progressive_download/src/ |
D | pvmf_protocol_engine_progressive_download.cpp | 265 uint32 totalSize = 0, prevTotalSize = 0; in getStartFragmentInNewDownloadData() local 268 prevTotalSize = totalSize; in getStartFragmentInNewDownloadData() 269 totalSize += aOutputQueue[i].getMemFragSize(); in getStartFragmentInNewDownloadData() 270 if (prevTotalSize <= validSize && validSize < totalSize) in getStartFragmentInNewDownloadData() 272 if (validSize < totalSize && i < aOutputQueue.size() - 1) in getStartFragmentInNewDownloadData() 281 aUseAllNewDownloadData = (validSize == totalSize) & in getStartFragmentInNewDownloadData()
|
/external/opencore/protocols/http_parcom/src/ |
D | oscl_variablesize_mem_pool.h | 199 uint32 totalSize = 0; in getTotalAvailableSize() local 202 totalSize += iFreeMemChunkList[i].len; in getTotalAvailableSize() 204 return totalSize; in getTotalAvailableSize() 211 uint32 totalSize = 0; in getCurrMemoryUsage() local 214 totalSize += iUsedMemChunkList[i].len; in getCurrMemoryUsage() 216 return totalSize; in getCurrMemoryUsage()
|
/external/webkit/WebCore/platform/network/curl/ |
D | ResourceHandleManager.cpp | 104 size_t totalSize = size * nmemb; in writeCallback() local 113 return totalSize; in writeCallback() 130 d->client()->didReceiveData(job, static_cast<char*>(ptr), totalSize, 0); in writeCallback() 131 return totalSize; in writeCallback() 155 size_t totalSize = size * nmemb; in headerCallback() local 158 String header(static_cast<const char*>(ptr), totalSize); in headerCallback() 200 return totalSize; in headerCallback() 214 return totalSize; in headerCallback()
|
/external/icu4c/common/ |
D | rbbirb.cpp | 162 int32_t totalSize = headerSize + forwardTableSize + reverseTableSize in flattenData() local 166 RBBIDataHeader *data = (RBBIDataHeader *)uprv_malloc(totalSize); in flattenData() 171 uprv_memset(data, 0, totalSize); in flattenData() 179 data->fLength = totalSize; in flattenData()
|
D | rbbidata.cpp | 331 int32_t totalSize = headerSize + breakDataLength; in ubrk_swap() local 333 return totalSize; in ubrk_swap() 339 if (length < totalSize) { in ubrk_swap() 440 return totalSize; in ubrk_swap()
|
D | triedict.cpp | 1067 uint32_t totalSize = offsetof(CompactTrieHeader,offsets); in compactMutableTrieDictionary() local 1088 totalSize += node->size(); in compactMutableTrieDictionary() 1099 totalSize += nodeCount*sizeof(uint32_t); in compactMutableTrieDictionary() 1106 fprintf(stderr, "%d nodes, %d unique, %d bytes\n", nodes.size(), nodeCount, totalSize); in compactMutableTrieDictionary() 1108 uint8_t *bytes = (uint8_t *)uprv_malloc(totalSize); in compactMutableTrieDictionary() 1115 header->size = totalSize; in compactMutableTrieDictionary() 1324 uint32_t totalSize = ds->readUInt32(header->size); in triedict_swap() local 1325 int32_t sizeWithUData = (int32_t)totalSize + headerSize; in triedict_swap() 1335 totalSize); in triedict_swap() 1353 uprv_memset(outBytes, 0, totalSize); in triedict_swap() [all …]
|
/external/webkit/WebCore/platform/ |
D | Scrollbar.h | 67 int totalSize() const { return m_totalSize; } in totalSize() function 82 void setProportion(int visibleSize, int totalSize);
|
D | Scrollbar.cpp | 100 void Scrollbar::setProportion(int visibleSize, int totalSize) in setProportion() argument 102 if (visibleSize == m_visibleSize && totalSize == m_totalSize) in setProportion() 106 m_totalSize = totalSize; in setProportion()
|
D | ScrollbarThemeComposite.cpp | 103 … float proportion = static_cast<float>(scrollbar->visibleSize()) / scrollbar->totalSize(); in paint() 268 float proportion = (float)scrollbar->visibleSize() / scrollbar->totalSize(); in thumbLength()
|
/external/webkit/WebCore/platform/graphics/skia/ |
D | SkiaFontWin.cpp | 149 DWORD totalSize = GetGlyphOutlineW(dc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE, in getPathForGlyph() local 151 if (totalSize == GDI_ERROR) in getPathForGlyph() 155 const char* endGlyph = &buffer[totalSize]; in getPathForGlyph()
|
/external/webkit/WebKit/win/ |
D | WebScrollBar.cpp | 129 /* [in] */ int totalSize) in setProportion() argument 131 m_scrollBar->setProportion(visibleSize, totalSize); in setProportion()
|
D | WebScrollBar.h | 76 /* [in] */ int totalSize);
|
D | WebView.cpp | 5023 unsigned totalSize = sizeof(RECONVERTSTRING) + text.length() * sizeof(UChar); in onIMERequestReconvertString() local 5024 *result = totalSize; in onIMERequestReconvertString() 5025 if (totalSize > reconvertString->dwSize) { in onIMERequestReconvertString()
|
/external/webkit/WebCore/xml/ |
D | XMLHttpRequestProgressEvent.h | 49 unsigned totalSize() const { return total(); } in totalSize() function
|
D | XMLHttpRequestProgressEvent.idl | 34 readonly attribute unsigned long totalSize;
|
/external/webkit/WebCore/platform/chromium/ |
D | ScrollbarThemeChromium.cpp | 110 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize(); in paintTickmarks()
|
/external/webkit/WebKit/win/Interfaces/ |
D | IWebScrollBarPrivate.idl | 49 HRESULT setProportion([in] int visibleSize, [in] int totalSize);
|
/external/opencore/pvmi/recognizer/src/ |
D | pvmf_recognizer_registry_impl.cpp | 463 uint32 totalSize = iDataStream->GetContentLength(); in CheckForDataAvailability() local 464 if ((status == PVDS_END_OF_STREAM) || (capacity == totalSize)) in CheckForDataAvailability()
|
/external/webkit/JavaScriptCore/bytecode/ |
D | CodeBlock.cpp | 1210 size_t totalSize = 0; in dumpStatistics() local 1212 #define GET_TOTAL_SIZE(name) totalSize += name##TotalSize; in dumpStatistics() 1218 totalSize += symbolTableTotalSize; in dumpStatistics() 1219 totalSize += (liveCodeBlockSet.size() * sizeof(CodeBlock)); in dumpStatistics() 1223 printf("Size of all CodeBlocks: %zu\n", totalSize); in dumpStatistics() 1224 printf("Average size of a CodeBlock: %zu\n", totalSize / liveCodeBlockSet.size()); in dumpStatistics()
|
/external/sqlite/dist/ |
D | sqlite3.c | 11450 int totalSize; in sqlite3_malloc() local 11465 totalSize = nReserve + sizeof(*pHdr) + sizeof(int) + in sqlite3_malloc() 11470 p = malloc(totalSize); in sqlite3_malloc() 11473 p = malloc(totalSize); in sqlite3_malloc() 34687 int totalSize; /* Total size of all cells */ in assemblePage() local 34695 totalSize = 0; in assemblePage() 34697 totalSize += aSize[i]; in assemblePage() 34699 assert( totalSize+2*nCell<=pPage->nFree ); in assemblePage() 34706 cellbody = allocateSpace(pPage, totalSize); in assemblePage() 81839 int totalSize = 0; in tokenizeString() local [all …]
|
/external/webkit/WebCore/ |
D | ChangeLog-2008-08-10 | 13501 (WebCore::XMLHttpRequestProgressEvent::totalSize): 28514 (WebCore::XMLHttpRequestProgressEvent::totalSize): 28567 (WebCore::XMLHttpRequestProgressEvent::totalSize):
|
D | ChangeLog-2009-06-16 | 90494 (WebCore::Scrollbar::totalSize):
|