Lines Matching full:table
5 static __externref_t table[0]; variable
14 …table_size(1); // expected-error {{1st argument must be a WebAssembly table}} in test_table_size()
15 …table_size(ref); // expected-error {{1st argument must be a WebAssembly table}} in test_table_size()
16 …table_size(ptr); // expected-error {{1st argument must be a WebAssembly table}} in test_table_size()
17 …table_size(arr); // expected-error {{1st argument must be a WebAssembly table}} in test_table_size()
18 …__builtin_wasm_table_size(table, table); // expected-error {{too many arguments to func… in test_table_size()
20 _Static_assert(EXPR_HAS_TYPE(__builtin_wasm_table_size(table), unsigned long), ""); in test_table_size()
25 …__builtin_wasm_table_grow(table, table, table, table); // expected-error {{too many arguments to f… in test_table_grow()
26 …le_grow(ref, ref, size); // expected-error {{1st argument must be a WebAssembly table}} in test_table_grow()
27 …in_wasm_table_grow(table, table, size); // expected-error {{2nd argument must match the el… in test_table_grow()
28 …__builtin_wasm_table_grow(table, ref, table); // expected-error {{3rd argument must be an… in test_table_grow()
30 _Static_assert(EXPR_HAS_TYPE(__builtin_wasm_table_grow(table, ref, size), int), ""); in test_table_grow()
35 …__builtin_wasm_table_fill(table, table, table, table, table); // expected-error {{too many argume… in test_table_fill()
36 …index, index, ref, nelem); // expected-error {{1st argument must be a WebAssembly table}} in test_table_fill()
37 …__builtin_wasm_table_fill(table, table, ref, nelem); // expected-error {{2nd argument mu… in test_table_fill()
38 …asm_table_fill(table, index, index, ref); // expected-error {{3rd argument must match th… in test_table_fill()
39 …__builtin_wasm_table_fill(table, index, ref, table); // expected-error {{4th argument mu… in test_table_fill()
40 __builtin_wasm_table_fill(table, index, ref, nelem); in test_table_fill()
45 …__builtin_wasm_table_copy(table, table, table, table, table, table); // expected-error {{too many … in test_table_copy()
46 …tin_wasm_table_copy(src_idx, table, dst_idx, src_idx, nelem); // expected-error {{1st argument mu… in test_table_copy()
47 …_builtin_wasm_table_copy(table, src_idx, dst_idx, src_idx, nelem); // expected-error {{2nd argume… in test_table_copy()
48 …__builtin_wasm_table_copy(table, table, table, src_idx, nelem); // expected-error {{3rd argum… in test_table_copy()
49 …__builtin_wasm_table_copy(table, table, dst_idx, table, nelem); // expected-error {{4th argum… in test_table_copy()
50 …__builtin_wasm_table_copy(table, table, dst_idx, src_idx, table); // expected-error {{5th argum… in test_table_copy()
51 __builtin_wasm_table_copy(table, table, dst_idx, src_idx, nelem); in test_table_copy()