Home
last modified time | relevance | path

Searched refs:Length (Results 1 – 25 of 2203) sorted by relevance

12345678910>>...89

/external/tcpdump/tests/
Dpimv2-oobr-1.out10 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
12 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
14 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
16 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
18 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
20 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
22 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
24 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
26 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
28 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0)
[all …]
Dpimv2-oobr-2.out29 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
32 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
35 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
38 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
41 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
44 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
47 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
50 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
53 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
56 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0)
[all …]
Dpimv2-oobr-4.out10 State Refresh Capability Option (21), length 0, Value: ERROR: Option Length != 4 Bytes (0)
382 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
385 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
388 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
391 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
394 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
397 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
400 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
403 State Refresh Capability Option (21), length 0, Value: ERROR: Option Length != 4 Bytes (0)
438 Hold Time Option (1), length 21, Value: ERROR: Option Length != 2 Bytes (21)
[all …]
/external/clang/test/Parser/
Dpragma-loop.cpp7 void test_nontype_template_param(int *List, int Length) { in test_nontype_template_param() argument
9 for (int i = 0; i < Length; i++) { in test_nontype_template_param()
14 for (int i = 0; i < Length; i++) { in test_nontype_template_param()
20 void test_nontype_template_vectorize(int *List, int Length) { in test_nontype_template_vectorize() argument
22 for (int i = 0; i < Length; i++) { in test_nontype_template_vectorize()
27 for (int i = 0; i < Length; i++) { in test_nontype_template_vectorize()
33 void test_nontype_template_interleave(int *List, int Length) { in test_nontype_template_interleave() argument
35 for (int i = 0; i < Length; i++) { in test_nontype_template_interleave()
40 for (int i = 0; i < Length; i++) { in test_nontype_template_interleave()
46 void test_nontype_template_char(int *List, int Length) { in test_nontype_template_char() argument
[all …]
Dpragma-unroll.cpp6 void test(int *List, int Length) { in test() argument
10 while (i + 1 < Length) { in test()
15 while (i < Length) { in test()
20 while (i - 1 < Length) { in test()
25 while (i - 2 < Length) { in test()
32 while (i-6 < Length) { in test()
37 while (i-7 < Length) { in test()
47 while (i-8 < Length) { in test()
52 …ted-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int j = Length; in test()
54 …ted-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int k = Length; in test()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DStringRef.h42 size_t Length; variable
52 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() argument
53 if (Length == 0) { return 0; } in compareMemory()
54 return ::memcmp(Lhs,Rhs,Length); in compareMemory()
62 /*implicit*/ StringRef() : Data(0), Length(0) {} in StringRef()
68 Length = ::strlen(Str); // invoking strlen(NULL) is undefined behavior in StringRef()
73 : Data(data), Length(length) { in StringRef()
80 : Data(Str.data()), Length(Str.length()) {} in StringRef()
88 iterator end() const { return Data + Length; } in end()
99 bool empty() const { return Length == 0; } in empty()
[all …]
/external/llvm/include/llvm/ADT/
DStringRef.h54 size_t Length; variable
59 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() argument
60 if (Length == 0) { return 0; } in compareMemory()
61 return ::memcmp(Lhs,Rhs,Length); in compareMemory()
69 /*implicit*/ StringRef() : Data(nullptr), Length(0) {} in StringRef()
75 Length = ::strlen(Str); // invoking strlen(NULL) is undefined behavior in StringRef()
81 : Data(data), Length(length) { in StringRef()
89 : Data(Str.data()), Length(Str.length()) {} in StringRef()
97 iterator end() const { return Data + Length; } in end()
120 bool empty() const { return Length == 0; } in empty()
[all …]
/external/clang/test/CodeGenCXX/
Dpragma-loop.cpp4 void while_test(int *List, int Length) { in while_test() argument
13 while (i < Length) { in while_test()
21 void do_test(int *List, int Length) { in do_test() argument
29 } while (i < Length); in do_test()
35 void for_test(int *List, int Length) { in for_test() argument
39 for (int i = 0; i < Length; i++) { in for_test()
58 void disable_test(int *List, int Length) { in disable_test() argument
60 for (int i = 0; i < Length; i++) { in disable_test()
71 void for_define_test(int *List, int Length, int Value) { in for_define_test() argument
74 for (int i = 0; i < Length; i++) { in for_define_test()
[all …]
Dpragma-unroll.cpp4 void while_test(int *List, int Length) { in while_test() argument
9 while (i < Length) { in while_test()
17 void do_test(int *List, int Length) { in do_test() argument
26 } while (i < Length); in do_test()
30 void for_test(int *List, int Length) { in for_test() argument
33 for (int i = 0; i < Length; i++) { in for_test()
54 void for_define_test(int *List, int Length, int Value) { in for_define_test() argument
57 for (int i = 0; i < Length; i++) { in for_define_test()
65 void for_template_test(A *List, int Length, A Value) { in for_template_test() argument
68 for (int i = 0; i < Length; i++) { in for_template_test()
[all …]
/external/e2fsprogs/tests/d_fallocate_bigalloc/
Dexpect.gz
/external/llvm/include/llvm/CodeGen/PBQP/
DMath.h29 explicit Vector(unsigned Length) in Vector() argument
30 : Length(Length), Data(new PBQPNum[Length]) { in Vector()
36 Vector(unsigned Length, PBQPNum InitVal) in Vector() argument
37 : Length(Length), Data(new PBQPNum[Length]) { in Vector()
41 std::fill(Data, Data + Length, InitVal); in Vector()
46 : Length(V.Length), Data(new PBQPNum[Length]) { in Vector()
49 std::copy(V.Data, V.Data + Length, Data); in Vector()
54 : Length(V.Length), Data(V.Data) { in Vector()
55 V.Length = 0; in Vector()
70 Length = V.Length;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/PBQP/
DMath.h31 explicit Vector(unsigned Length) in Vector() argument
32 : Length(Length), Data(llvm::make_unique<PBQPNum []>(Length)) {} in Vector()
35 Vector(unsigned Length, PBQPNum InitVal) in Vector() argument
36 : Length(Length), Data(llvm::make_unique<PBQPNum []>(Length)) { in Vector()
37 std::fill(Data.get(), Data.get() + Length, InitVal); in Vector()
42 : Length(V.Length), Data(llvm::make_unique<PBQPNum []>(Length)) { in Vector()
43 std::copy(V.Data.get(), V.Data.get() + Length, Data.get()); in Vector()
48 : Length(V.Length), Data(std::move(V.Data)) { in Vector()
49 V.Length = 0; in Vector()
54 assert(Length != 0 && Data && "Invalid vector");
[all …]
/external/e2fsprogs/tests/d_fallocate/
Dexpect.gz1Creating filesystem with 65536 1k blocks and 4096 inodes 2Superblock backups stored on blocks: 3 ...
/external/llvm/tools/llvm-readobj/
DARMWinEHPrinter.h36 unsigned Length, bool Prologue);
38 unsigned Length, bool Prologue);
40 unsigned Length, bool Prologue);
42 unsigned Length, bool Prologue);
44 unsigned Length, bool Prologue);
46 unsigned Length, bool Prologue);
48 unsigned Length, bool Prologue);
50 unsigned Length, bool Prologue);
52 unsigned Length, bool Prologue);
54 unsigned Length, bool Prologue);
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DARMWinEHPrinter.h36 unsigned Length, bool Prologue);
38 unsigned Length, bool Prologue);
40 unsigned Length, bool Prologue);
42 unsigned Length, bool Prologue);
44 unsigned Length, bool Prologue);
46 unsigned Length, bool Prologue);
48 unsigned Length, bool Prologue);
50 unsigned Length, bool Prologue);
52 unsigned Length, bool Prologue);
54 unsigned Length, bool Prologue);
[all …]
/external/libcxx/benchmarks/
Dstring.bench.cpp60 enum class Length { Empty, Small, Large, Huge }; enum
61 struct AllLengths : EnumValuesAsTuple<AllLengths, Length, 4> {
122 TEST_ALWAYS_INLINE std::string makeString(Length L, in makeString()
126 case Length::Empty: in makeString()
128 case Length::Small: in makeString()
130 case Length::Large: in makeString()
132 case Length::Huge: in makeString()
137 template <class Length, class Opaque>
142 makeString(Length(), DiffType::Control, Opaque())); in run()
147 return "BM_StringConstructDestroyCStr" + Length::name() + Opaque::name(); in name()
[all …]
/external/llvm/include/llvm/DebugInfo/CodeView/
DStreamRef.h21 StreamRef() : Stream(nullptr), ViewOffset(0), Length(0) {} in StreamRef()
23 : Stream(&Stream), ViewOffset(0), Length(Stream.getLength()) {} in StreamRef()
24 StreamRef(const StreamInterface &Stream, uint32_t Offset, uint32_t Length) in StreamRef() argument
25 : Stream(&Stream), ViewOffset(Offset), Length(Length) {} in StreamRef()
28 StreamRef(const StreamRef &S, uint32_t Offset, uint32_t Length) = delete;
34 if (Size + Offset > Length) in readBytes()
43 if (Offset >= Length) in readLongestContiguousChunk()
51 uint32_t MaxLength = Length - Offset; in readLongestContiguousChunk()
58 if (Data.size() + Offset > Length) in writeBytes()
63 uint32_t getLength() const { return Length; } in getLength()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringRef.h59 size_t Length = 0; variable
64 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() argument
65 if (Length == 0) { return 0; } in compareMemory()
66 return ::memcmp(Lhs,Rhs,Length); in compareMemory()
83 : Data(Str), Length(Str ? ::strlen(Str) : 0) {} in StringRef()
88 : Data(data), Length(length) {} in StringRef()
93 : Data(Str.data()), Length(Str.length()) {} in StringRef()
105 iterator end() const { return Data + Length; } in end()
130 bool empty() const { return Length == 0; } in empty()
135 size_t size() const { return Length; } in size()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DStringRef.h62 size_t Length = 0; variable
67 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() argument
68 if (Length == 0) { return 0; } in compareMemory()
69 return ::memcmp(Lhs,Rhs,Length); in compareMemory()
86 : Data(Str), Length(Str ? ::strlen(Str) : 0) {} in StringRef()
91 : Data(data), Length(length) {} in StringRef()
96 : Data(Str.data()), Length(Str.length()) {} in StringRef()
108 iterator end() const { return Data + Length; } in end()
133 bool empty() const { return Length == 0; } in empty()
138 size_t size() const { return Length; } in size()
[all …]
/external/llvm/lib/Support/
DStringRef.cpp41 static int ascii_strncasecmp(const char *LHS, const char *RHS, size_t Length) { in ascii_strncasecmp() argument
42 for (size_t I = 0; I < Length; ++I) { in ascii_strncasecmp()
53 if (int Res = ascii_strncasecmp(Data, RHS.Data, std::min(Length, RHS.Length))) in compare_lower()
55 if (Length == RHS.Length) in compare_lower()
57 return Length < RHS.Length ? -1 : 1; in compare_lower()
62 return Length >= Prefix.Length && in startswith_lower()
63 ascii_strncasecmp(Data, Prefix.Data, Prefix.Length) == 0; in startswith_lower()
68 return Length >= Suffix.Length && in endswith_lower()
69 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith_lower()
74 for (size_t I = 0, E = std::min(Length, RHS.Length); I != E; ++I) { in compare_numeric()
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBitSet.cs132 if (n >= _bits.Length) { in Add()
142 int newSize = Math.Max(_bits.Length << 1, NumWordsToHold(bit)); in GrowToInclude()
151 if (a._bits.Length > _bits.Length) { in OrInPlace()
152 SetSize(a._bits.Length); in OrInPlace()
154 int min = Math.Min(_bits.Length, a._bits.Length); in OrInPlace()
178 for (int i = _bits.Length - 1; i >= 0; i--) { in Size()
202 int n = Math.Min(this._bits.Length, otherSet._bits.Length); in Equals()
213 if (this._bits.Length > n) { in Equals()
214 for (int i = n + 1; i < this._bits.Length; i++) { in Equals()
219 } else if (otherSet._bits.Length > n) { in Equals()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DBinaryStreamRef.h31 Length = BorrowedImpl.getLength(); in BinaryStreamRefBase()
35 Optional<uint32_t> Length) in BinaryStreamRefBase() argument
37 ViewOffset(Offset), Length(Length) {} in BinaryStreamRefBase()
39 Optional<uint32_t> Length) in BinaryStreamRefBase() argument
40 : BorrowedImpl(&BorrowedImpl), ViewOffset(Offset), Length(Length) {} in BinaryStreamRefBase()
53 if (Length.hasValue()) in getLength()
54 return *Length; in getLength()
72 if (Result.Length.hasValue()) in drop_front()
73 *Result.Length -= N; in drop_front()
92 if (!Result.Length.hasValue()) in drop_back()
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringRef.cpp41 static int ascii_strncasecmp(const char *LHS, const char *RHS, size_t Length) { in ascii_strncasecmp() argument
42 for (size_t I = 0; I < Length; ++I) { in ascii_strncasecmp()
53 if (int Res = ascii_strncasecmp(Data, RHS.Data, std::min(Length, RHS.Length))) in compare_lower()
55 if (Length == RHS.Length) in compare_lower()
57 return Length < RHS.Length ? -1 : 1; in compare_lower()
62 return Length >= Prefix.Length && in startswith_lower()
63 ascii_strncasecmp(Data, Prefix.Data, Prefix.Length) == 0; in startswith_lower()
68 return Length >= Suffix.Length && in endswith_lower()
69 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith_lower()
79 for (size_t I = 0, E = std::min(Length, RHS.Length); I != E; ++I) { in compare_numeric()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DStringRef.cpp27 static int ascii_strncasecmp(const char *LHS, const char *RHS, size_t Length) { in ascii_strncasecmp() argument
28 for (size_t I = 0; I < Length; ++I) { in ascii_strncasecmp()
39 if (int Res = ascii_strncasecmp(Data, RHS.Data, std::min(Length, RHS.Length))) in compare_lower()
41 if (Length == RHS.Length) in compare_lower()
43 return Length < RHS.Length ? -1 : 1; in compare_lower()
48 return Length >= Prefix.Length && in startswith_lower()
49 ascii_strncasecmp(Data, Prefix.Data, Prefix.Length) == 0; in startswith_lower()
54 return Length >= Suffix.Length && in endswith_lower()
55 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith_lower()
65 for (size_t I = 0, E = std::min(Length, RHS.Length); I != E; ++I) { in compare_numeric()
[all …]
/external/clang/test/PCH/
Dpragma-loop.cpp29 inline void run1(int *List, int Length) { in run1() argument
34 while (i < Length) { in run1()
40 inline void run2(int *List, int Length) { in run2() argument
46 while (i - 1 < Length) { in run2()
52 inline void run3(int *List, int Length) { in run3() argument
58 while (i - 3 < Length) { in run3()
64 inline void run4(int *List, int Length) { in run4() argument
67 while (i - 3 < Length) { in run4()
73 inline void run5(int *List, int Length) { in run5() argument
76 while (i - 3 < Length) { in run5()
[all …]

12345678910>>...89