Home
last modified time | relevance | path

Searched refs:Invalid (Results 1 – 25 of 760) sorted by relevance

12345678910>>...31

/external/valgrind/memcheck/tests/
Dsigkill.stderr.exp-darwin26 setting signal 9: Invalid argument
27 getting signal 9: Invalid argument
50 setting signal 17: Invalid argument
51 getting signal 17: Invalid argument
94 Invalid argument
97 setting signal 34: Invalid argument
98 getting signal 34: Invalid argument
100 setting signal 35: Invalid argument
101 getting signal 35: Invalid argument
103 setting signal 36: Invalid argument
[all …]
Dcustom_alloc.stderr.exp1 Invalid write of size 4
7 Invalid write of size 4
16 Invalid write of size 4
22 Invalid free() / delete / delete[] / realloc()
28 Invalid free() / delete / delete[] / realloc()
40 Invalid read of size 4
46 Invalid write of size 1
53 Invalid write of size 1
60 Invalid write of size 1
67 Invalid write of size 1
[all …]
Dcustom_alloc.stderr.exp-s390x-mvc1 Invalid write of size 4
7 Invalid write of size 4
16 Invalid write of size 4
22 Invalid free() / delete / delete[] / realloc()
28 Invalid free() / delete / delete[] / realloc()
40 Invalid read of size 1
46 Invalid write of size 1
53 Invalid write of size 1
60 Invalid write of size 1
67 Invalid write of size 1
[all …]
Dfprw.stderr.exp-mips32-be7 Invalid read of size 4
13 Invalid read of size 4
19 Invalid write of size 4
25 Invalid write of size 4
31 Invalid read of size 4
37 Invalid write of size 4
43 Invalid free() / delete / delete[] / realloc()
48 Invalid write of size 4
Dfprw.stderr.exp-mips32-le7 Invalid read of size 4
13 Invalid read of size 4
19 Invalid write of size 4
25 Invalid write of size 4
31 Invalid read of size 4
37 Invalid write of size 4
43 Invalid free() / delete / delete[] / realloc()
48 Invalid write of size 4
/external/boringssl/src/crypto/ecdsa/
Decdsa_verify_tests.txt21 Invalid =
29 Invalid =
44 Invalid =
52 Invalid =
60 Invalid =
68 Invalid =
76 Invalid =
84 Invalid =
92 Invalid =
100 Invalid =
[all …]
/external/clang/lib/Basic/
DSourceManager.cpp87 bool *Invalid) const { in getBuffer()
91 if (Invalid) in getBuffer()
92 *Invalid = isBufferInvalid(); in getBuffer()
129 if (Invalid) *Invalid = true; in getBuffer()
146 if (Invalid) *Invalid = true; in getBuffer()
173 if (Invalid) in getBuffer()
174 *Invalid = isBufferInvalid(); in getBuffer()
293 bool Invalid = false; in AddLineNote() local
294 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); in AddLineNote()
295 if (!Entry.isFile() || Invalid) in AddLineNote()
[all …]
DSourceLocation.cpp96 unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const { in getExpansionLineNumber()
98 return SrcMgr->getExpansionLineNumber(*this, Invalid); in getExpansionLineNumber()
101 unsigned FullSourceLoc::getExpansionColumnNumber(bool *Invalid) const { in getExpansionColumnNumber()
103 return SrcMgr->getExpansionColumnNumber(*this, Invalid); in getExpansionColumnNumber()
106 unsigned FullSourceLoc::getSpellingLineNumber(bool *Invalid) const { in getSpellingLineNumber()
108 return SrcMgr->getSpellingLineNumber(*this, Invalid); in getSpellingLineNumber()
111 unsigned FullSourceLoc::getSpellingColumnNumber(bool *Invalid) const { in getSpellingColumnNumber()
113 return SrcMgr->getSpellingColumnNumber(*this, Invalid); in getSpellingColumnNumber()
130 const char *FullSourceLoc::getCharacterData(bool *Invalid) const { in getCharacterData()
132 return SrcMgr->getCharacterData(*this, Invalid); in getCharacterData()
[all …]
/external/valgrind/memcheck/tests/amd64/
Dinsn-pmovmskb.stderr.exp6 0: Invalid value is false
12 1: Invalid value is false
18 2: Invalid value is false
24 3: Invalid value is false
30 4: Invalid value is false
36 5: Invalid value is false
42 6: Invalid value is false
48 7: Invalid value is false
54 8: Invalid value is false
60 9: Invalid value is false
[all …]
Dsh-mem-vec256-plo-no.stderr.exp28 Invalid read of size 32
35 Invalid write of size 8
47 Invalid read of size 32
54 Invalid write of size 8
64 Invalid read of size 32
80 Invalid read of size 32
96 Invalid read of size 32
112 Invalid read of size 32
128 Invalid read of size 32
144 Invalid read of size 32
[all …]
Dsh-mem-vec128-plo-no.stderr.exp28 Invalid read of size 16
35 Invalid write of size 8
47 Invalid read of size 16
54 Invalid write of size 8
64 Invalid read of size 16
80 Invalid read of size 16
96 Invalid read of size 16
112 Invalid read of size 16
128 Invalid read of size 16
144 Invalid read of size 16
[all …]
Dinsn-bsfl.stderr.exp5 0x........: Invalid value is 32
10 0x........: Invalid value is 0
15 0x........: Invalid value is 6
20 0x........: Invalid value is 9
25 0x........: Invalid value is 17
30 0x........: Invalid value is 0
35 0x........: Invalid value is 1
40 0x........: Invalid value is 1
Dsh-mem-vec256-plo-yes.stderr.exp28 Invalid read of size 32
35 Invalid write of size 8
47 Invalid read of size 32
54 Invalid write of size 8
352 Invalid read of size 32
368 Invalid read of size 32
384 Invalid read of size 32
400 Invalid read of size 32
416 Invalid read of size 32
432 Invalid read of size 32
[all …]
/external/clang/include/clang/Basic/
DSourceManager.h179 bool *Invalid = nullptr) const;
832 bool *Invalid = nullptr);
896 bool *Invalid = nullptr) const {
900 if (Invalid)
901 *Invalid = true;
907 Invalid);
910 llvm::MemoryBuffer *getBuffer(FileID FID, bool *Invalid = nullptr) const {
914 if (Invalid)
915 *Invalid = true;
922 Invalid);
[all …]
/external/clang/unittests/Basic/
DSourceManagerTest.cpp134 bool Invalid; in TEST_F() local
136 Invalid = false; in TEST_F()
137 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 0, &Invalid)); in TEST_F()
138 EXPECT_TRUE(!Invalid); in TEST_F()
140 Invalid = false; in TEST_F()
141 EXPECT_EQ(5U, SourceMgr.getColumnNumber(MainFileID, 4, &Invalid)); in TEST_F()
142 EXPECT_TRUE(!Invalid); in TEST_F()
144 Invalid = false; in TEST_F()
145 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 7, &Invalid)); in TEST_F()
146 EXPECT_TRUE(!Invalid); in TEST_F()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenConstants.cs56 public const int Invalid = 0; field in Antlr.Runtime.TokenTypes
69 public static readonly IToken Invalid = new CommonToken( TokenTypes.Invalid ); field in Antlr.Runtime.Tokens
76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
87 public static readonly T Invalid = new T() field in Antlr.Runtime.T
89 Type = TokenTypes.Invalid
94 Type = TokenTypes.Invalid
/external/valgrind/memcheck/tests/x86/
Dsh-mem-vec128-plo-no.stderr.exp28 Invalid read of size 16
35 Invalid write of size 8
47 Invalid read of size 16
54 Invalid write of size 8
64 Invalid read of size 16
80 Invalid read of size 16
96 Invalid read of size 16
112 Invalid read of size 16
128 Invalid read of size 16
144 Invalid read of size 16
[all …]
/external/valgrind/memcheck/tests/common/
Dsh-mem-vec128-plo-no.stderr.exp-32bit-le28 Invalid read of size 16
35 Invalid write of size 8
47 Invalid read of size 16
54 Invalid write of size 8
64 Invalid read of size 16
80 Invalid read of size 16
96 Invalid read of size 16
112 Invalid read of size 16
128 Invalid read of size 16
144 Invalid read of size 16
[all …]
Dsh-mem-vec128-plo-no.stderr.exp-64bit-le28 Invalid read of size 16
35 Invalid write of size 8
47 Invalid read of size 16
54 Invalid write of size 8
64 Invalid read of size 16
80 Invalid read of size 16
96 Invalid read of size 16
112 Invalid read of size 16
128 Invalid read of size 16
144 Invalid read of size 16
[all …]
/external/clang/include/clang/Sema/
DOwnership.h148 bool Invalid;
151 ActionResult(bool Invalid = false)
152 : Val(PtrTy()), Invalid(Invalid) {}
153 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
154 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
160 bool isInvalid() const { return Invalid; }
161 bool isUsable() const { return !Invalid && Val; }
162 bool isUnset() const { return !Invalid && !Val; }
171 Invalid = false;
185 ActionResult(bool Invalid = false)
[all …]
/external/e2fsprogs/tests/progs/test_data/
Dexpect.icount4 store: Invalid argument passed to ext2 library while calling ext2fs_icount_store
6 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch
8 increment: Invalid argument passed to ext2 library while calling ext2fs_icount_increment
10 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
12 store: Invalid argument passed to ext2 library while calling ext2fs_icount_store
14 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch
16 increment: Invalid argument passed to ext2 library while calling ext2fs_icount_increment
18 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
61 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
93 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
[all …]
/external/clang/lib/AST/
DRawCommentList.cpp73 bool Invalid = false; in commentsStartOnSameColumn() local
74 unsigned C1 = SM.getPresumedColumnNumber(L1, &Invalid); in commentsStartOnSameColumn()
75 if (!Invalid) { in commentsStartOnSameColumn()
76 unsigned C2 = SM.getPresumedColumnNumber(L2, &Invalid); in commentsStartOnSameColumn()
77 return !Invalid && (C1 == C2); in commentsStartOnSameColumn()
130 bool Invalid = false; in RawComment() local
132 SourceMgr.getBufferData(BeginFileID, &Invalid).data(); in RawComment()
134 (!Invalid && !onlyWhitespaceOnLineBefore(Buffer, BeginOffset)); in RawComment()
168 bool Invalid = false; in getRawTextSlow() local
170 &Invalid).data(); in getRawTextSlow()
[all …]
/external/llvm/test/Object/
Dcorrupt.test5 SECNAME: Error reading file: Invalid data was encountered while parsing the file.
12 SECDATA: Error reading file: Invalid data was encountered while parsing the file.
19 SYMNAME: Error reading file: Invalid data was encountered while parsing the file.
26 VER: Error reading file: Invalid version entry.
33 STRTAB: Invalid dynamic string table reference
39 PHENTSIZE: Invalid program header size
52 RELOC: Invalid entity size
58 DYN-TABLE-SIZE: Invalid entity size
65 DYN-TABLE-OFFSET: Invalid data was encountered while parsing the file.
72 DYN-TABLE-TOO-LARGE: Invalid data was encountered while parsing the file.
/external/pdfium/third_party/libpng16/
D0003-check-errors-in-set-pcal.patch9 - png_error(png_ptr, "Invalid pCAL equation type");
11 + png_chunk_report(png_ptr, "Invalid pCAL equation type",
17 - png_error(png_ptr, "Invalid pCAL parameter count");
19 + png_chunk_report(png_ptr, "Invalid pCAL parameter count",
29 - png_error(png_ptr, "Invalid format for pCAL parameter");
31 + png_chunk_report(png_ptr, "Invalid format for pCAL parameter",
/external/llvm/test/Bitcode/
Dinvalid.test30 INVALID-ENCODING: Invalid encoding
33 BAD-ABBREV-NUMBER: Invalid abbrev number
34 BAD-TYPE-TABLE-FORWARD-REF: Invalid TYPE table: Only named structs can be forward referenced
36 BAD-ALIGN: Invalid alignment value
59 EXTRACT-ARRAY: EXTRACTVAL: Invalid array index
60 EXTRACT-STRUCT: EXTRACTVAL: Invalid struct index
61 EXTRACT-IDXS: EXTRACTVAL: Invalid type
62 INSERT-ARRAY: INSERTVAL: Invalid array index
63 INSERT-STRUCT: INSERTVAL: Invalid struct index
64 INSERT-IDXS: INSERTVAL: Invalid type
[all …]

12345678910>>...31