Searched refs:table_get (Results 1 – 6 of 6) sorted by relevance
/third_party/node/deps/v8/third_party/wasm-api/example/ |
D | hostref.c | 191 wasm_func_t* table_get = get_export_func(&exports, i++); in main() local 237 check(call_i_r(table_get, 0), NULL); in main() 238 check(call_i_r(table_get, 1), NULL); in main() 241 check(call_i_r(table_get, 0), host1); in main() 242 check(call_i_r(table_get, 1), host2); in main() 244 check(call_i_r(table_get, 0), NULL); in main() 248 check(call_i_r(table_get, 2), host1); in main()
|
D | hostref.cc | 166 auto table_get = get_export_func(exports, i++); in run() local 203 check(call_i_r(table_get, 0), nullptr); in run() 204 check(call_i_r(table_get, 1), nullptr); in run() 207 check(call_i_r(table_get, 0), host1.get()); in run() 208 check(call_i_r(table_get, 1), host2.get()); in run() 210 check(call_i_r(table_get, 0), nullptr); in run() 214 check(call_i_r(table_get, 2), host1.get()); in run()
|
/third_party/ltp/lib/ |
D | tst_cmd.c | 234 int (*table_get)(char *version); member 299 ver_get = p->table_get(version_token); in tst_check_cmd()
|
/third_party/qrcodegen/rust/src/ |
D | lib.rs | 522 let numblocks: usize = QrCode::table_get(&NUM_ERROR_CORRECTION_BLOCKS, ver, ecl); in add_ecc_and_interleave() 523 let blockecclen: usize = QrCode::table_get(&ECC_CODEWORDS_PER_BLOCK , ver, ecl); in add_ecc_and_interleave() 738 - QrCode::table_get(&ECC_CODEWORDS_PER_BLOCK , ver, ecl) in get_num_data_codewords() 739 * QrCode::table_get(&NUM_ERROR_CORRECTION_BLOCKS, ver, ecl) in get_num_data_codewords() 744 fn table_get(table: &'static [[i8; 41]; 4], ver: Version, ecl: QrCodeEcc) -> usize { in table_get() method
|
/third_party/qrcodegen/rust-no-heap/src/ |
D | lib.rs | 447 let numblocks: usize = QrCode::table_get(&NUM_ERROR_CORRECTION_BLOCKS, ver, ecl); in add_ecc_and_interleave() 448 let blockecclen: usize = QrCode::table_get(&ECC_CODEWORDS_PER_BLOCK , ver, ecl); in add_ecc_and_interleave() 835 - QrCode::table_get(&ECC_CODEWORDS_PER_BLOCK , ver, ecl) in get_num_data_codewords() 836 * QrCode::table_get(&NUM_ERROR_CORRECTION_BLOCKS, ver, ecl) in get_num_data_codewords() 841 fn table_get(table: &'static [[i8; 41]; 4], ver: Version, ecl: QrCodeEcc) -> usize { in table_get() method
|
/third_party/ltp/doc/ |
D | c-test-api.txt | 2034 If you want to support more commands, please fill your own .parser and .table_get
|