Searched refs:table_count (Results 1 – 3 of 3) sorted by relevance
81 if ( ( FT_VALIDATE_ ## _sfnt ## _INDEX < table_count ) && \103 if ( FT_VALIDATE_ ## _sfnt ## _INDEX < table_count ) \111 FT_UInt table_count ) in gxv_validate() argument132 for ( i = 0; i < table_count; i++ ) in gxv_validate()
398 uint16_t table_count = *reinterpret_cast<const uint16_t*>(pc_ + 3); in DecodeFunctionBody() local399 len = 5 + table_count * 2; in DecodeFunctionBody()401 if (table_count == 0) { in DecodeFunctionBody()414 for (int i = 0; i < table_count; i++) { in DecodeFunctionBody()808 uint16_t table_count = *reinterpret_cast<const uint16_t*>(p->pc() + 3); in Reduce() local809 if (table_count == 1) { in Reduce()830 TFNode* sw = BUILD(Switch, table_count, p->last()->node); in Reduce()848 for (int i = 0; i < table_count; i++) { in Reduce()851 env->control = (i == table_count - 1) ? BUILD(IfDefault, sw) in Reduce()1505 uint16_t table_count = *reinterpret_cast<const uint16_t*>(pc + 3); in OpcodeLength() local[all …]
36 #define WASM_TABLESWITCH_OP(case_count, table_count, ...) \ argument38 static_cast<byte>(case_count >> 8), static_cast<byte>(table_count), \39 static_cast<byte>(table_count >> 8), __VA_ARGS__