Lines Matching full:terminalsize
101 // uleb128 terminalSize;
107 // uleb128 terminalSize;
122 // uleb128 terminalSize;
138 // Size of the whole node (including the terminalSize and the outgoing edges.) in updateOffset()
139 // In contrast, terminalSize only records the size of the other data in the in updateOffset()
143 uint32_t terminalSize = getTerminalSize(); in updateOffset() local
146 nodeSize = terminalSize + getULEB128Size(terminalSize); in updateOffset()
148 nodeSize = 1; // Size of terminalSize (which has a value of 0) in updateOffset()
167 uint32_t terminalSize = getTerminalSize(); in writeTo() local
168 buf += encodeULEB128(terminalSize, buf); in writeTo()
178 *buf++ = 0; // terminalSize in writeTo()
319 uint64_t terminalSize = decodeULEB128(buf, &ulebSize); in parse() local
323 if (terminalSize != 0) { in parse()
327 buf += terminalSize; in parse()