Lines Matching refs:EC
27 if (auto EC = Stream.readInteger(NumberOfBytes))
28 return joinErrors(std::move(EC),
42 if (auto EC = Stream.readInteger(HashSize))
43 return joinErrors(std::move(EC),
50 if (auto EC = Stream.readInteger(MaxNumberOfStrings))
51 return joinErrors(std::move(EC),
64 if (auto EC = Stream.readInteger(NumPresentWords))
65 return joinErrors(std::move(EC),
76 if (auto EC = Stream.readInteger(Word))
77 return joinErrors(std::move(EC),
88 if (auto EC = Stream.readInteger(NumDeletedWords))
90 std::move(EC),
101 if (auto EC = Stream.readInteger(Word))
102 return joinErrors(std::move(EC),
117 if (auto EC = Stream.readInteger(NameOffset))
118 return joinErrors(std::move(EC),
124 if (auto EC = Stream.readInteger(NameIndex))
125 return joinErrors(std::move(EC),
135 if (auto EC = Stream.readZeroString(Str))
136 return joinErrors(std::move(EC),
149 if (auto EC = Writer.writeInteger(0U)) // Number of bytes in table
150 return EC;
152 if (auto EC = Writer.writeInteger(0U)) // Hash Size
153 return EC;
155 if (auto EC = Writer.writeInteger(0U)) // Max Number of Strings
156 return EC;
158 if (auto EC = Writer.writeInteger(0U)) // Num Present Words
159 return EC;
161 if (auto EC = Writer.writeInteger(0U)) // Num Deleted Words
162 return EC;