MCPcopy Create free account
hub / github.com/NVIDIA/cuda-tile / readLEVarSize

Method readLEVarSize

lib/Bytecode/Reader/BytecodeReader.cpp:162–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160
161 template <typename T>
162 std::enable_if_t<std::is_integral<T>::value, LogicalResult>
163 readLEVarSize(SmallVectorImpl<T> &result) {
164 uint64_t size;
165 if (failed(readVarInt(size)))
166 return failure();
167 return readLE(static_cast<size_t>(size), result);
168 }
169
170 template <typename T>
171 std::enable_if_t<std::is_floating_point<T>::value, LogicalResult>

Callers 1

parseOpAttributeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected