Lines Matching defs:maximum
523 throw new Error("Leb value exceeds maximum length of " + max_len);
790 addImportedMemory(module, name, initial = 0, maximum, shared) {
792 initial: initial, maximum: maximum, shared: shared};
797 addImportedTable(module, name, initial, maximum, type) {
802 maximum: maximum, type: type || kWasmAnyFunctionTypeForm};
926 var has_max = (typeof imp.maximum) != "undefined";
934 if (has_max) section.emit_u32v(imp.maximum); // maximum
937 var has_max = (typeof imp.maximum) != "undefined";
940 if (has_max) section.emit_u32v(imp.maximum); // maximum
1301 'Leb value <' + val + '> exceeds maximum length of ' + max_len);