Home
last modified time | relevance | path

Searched refs:table_count (Results 1 – 3 of 3) sorted by relevance

/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gxvalid/
Dgxvmod.c81 if ( ( FT_VALIDATE_ ## _sfnt ## _INDEX < table_count ) && \
103 if ( FT_VALIDATE_ ## _sfnt ## _INDEX < table_count ) \
111 FT_UInt table_count ) in gxv_validate() argument
132 for ( i = 0; i < table_count; i++ ) in gxv_validate()
/external/v8/src/wasm/
Dast-decoder.cc398 uint16_t table_count = *reinterpret_cast<const uint16_t*>(pc_ + 3); in DecodeFunctionBody() local
399 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() local
809 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 …]
Dwasm-macro-gen.h36 #define WASM_TABLESWITCH_OP(case_count, table_count, ...) \ argument
38 static_cast<byte>(case_count >> 8), static_cast<byte>(table_count), \
39 static_cast<byte>(table_count >> 8), __VA_ARGS__