/external/chromium_org/webkit/browser/fileapi/quota/ |
open_file_handle.cc | 20 int64 growth = 0; local 21 context_->UpdateMaxWrittenOffset(offset, &new_file_size, &growth); 23 if (growth > 0) 24 reservation_->ConsumeReservation(growth);
|
open_file_handle_context.cc | 28 int64* growth) { 31 *growth = offset - maximum_written_offset_; 34 *growth = 0; 49 // |quota_consumption| may be greater than the recorded file growth when a
|
open_file_handle_context.h | 34 int64* growth);
|
/external/chromium_org/webkit/browser/fileapi/ |
obfuscated_file_util.cc | 75 bool AllocateQuota(FileSystemOperationContext* context, int64 growth) { 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)); 326 int64 growth = UsageForPath(file_info.name.size()); local 327 if (!AllocateQuota(context, growth)) 333 UpdateUsage(context, url, growth); 386 int64 growth = UsageForPath(file_info.name.size()); local 387 if (!AllocateQuota(context, growth)) 560 int64 growth = 0; local 684 int64 growth = src_platform_file_info.size; local 1358 int64 growth = UsageForPath(file_info.name.size()); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderGrid.cpp | 46 void growUsedBreadth(LayoutUnit growth) 48 ASSERT(growth >= 0); 49 m_usedBreadth += growth; 53 void growMaxBreadth(LayoutUnit growth) 56 m_maxBreadth = m_usedBreadth + growth; 58 m_maxBreadth += growth; 639 LayoutUnit growth = sizingData.distributeTrackVector[i] - (tracks[i]->*trackGetter)(); local 640 if (growth >= 0) 641 (tracks[i]->*trackGrowthFunction)(growth); [all...] |
/external/chromium_org/third_party/codesighs/ |
msdump2symdb.c | 377 void* growth = NULL; local 383 growth = realloc(inContainer->mObjects, (inContainer->mObjectCount + 1) * sizeof(MSDump_Object)); 384 if(NULL != growth) 389 inContainer->mObjects = growth; [all...] |
/external/chromium_org/v8/src/ |
utils.h | 727 int growth = current_length * (growth_factor - 1); 728 if (growth > max_growth) { 729 growth = max_growth; 731 new_capacity = current_length + growth; 733 new_capacity = min_capacity + growth; [all...] |
/external/v8/src/ |
utils.h | 635 int growth = current_length * (growth_factor - 1); 636 if (growth > max_growth) { 637 growth = max_growth; 639 new_capacity = current_length + growth; 641 new_capacity = min_capacity + growth;
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2073.js | 28 // Running this test with --trace_gc will show heap size growth due to
|
regress-231.js | 29 // A stack growth during a look-ahead could restore a pointer to the old stack.
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree.c | 1602 float growth; local 1830 float growth = cellGrowth(pRtree, &aCell[ii], &aCell[jj]); local [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
page_heap.cc | 458 static void RecordGrowth(size_t growth) { 461 t->size = growth;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
page_heap.cc | 397 static void RecordGrowth(size_t growth) { 400 t->size = growth;
|
/external/v8/test/mjsunit/regress/ |
regress-231.js | 29 // A stack growth during a look-ahead could restore a pointer to the old stack.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesf.h | 206 // For a dynamic field you may set the maximum growth limit. 207 // A zero means unlimited growth. 208 inline void set_maximum_growth(int growth = 0) { 209 OnError(::set_max_field(field,growth));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesf.h | 206 // For a dynamic field you may set the maximum growth limit. 207 // A zero means unlimited growth. 208 inline void set_maximum_growth(int growth = 0) { 209 OnError(::set_max_field(field,growth));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesf.h | 206 // For a dynamic field you may set the maximum growth limit. 207 // A zero means unlimited growth. 208 inline void set_maximum_growth(int growth = 0) { 209 OnError(::set_max_field(field,growth));
|
/external/chromium_org/third_party/jsoncpp/overrides/include/json/ |
value.h | 706 bool reserveDelta( BucketIndex growth ); [all...] |
/external/flac/libFLAC/ |
metadata_iterators.c | 1102 const unsigned growth = FLAC__STREAM_METADATA_HEADER_LENGTH + node->next->data->length; local [all...] |