Home
last modified time | relevance | path

Searched refs:size_limit (Results 1 – 21 of 21) sorted by relevance

/external/rust/crates/plotters-backend/src/rasterizer/
Dline.rs75 let mut size_limit = back.get_size(); in draw_line() localVariable
78 size_limit = (size_limit.1, size_limit.0); in draw_line()
92 (f64::from(to.1.min(size_limit.1 as i32 - 1).max(0) - from.1) / grad).floor() as i32; in draw_line()
94 let batch_start = (f64::from(from.1.min(size_limit.1 as i32 - 2).max(0) - from.1) / grad) in draw_line()
100 to.0.min(size_limit.0 as i32 - 2) in draw_line()
/external/rust/crates/regex/src/
Dre_builder.rs6 pub size_limit: usize, field
22 size_limit: 10 * (1 << 20), in default()
172 pub fn size_limit(
176 self.0.size_limit = limit;
358 pub fn size_limit(
362 self.0.size_limit = limit;
Dcompile.rs37 size_limit: usize, field
53 size_limit: 10 * (1 << 20), in new()
63 pub fn size_limit(mut self, size_limit: usize) -> Self { in size_limit() method
64 self.size_limit = size_limit; in size_limit()
798 if self.insts.len() * size_of::<Inst>() > self.size_limit { in check_size()
799 Err(Error::CompiledTooBig(self.size_limit)) in check_size()
Dexec.rs318 .size_limit(self.options.size_limit) in build()
323 .size_limit(self.options.size_limit) in build()
328 .size_limit(self.options.size_limit) in build()
/external/webrtc/modules/video_coding/codecs/vp9/
Dvp9_frame_buffer_pool.cc146 size_t size_limit = 7680 * 4320 * 3 / 2 * 2; in VpxGetFrameBuffer() local
147 if (min_size > size_limit) in VpxGetFrameBuffer()
/external/webrtc/api/
Drtc_event_log_output_file_unittest.cc97 const size_t size_limit = output_str_1.length() + output_str_2.length() - 1; in TEST_F() local
99 std::make_unique<RtcEventLogOutputFile>(output_file_name_, size_limit); in TEST_F()
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dpool_allocator_test.cc119 EXPECT_EQ(2, pool.size_limit()); in TEST()
128 EXPECT_EQ(100, pool.size_limit()); in TEST()
/external/google-breakpad/src/client/linux/handler/
Dminidump_descriptor.h112 off_t size_limit() const { return size_limit_; } in size_limit() function
Dexception_handler.cc621 minidump_descriptor_.size_limit(), in DoDump()
632 minidump_descriptor_.size_limit(), in DoDump()
/external/llvm-project/llvm/test/CodeGen/Thumb2/LowOverheadLoops/
Dsize-limit.mir10 …define dso_local arm_aapcscc void @size_limit(i32* nocapture %a, i32* nocapture readonly %b, i32* …
63 name: size_limit
109 ; CHECK-LABEL: name: size_limit
Dmultiblock-massive.mir5 …define void @size_limit(i32* nocapture %a, i32* nocapture readonly %b, i32* nocapture readonly %c,…
62 name: size_limit
108 ; CHECK-LABEL: name: size_limit
Dend-positive-offset.mir8 …define void @size_limit(i32* nocapture %a, i32* nocapture readonly %b, i32* nocapture readonly %c,…
56 name: size_limit
126 ; CHECK-LABEL: name: size_limit
Dwhile-negative-offset.mir9 …define void @size_limit(i32* nocapture %a, i32* nocapture readonly %b, i32* nocapture readonly %c,…
61 name: size_limit
/external/tensorflow/tensorflow/core/common_runtime/
Dpool_allocator.h99 size_t size_limit() const TF_NO_THREAD_SAFETY_ANALYSIS { in size_limit() function
/external/deqp-deps/SPIRV-Tools/include/spirv-tools/
Doptimizer.hpp614 Optimizer::PassToken CreateScalarReplacementPass(uint32_t size_limit = 100);
/external/swiftshader/third_party/SPIRV-Tools/include/spirv-tools/
Doptimizer.hpp614 Optimizer::PassToken CreateScalarReplacementPass(uint32_t size_limit = 100);
/external/python/cpython3/Lib/
Dsmtpd.py868 size_limit = None variable in Options
900 options.size_limit = int_size
951 options.size_limit, enable_SMTPUTF8=options.enable_SMTPUTF8)
/external/deqp-deps/SPIRV-Tools/source/opt/
Doptimizer.cpp799 Optimizer::PassToken CreateScalarReplacementPass(uint32_t size_limit) { in CreateScalarReplacementPass() argument
801 MakeUnique<opt::ScalarReplacementPass>(size_limit)); in CreateScalarReplacementPass()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Doptimizer.cpp799 Optimizer::PassToken CreateScalarReplacementPass(uint32_t size_limit) { in CreateScalarReplacementPass() argument
801 MakeUnique<opt::ScalarReplacementPass>(size_limit)); in CreateScalarReplacementPass()
/external/libvpx/libvpx/build/make/
Dconfigure.sh642 enable_feature size_limit
/external/rust/crates/regex/
DCHANGELOG.md784 `RegexBuilder::size_limit`.