Lines Matching refs:total_length
1108 // Writes the total length of decoded locals in {total_length}.
1111 int DecodeLocals(const byte* pc, uint32_t* total_length,
1114 *total_length = 0;
1125 DecodeError(pc + *total_length, "invalid local decls count");
1128 *total_length += length;
1139 read_u32v<validate>(pc + *total_length, &length, "local count");
1141 DecodeError(pc + *total_length, "invalid local count");
1146 DecodeError(pc + *total_length, "local count too large");
1149 *total_length += length;
1152 this, pc + *total_length, &length, this->module_, enabled_);
1154 *total_length += length;