Home
last modified time | relevance | path

Searched refs:growth (Results 1 – 25 of 125) sorted by relevance

12345

/external/angle/build/fuchsia/
Dbinary_size_differ_test.py83 growth = binary_size_differ.ComputePackageDiffs(before_file.name,
85 self.assertEqual(growth['status_code'], SUCCESS)
86 self.assertEqual(growth['compressed']['web_engine'], 0)
96 growth = binary_size_differ.ComputePackageDiffs(before_file.name,
98 self.assertEqual(growth['status_code'], SUCCESS)
99 self.assertEqual(growth['compressed']['web_engine'], 8 * 1024)
104 growth = binary_size_differ.ComputePackageDiffs(before_file.name,
106 self.assertEqual(growth['status_code'], FAILURE)
107 self.assertEqual(growth['compressed']['web_engine'], 16 * 1024 + 1)
108 self.assertIn('check failed', growth['summary'])
[all …]
Dbinary_size_differ.py41 growth = {'compressed': {}, 'uncompressed': {}}
45 growth['compressed'][package_name] = (after_sizes[package_name].compressed -
47 growth['uncompressed'][package_name] = (
51 if ((growth['compressed'][package_name] >= _FIRST_WARNING_DELTA_BYTES
52 and growth['uncompressed'][package_name] > 0)
54 or growth['compressed'][package_name] >= _ALWAYS_FAIL_DELTA_BYTES):
61 package_name, growth['compressed'][package_name],
62 growth['uncompressed'][package_name]))
73 growth['status_code'] = status_code
76 growth['summary'] = summary
[all …]
/external/cronet/build/fuchsia/
Dbinary_size_differ_test.py83 growth = binary_size_differ.ComputePackageDiffs(before_file.name,
85 self.assertEqual(growth['status_code'], SUCCESS)
86 self.assertEqual(growth['compressed']['web_engine'], 0)
96 growth = binary_size_differ.ComputePackageDiffs(before_file.name,
98 self.assertEqual(growth['status_code'], SUCCESS)
99 self.assertEqual(growth['compressed']['web_engine'], 8 * 1024)
104 growth = binary_size_differ.ComputePackageDiffs(before_file.name,
106 self.assertEqual(growth['status_code'], FAILURE)
107 self.assertEqual(growth['compressed']['web_engine'], 16 * 1024 + 1)
108 self.assertIn('check failed', growth['summary'])
[all …]
Dbinary_size_differ.py41 growth = {'compressed': {}, 'uncompressed': {}}
45 growth['compressed'][package_name] = (after_sizes[package_name].compressed -
47 growth['uncompressed'][package_name] = (
51 if ((growth['compressed'][package_name] >= _FIRST_WARNING_DELTA_BYTES
52 and growth['uncompressed'][package_name] > 0)
54 or growth['compressed'][package_name] >= _ALWAYS_FAIL_DELTA_BYTES):
61 package_name, growth['compressed'][package_name],
62 growth['uncompressed'][package_name]))
73 growth['status_code'] = status_code
76 growth['summary'] = summary
[all …]
/external/google-breakpad/src/client/
Dminidump_file_writer.cc290 size_t growth = aligned_size; in Allocate() local
294 if (growth < minimal_growth) in Allocate()
295 growth = minimal_growth; in Allocate()
297 size_t new_size = size_ + growth; in Allocate()
/external/skia/src/base/
DSkTDArray.cpp103 int growth = 4 + ((newCapacity + 4) >> 2); in reserve() local
106 if (kMaxCount - newCapacity > growth) { in reserve()
107 expandedReserve = newCapacity + growth; in reserve()
/external/deqp-deps/glslang/glslang/Include/
DInfoSink.h129 void checkMem(size_t growth) { if (sink.capacity() < sink.size() + growth + 2) in checkMem() argument
/external/angle/third_party/vulkan-deps/glslang/src/glslang/Include/
DInfoSink.h129 void checkMem(size_t growth) { if (sink.capacity() < sink.size() + growth + 2) in checkMem() argument
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/draft/
DGapString.java268 int growth = gapNeeded - gapLength; in shiftTo() local
269 if (growth > 0) { in shiftTo()
270 growToLength((buffer.length + growth) * GROWTH_FACTOR + GROWTH_INCREMENT); in shiftTo()
/external/cronet/buildtools/third_party/libc++abi/trunk/test/
Dtest_fallback_malloc.pass.cpp48 container alloc_series ( size_t sz, float growth ) { in alloc_series() argument
55 sz *= growth; in alloc_series()
/external/libcxxabi/test/
Dtest_fallback_malloc.pass.cpp30 container alloc_series ( size_t sz, float growth ) { in alloc_series() argument
36 sz *= growth; in alloc_series()
/external/libtextclassifier/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc75 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
76 SCOPED_TRACE(growth); in TEST()
77 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
79 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
80 if (growth != 0 && capacity > 1) { in TEST()
82 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
89 size_t growth = CapacityToGrowth(capacity); in TEST() local
90 EXPECT_THAT(growth, Lt(capacity)); in TEST()
91 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
92 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/openscreen/third_party/abseil/src/absl/container/internal/
Draw_hash_set_test.cc75 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
76 SCOPED_TRACE(growth); in TEST()
77 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
79 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
80 if (growth != 0 && capacity > 1) { in TEST()
82 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
89 size_t growth = CapacityToGrowth(capacity); in TEST() local
90 EXPECT_THAT(growth, Lt(capacity)); in TEST()
91 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
92 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc77 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
78 SCOPED_TRACE(growth); in TEST()
79 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
81 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
88 if (growth != 0 && capacity > 1) { in TEST()
90 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
97 size_t growth = CapacityToGrowth(capacity); in TEST() local
98 EXPECT_THAT(growth, Lt(capacity)); in TEST()
99 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
100 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/e2fsprogs/tests/r_ext4_big_expand/
Dscript1 test_description="very large fs growth using ext4"
/external/python/cpython3/Objects/
Dbytearrayobject.c450 Py_ssize_t growth = bytes_len - avail; in bytearray_setslice_linear() local
454 if (growth < 0) { in bytearray_setslice_linear()
460 self->ob_start -= growth; in bytearray_setslice_linear()
479 Py_SIZE(self) + growth) < 0) { in bytearray_setslice_linear()
490 self->ob_start += growth; in bytearray_setslice_linear()
495 Py_SET_SIZE(self, Py_SIZE(self) + growth); in bytearray_setslice_linear()
500 else if (growth > 0) { in bytearray_setslice_linear()
501 if (Py_SIZE(self) > (Py_ssize_t)PY_SSIZE_T_MAX - growth) { in bytearray_setslice_linear()
507 Py_SIZE(self) + growth) < 0) { in bytearray_setslice_linear()
/external/e2fsprogs/tests/r_64bit_big_expand/
Dscript1 test_description="very large fs growth using ext4 w/64bit"
/external/cronet/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc93 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
94 SCOPED_TRACE(growth); in TEST()
95 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
97 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
104 if (growth != 0 && capacity > 1) { in TEST()
106 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
113 size_t growth = CapacityToGrowth(capacity); in TEST() local
114 EXPECT_THAT(growth, Lt(capacity)); in TEST()
115 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
116 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc81 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
82 SCOPED_TRACE(growth); in TEST()
83 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
85 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
92 if (growth != 0 && capacity > 1) { in TEST()
94 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
101 size_t growth = CapacityToGrowth(capacity); in TEST() local
102 EXPECT_THAT(growth, Lt(capacity)); in TEST()
103 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
104 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/tensorflow/third_party/absl/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc81 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
82 SCOPED_TRACE(growth); in TEST()
83 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
85 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
92 if (growth != 0 && capacity > 1) { in TEST()
94 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
101 size_t growth = CapacityToGrowth(capacity); in TEST() local
102 EXPECT_THAT(growth, Lt(capacity)); in TEST()
103 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
104 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/webrtc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc92 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
93 SCOPED_TRACE(growth); in TEST()
94 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
96 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
103 if (growth != 0 && capacity > 1) { in TEST()
105 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
112 size_t growth = CapacityToGrowth(capacity); in TEST() local
113 EXPECT_THAT(growth, Lt(capacity)); in TEST()
114 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
115 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/perfetto/protos/perfetto/metrics/android/
Dmem_metric.proto49 // Memory growth observed in the counter sequence. In case of multiple
/external/angle/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc97 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
98 SCOPED_TRACE(growth); in TEST()
99 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
101 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
108 if (growth != 0 && capacity > 1) { in TEST()
110 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
117 size_t growth = CapacityToGrowth(capacity); in TEST() local
118 EXPECT_THAT(growth, Lt(capacity)); in TEST()
119 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
120 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/external/python/cpython2/Modules/_ctypes/libffi/
Dfficonfig.h.in161 direction of stack growth for your system; otherwise it will be
165 STACK_DIRECTION = 0 => direction of growth unknown */
/external/arm-trusted-firmware/docs/plat/
Dimx8m.rst6 reliability and embedded security needed to drive the growth of fast-growing

12345