Home
last modified time | relevance | path

Searched full:increase (Results 1 – 25 of 9413) sorted by relevance

12345678910>>...377

/aosp_15_r20/external/rust/android-crates-io/crates/zerocopy/
D.cargo-checksum.json1increase.rs":"ba83c9cf01acf11352f7ee5b54cd73a451394fd78b8ddeb0637931c87adfd6ae","tests/ui-msrv/tra…
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/zerocopy/
D.cargo-checksum.json1increase.rs":"ba83c9cf01acf11352f7ee5b54cd73a451394fd78b8ddeb0637931c87adfd6ae","tests/ui-msrv/tra…
/aosp_15_r20/external/pigweed/pw_allocator/public/pw_allocator/
H A Dmetrics.h139 /// @param increase How much memory was requested to be allocated.
141 void ModifyRequested(size_t increase, size_t decrease);
151 /// ModifyAllocated(increase, 0);
155 /// @param increase How much memory was allocated.
157 void ModifyAllocated(size_t increase, size_t decrease);
234 void Metrics<MetricsType>::ModifyRequested(size_t increase, size_t decrease) { in ModifyRequested() argument
236 metrics_.requested_bytes.Increment(internal::ClampU32(increase)); in ModifyRequested()
245 if (increase > decrease) { in ModifyRequested()
247 internal::ClampU32(increase - decrease)); in ModifyRequested()
254 void Metrics<MetricsType>::ModifyAllocated(size_t increase, size_t decrease) { in ModifyAllocated() argument
[all …]
/aosp_15_r20/external/coreboot/payloads/coreinfo/
H A DKconfig19 This option will increase the ELF file size by ca. 250 bytes.
38 final binary size, but may increase compilation time. This option
50 This option will increase the ELF file size by ca. 2250 bytes.
56 This option will increase the ELF file size by ca. 1790 bytes.
62 This option will increase the ELF file size by ca. 2650 bytes.
68 This option will increase the ELF file size by ca. 1750 bytes.
74 This option will increase the ELF file size by ca. 350 bytes.
88 This option will increase the ELF file size by ca. 1440 bytes.
94 This option will increase the ELF file size by ca. 4200 bytes.
/aosp_15_r20/external/autotest/server/site_tests/firmware_Cr50DeviceState/
H A Dfirmware_Cr50DeviceState.py103 INCREASE = '+' variable in firmware_Cr50DeviceState
211 """Get the expected irq increase for the given irq and state
244 # If ccd is disabled, ccd irq counts should not increase.
250 def check_increase(self, irq_key, name, increase, expected_range): argument
256 increase: the irq count
260 '' if increase is in the given range. If the increase isn't in the
264 if min_count > increase or max_count < increase:
265 err_msg = '%s %s: %s not in range %s' % (name, irq_key, increase,
283 events.append(self.INCREASE)
320 if events[i] == self.INCREASE:
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/servicequotas/src/main/resources/codegen-resources/
H A Dservice-2.json33 …organization, the quota increase requests in the template are automatically applied to the account…
54 …"documentation":"<p>Deletes the quota increase request for the specified quota from your quota req…
74increase requests in the template are not applied to new Amazon Web Services accounts in your orga…
128 "documentation":"<p>Retrieves information about the specified quota increase request.</p>"
166 …"documentation":"<p>Retrieves information about the specified quota increase request in your quota…
202 …"documentation":"<p>Retrieves the quota increase requests for the specified Amazon Web Service.</p…
220 "documentation":"<p>Retrieves the quota increase requests for the specified quota.</p>"
240 …"documentation":"<p>Lists the quota increase requests in the specified quota request template.</p>"
314 "documentation":"<p>Adds a quota increase request to your quota request template.</p>"
335 "documentation":"<p>Submits a quota increase request for the specified quota.</p>"
[all …]
/aosp_15_r20/external/coreboot/src/
H A DKconfig256 Saying Y here will increase the image size by 2-3KB.
1060 Note: This option will increase the size of the coreboot image.
1081 Note: This option will increase the size of the coreboot image.
1093 Note: This option will increase the size of the coreboot image.
1110 Note: This option will increase the size of the coreboot image.
1120 Note: This option will increase the size of the coreboot image.
1145 Note: This option will increase the time to emulate a ROM.
1156 Note: This option will increase the size of the coreboot image.
1168 Note: This option will increase the size of the coreboot image.
1180 Note: This option will increase the size of the coreboot image.
[all …]
/aosp_15_r20/packages/modules/NetworkStack/src/android/net/apf/
DApfV4GeneratorBase.java292 * Add instructions to the end of the program to increase counter and drop packet if R0 equals
300 * Add instructions to the end of the program to increase counter and pass packet if R0 equals
316 * Add instructions to the end of the program to increase counter and drop packet if R0 not
324 * Add instructions to the end of the program to increase counter and pass packet if R0 not
340 * Add instructions to the end of the program to increase counter and drop packet if R0 greater
348 * Add instructions to the end of the program to increase counter and pass packet if R0 greater
364 * Add instructions to the end of the program to increase counter and drop packet if R0 less
372 * Add instructions to the end of the program to increase counter and pass packet if R0 less
487 * Add instructions to the end of the program to increase counter and drop packet if the
495 * Add instructions to the end of the program to increase counter and pass packet if the
[all …]
/aosp_15_r20/system/chre/apps/wifi_offload/test/
H A Dchannelhistogram_test.cc60 // verify only the increase channel is non-zero in TEST_F()
69 uint32_t increase = 1; in TEST_F() local
71 increase *= 2; in TEST_F()
73 kAllFrequencies_Test[i], increase); in TEST_F()
82 EXPECT_EQ(expected * 254 / increase + 1, scaled_value); in TEST_F()
92 uint32_t increase = 1; in TEST_F() local
94 increase *= 2; in TEST_F()
96 kAllFrequencies_Test[i], increase); in TEST_F()
/aosp_15_r20/external/tensorflow/tensorflow/python/data/kernel_tests/
H A Dmemory_cleanup_test.py46 """Assert memory usage doesn't increase beyond given threshold for f."""
55 increase = memory_profiler.memory_usage(-1)[0] - initial
56 logging.info("Memory increase observed: %f MB" % increase)
57 assert increase < max_increase_mb, (
58 "Increase is too high. Initial memory usage: %f MB. Increase: %f MB. "
59 "Maximum allowed increase: %f") % (initial, increase, max_increase_mb)
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/congestion_control/
H A Dbbr2_simulator_test.cc710 // decimation can greatly increase smoothed rtt. in TEST_F()
732 // decimation can greatly increase smoothed rtt. in TEST_F()
786 // Test Bbr2's reaction to a 100x bandwidth increase during a transfer with B203
804 // Now increase the bottleneck bandwidth from 100Kbps to 10Mbps. in TEST_F()
817 // Test Bbr2's reaction to a 100x bandwidth increase during a transfer with BBQ0
835 // Now increase the bottleneck bandwidth from 100Kbps to 10Mbps. in TEST_F()
848 // Test Bbr2's reaction to a 100x bandwidth increase during a transfer with BBQ0
875 // Now increase the bottleneck bandwidth from 100Kbps to 10Mbps. in TEST_F()
888 // Test Bbr2's reaction to a 100x bandwidth increase during a transfer with B202
906 // Now increase the bottleneck bandwidth from 100Kbps to 10Mbps. in TEST_F()
[all …]
H A Dcubic_bytes_test.cc98 // Alternatively, we expect it to increase by one, every time we in TEST_F()
100 // saying we expect cwnd to increase by approximately Alpha once in TEST_F()
113 // the cwnd to increase by approximately one MSS every in TEST_F()
174 // increase the expected_cwnd only after after the first 100ms, in TEST_F()
255 // increase to be a cubic increase. in TEST_F()
274 // In this scenario, the first increase is dictated by the cubic in TEST_F()
290 // The window shoud increase on every ack. in TEST_F()
341 // Simulate an increase, and check that we are below the origin. in TEST_F()
/aosp_15_r20/external/python/cpython3/Doc/howto/
Dargparse.rst231 parser.add_argument("--verbosity", help="increase output verbosity")
249 increase output verbosity
276 parser.add_argument("--verbose", help="increase output verbosity",
296 --verbose increase output verbosity
322 parser.add_argument("-v", "--verbose", help="increase output verbosity",
339 -v, --verbose increase output verbosity
354 help="increase output verbosity")
388 help="increase output verbosity")
422 help="increase output verbosity")
448 increase output verbosity
[all …]
/aosp_15_r20/external/python/cpython2/Doc/howto/
Dargparse.rst231 parser.add_argument("--verbosity", help="increase output verbosity")
249 increase output verbosity
276 parser.add_argument("--verbose", help="increase output verbosity",
296 --verbose increase output verbosity
322 parser.add_argument("-v", "--verbose", help="increase output verbosity",
339 -v, --verbose increase output verbosity
354 help="increase output verbosity")
388 help="increase output verbosity")
422 help="increase output verbosity")
448 increase output verbosity
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/eager/memory_tests/
H A Dmemory_test_util.py43 """Assert memory usage doesn't increase beyond given threshold for f."""
62 increase = memory_profiler.memory_usage(-1)[0] - initial
64 assert increase < increase_threshold_absolute_mb, (
65 "Increase is too high. Initial memory usage: %f MB. Increase: %f MB. "
66 "Maximum allowed increase: %f MB. "
68 initial, increase, increase_threshold_absolute_mb,
/aosp_15_r20/external/google-cloud-java/java-video-intelligence/proto-google-cloud-video-intelligence-v1p2beta1/src/main/java/com/google/cloud/videointelligence/v1p2beta1/
H A DTextDetectionConfig.java79 * priori. It can increase the accuracy of the detection. Language hint must
96 * priori. It can increase the accuracy of the detection. Language hint must
113 * priori. It can increase the accuracy of the detection. Language hint must
131 * priori. It can increase the accuracy of the detection. Language hint must
527 * priori. It can increase the accuracy of the detection. Language hint must
544 * priori. It can increase the accuracy of the detection. Language hint must
561 * priori. It can increase the accuracy of the detection. Language hint must
579 * priori. It can increase the accuracy of the detection. Language hint must
597 * priori. It can increase the accuracy of the detection. Language hint must
622 * priori. It can increase the accuracy of the detection. Language hint must
[all …]
/aosp_15_r20/frameworks/opt/telephony/src/java/com/android/internal/telephony/satellite/metrics/
DSessionMetricsStats.java134 /** Increase the count of successful outgoing datagram transmission. */
151 /** Increase the count of failed outgoing datagram transmission. */
173 /** Increase the count of user messages that timed out waiting for connection. */
188 /** Increase the count of user messages that timed out waiting for ack. */
203 /** Increase the count of successful incoming datagram transmission. */
211 /** Increase the count of failed incoming datagram transmission. */
243 /** Increase the count of Satellite Notification Display. */
251 /** Increase the count of auto exit from P2P satellite messaging due to screen off. */
258 /** Increase the count of auto exit from P2P satellite messaging due to scan TN network. */
/aosp_15_r20/external/cronet/build/fuchsia/
H A Dbinary_size_differ_test.py91 # Increase a blob, but below the limit.
101 # Increase beyond the limit (adds another 8k)
112 # Increase beyond the limit, but compressed does not increase.
125 # Increase beyond the limit, but compressed goes down.
137 # Increase beyond the second limit. Fails, regardless of uncompressed.
149 # Increase beyond the second limit, but roller authored CL.
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/data/
H A Dprefetch_autotuner_test.cc42 t.RecordConsumption(0); // Expect buffer limit to increase. in TEST()
48 t.RecordConsumption(0); // Expect buffer limit to increase. in TEST()
52 t.RecordConsumption(0); // Expect buffer limit to increase. in TEST()
67 t.RecordConsumption(0); // Expect buffer limit to increase. in TEST()
71 t.RecordConsumption(0); // Expect buffer limit to increase. in TEST()
90 t.RecordConsumption(0); // Expect buffer limit to increase. in TEST()
94 t.RecordConsumption(0); // Expect buffer limit to increase. in TEST()
/aosp_15_r20/external/angle/build/fuchsia/
H A Dbinary_size_differ_test.py91 # Increase a blob, but below the limit.
101 # Increase beyond the limit (adds another 8k)
112 # Increase beyond the limit, but compressed does not increase.
125 # Increase beyond the limit, but compressed goes down.
137 # Increase beyond the second limit. Fails, regardless of uncompressed.
149 # Increase beyond the second limit, but roller authored CL.
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/hardware/libhardware_legacy/include/hardware_legacy/
Dlink_layer_stats.h108 …* Packet statistics reporting by firmware is performed on MPDU basi (i.e. counters increase by 1 f…
114 * tx_mpdu : shall increase by 5
115 * retries : shall increase by 16
116 * tx_ampdu : shall increase by 1
117 …* data packet counters shall not increase regardless of the number of BAR potentially sent by devi…
118 …* data packet counters shall not increase regardless of the number of BA received by device for th…
122 * retries : shall increase by 1
125 * mpdu_lost : shall increase by 11
/aosp_15_r20/prebuilts/vndk/v30/x86/include/hardware/libhardware_legacy/include/hardware_legacy/
Dlink_layer_stats.h108 …* Packet statistics reporting by firmware is performed on MPDU basi (i.e. counters increase by 1 f…
114 * tx_mpdu : shall increase by 5
115 * retries : shall increase by 16
116 * tx_ampdu : shall increase by 1
117 …* data packet counters shall not increase regardless of the number of BAR potentially sent by devi…
118 …* data packet counters shall not increase regardless of the number of BA received by device for th…
122 * retries : shall increase by 1
125 * mpdu_lost : shall increase by 11
/aosp_15_r20/prebuilts/vndk/v30/arm/include/hardware/libhardware_legacy/include/hardware_legacy/
Dlink_layer_stats.h108 …* Packet statistics reporting by firmware is performed on MPDU basi (i.e. counters increase by 1 f…
114 * tx_mpdu : shall increase by 5
115 * retries : shall increase by 16
116 * tx_ampdu : shall increase by 1
117 …* data packet counters shall not increase regardless of the number of BAR potentially sent by devi…
118 …* data packet counters shall not increase regardless of the number of BA received by device for th…
122 * retries : shall increase by 1
125 * mpdu_lost : shall increase by 11
/aosp_15_r20/prebuilts/vndk/v30/arm64/include/hardware/libhardware_legacy/include/hardware_legacy/
Dlink_layer_stats.h108 …* Packet statistics reporting by firmware is performed on MPDU basi (i.e. counters increase by 1 f…
114 * tx_mpdu : shall increase by 5
115 * retries : shall increase by 16
116 * tx_ampdu : shall increase by 1
117 …* data packet counters shall not increase regardless of the number of BAR potentially sent by devi…
118 …* data packet counters shall not increase regardless of the number of BA received by device for th…
122 * retries : shall increase by 1
125 * mpdu_lost : shall increase by 11
/aosp_15_r20/external/google-cloud-java/java-video-intelligence/proto-google-cloud-video-intelligence-v1p3beta1/src/main/java/com/google/cloud/videointelligence/v1p3beta1/
H A DTextDetectionConfig.java80 * priori. It can increase the accuracy of the detection. Language hint must
97 * priori. It can increase the accuracy of the detection. Language hint must
114 * priori. It can increase the accuracy of the detection. Language hint must
132 * priori. It can increase the accuracy of the detection. Language hint must
607 * priori. It can increase the accuracy of the detection. Language hint must
624 * priori. It can increase the accuracy of the detection. Language hint must
641 * priori. It can increase the accuracy of the detection. Language hint must
659 * priori. It can increase the accuracy of the detection. Language hint must
677 * priori. It can increase the accuracy of the detection. Language hint must
702 * priori. It can increase the accuracy of the detection. Language hint must
[all …]

12345678910>>...377