Searched refs:growth (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/storage/browser/fileapi/quota/
H A Dopen_file_handle.cc19 int64 growth = context_->UpdateMaxWrittenOffset(offset); local
20 if (growth > 0)
21 reservation_->ConsumeReservation(growth);
H A Dopen_file_handle_context.cc31 int64 growth = offset - maximum_written_offset_;
33 return growth;
60 // |reserved_quota_consumption| may be greater than the recorded file growth
/external/chromium_org/storage/browser/fileapi/
H A Dobfuscated_file_util.cc75 bool AllocateQuota(FileSystemOperationContext* context, int64 growth) { argument
79 int64 new_quota = context->allowed_bytes_growth() - growth;
80 if (growth > 0 && new_quota < 0)
89 int64 growth) {
91 &FileUpdateObserver::OnUpdate, MakeTuple(url, growth));
315 int64 growth = UsageForPath(file_info.name.size()); local
316 if (!AllocateQuota(context, growth))
322 UpdateUsage(context, url, growth);
375 int64 growth = UsageForPath(file_info.name.size()); local
376 if (!AllocateQuota(context, growth))
86 UpdateUsage( FileSystemOperationContext* context, const FileSystemURL& url, int64 growth) argument
549 int64 growth = 0; local
672 int64 growth = src_platform_file_info.size; local
1357 int64 growth = UsageForPath(file_info.name.size()); local
[all...]
/external/libcxxabi/test/
H A Dtest_fallback_malloc.cpp30 container alloc_series ( size_t sz, float growth ) {
36 sz *= growth;
/external/chromium_org/third_party/codesighs/
H A Dmsdump2symdb.c377 void* growth = NULL; local
383 growth = realloc(inContainer->mObjects, (inContainer->mObjectCount + 1) * sizeof(MSDump_Object));
384 if(NULL != growth)
389 inContainer->mObjects = growth;
/external/chromium_org/tools/binary_size/
H A Dexplain_binary_size_delta.py273 growth = size_data['plus'] - size_data['minus']
274 return growth
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderGrid.cpp48 void growUsedBreadth(LayoutUnit growth) argument
50 ASSERT(growth >= 0);
51 m_usedBreadth += growth;
55 void growMaxBreadth(LayoutUnit growth) argument
58 m_maxBreadth = m_usedBreadth + growth;
60 m_maxBreadth += growth;
794 LayoutUnit growth = sizingData.distributeTrackVector[i] - (tracks[i]->*trackGetter)(); local
795 if (growth >= 0)
796 (tracks[i]->*trackGrowthFunction)(growth);
/external/chromium_org/v8/src/
H A Dutils.h580 int growth = current_length * (growth_factor - 1); local
581 if (growth > max_growth) {
582 growth = max_growth;
584 new_capacity = current_length + growth;
586 new_capacity = min_capacity + growth;
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1602 float growth; local
1606 growth = cellGrowth(pRtree, &cell, pCell);
1615 || (overlap==fMinOverlap && growth<fMinGrowth)
1616 || (overlap==fMinOverlap && growth==fMinGrowth && area<fMinArea)
1621 if( iCell==0||growth<fMinGrowth||(growth==fMinGrowth && area<fMinArea) ){
1627 fMinGrowth = growth;
1830 float growth = cellGrowth(pRtree, &aCell[ii], &aCell[jj]); local
1831 float waste = growth - right;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.cc458 static void RecordGrowth(size_t growth) { argument
461 t->size = growth;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.cc397 static void RecordGrowth(size_t growth) { argument
400 t->size = growth;
/external/pcre/dist/
H A Dpcrecpp_unittest.cc120 const double growth = double(final_size - initial_size) / final_size;
121 printf("Growth: %0.2f%%", growth * 100);
122 CHECK(growth < 0.02); // Allow < 2% growth
/external/chromium_org/third_party/jsoncpp/overrides/include/json/
H A Dvalue.h706 bool reserveDelta( BucketIndex growth );
/external/jsoncpp/chromium-overrides/include/json/
H A Dvalue.h706 bool reserveDelta( BucketIndex growth );
/external/jsoncpp/include/json/
H A Dvalue.h706 bool reserveDelta( BucketIndex growth );
/external/flac/libFLAC/
H A Dmetadata_iterators.c1102 const unsigned growth = FLAC__STREAM_METADATA_HEADER_LENGTH + node->next->data->length; local
1103 node->data->length += growth;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c19911 /* When converting from UTF-16, the maximum growth results from
19919 /* When converting from UTF-8 to UTF-16 the maximum growth is caused
125870 float growth; local
126098 float growth = cellGrowth(pRtree, &aCell[ii], &aCell[jj]); local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c21956 /* When converting from UTF-16, the maximum growth results from
21964 /* When converting from UTF-8 to UTF-16 the maximum growth is caused
146520 RtreeDValue growth; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c21956 /* When converting from UTF-16, the maximum growth results from
21964 /* When converting from UTF-8 to UTF-16 the maximum growth is caused
146552 RtreeDValue growth; local
[all...]

Completed in 1215 milliseconds