Home
last modified time | relevance | path

Searched refs:TooLarge (Results 1 – 13 of 13) sorted by relevance

/external/crosvm/kernel_cmdline/src/
Dkernel_cmdline.rs20 TooLarge, enumerator
31 TooLarge => "inserting string would make command line too long", in fmt()
88 Err(Error::TooLarge) in has_capacity()
214 assert_eq!(cl.insert("hello", "world"), Err(Error::TooLarge)); in insert_too_large()
215 assert_eq!(cl.insert("a", "world"), Err(Error::TooLarge)); in insert_too_large()
216 assert_eq!(cl.insert("hello", "b"), Err(Error::TooLarge)); in insert_too_large()
218 assert_eq!(cl.insert("a", "b"), Err(Error::TooLarge)); in insert_too_large()
219 assert_eq!(cl.insert_str("a"), Err(Error::TooLarge)); in insert_too_large()
224 assert_eq!(cl.insert("c", "da"), Err(Error::TooLarge)); // adds 5 (including space) length in insert_too_large()
/external/llvm-project/clang/test/SemaCXX/
Dbuiltin-is-constant-evaluated.cpp78 constexpr size_t TooLarge = -1; in test_new_expr() local
79 …auto *x = new int[std::is_constant_evaluated() ? 1 : TooLarge]; // expected-error {{array is … in test_new_expr()
80 auto *x2 = new int[std::is_constant_evaluated() ? TooLarge : 1]; // OK in test_new_expr()
81 …auto *y = new int[1][std::is_constant_evaluated() ? TooLarge : 1]{}; // expected-error {{array is … in test_new_expr()
Dvector.cpp365 const TemplateVectorType<int, 0x1000000000>::type TooLarge = {}; in Init() local
/external/llvm-project/llvm/test/ThinLTO/X86/
Dfuncimport2.ll16 ; -print-import-failures should print a TooLarge reason.
24 ; FAILURES: (foo): Reason = TooLarge, Threshold = 0, Size = 1, MaxHotness = unknown, Attempts = 1
/external/rust/crates/nom/src/
Derror.rs284 TooLarge, enumerator
343 ErrorKind::TooLarge => 71, in error_to_u32()
404 ErrorKind::TooLarge => "Needed data size is too large", in description()
/external/tensorflow/tensorflow/compiler/xla/service/
Dmemory_space_assignment_best_fit_repacker_test.cc71 TEST_F(MemorySpaceAssignmentBestFitRepackerTest, TooLarge) { in TEST_F() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
DFunctionImport.h50 TooLarge, enumerator
/external/llvm-project/llvm/include/llvm/Transforms/IPO/
DFunctionImport.h50 TooLarge, enumerator
/external/rust/crates/nom/src/bits/
Dmod.rs104 None => Err::Failure(E2::from_error_kind(i, ErrorKind::TooLarge)), in bytes()
/external/rust/crates/nom/tests/
Dmp4.rs264 Err(Err::Error(error_position!(input, ErrorKind::TooLarge))) in mvhd_box()
Dissues.rs281 assert_eq!(parser(&b""[..]), Err(Err::Failure(error_position!(&b""[..], ErrorKind::TooLarge)))); in issue_848_overflow_incomplete_bits_to_bytes()
/external/llvm-project/llvm/lib/Transforms/IPO/
DFunctionImport.cpp237 Reason = FunctionImporter::ImportFailureReason::TooLarge; in selectCallee()
344 case FunctionImporter::ImportFailureReason::TooLarge: in getFailureName()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DFunctionImport.cpp237 Reason = FunctionImporter::ImportFailureReason::TooLarge; in selectCallee()
345 case FunctionImporter::ImportFailureReason::TooLarge: in getFailureName()