HomeSort by relevance Sort by last modified time
    Searched refs:growth (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/webkit/browser/fileapi/quota/
open_file_handle.cc 19 int64 growth = context_->UpdateMaxWrittenOffset(offset); local
20 if (growth > 0)
21 reservation_->ConsumeReservation(growth);
open_file_handle_context.cc 31 int64 growth = offset - maximum_written_offset_;
33 return growth;
60 // |reserved_quota_consumption| may be greater than the recorded file 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));
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))
549 int64 growth = 0; local
672 int64 growth = src_platform_file_info.size; local
1363 int64 growth = UsageForPath(file_info.name.size()); local
    [all...]
  /external/libcxxabi/test/
test_fallback_malloc.cpp 30 container alloc_series ( size_t sz, float growth ) {
36 sz *= growth;
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_fallback_malloc.cpp 30 container alloc_series ( size_t sz, float growth ) {
36 sz *= growth;
  /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/third_party/WebKit/Source/core/rendering/
RenderGrid.cpp 48 void growUsedBreadth(LayoutUnit growth)
50 ASSERT(growth >= 0);
51 m_usedBreadth += growth;
55 void growMaxBreadth(LayoutUnit growth)
58 m_maxBreadth = m_usedBreadth + growth;
60 m_maxBreadth += growth;
736 LayoutUnit growth = sizingData.distributeTrackVector[i] - (tracks[i]->*trackGetter)(); local
737 if (growth >= 0)
738 (tracks[i]->*trackGrowthFunction)(growth);
    [all...]
  /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/v8/src/
utils.h 643 int growth = current_length * (growth_factor - 1); local
644 if (growth > max_growth) {
645 growth = max_growth;
647 new_capacity = current_length + growth;
649 new_capacity = min_capacity + growth;
    [all...]
  /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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/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/jsoncpp/chromium-overrides/include/json/
value.h 706 bool reserveDelta( BucketIndex growth );
    [all...]
  /external/jsoncpp/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...]

Completed in 3376 milliseconds