Searched refs:assert (Results 1 – 25 of 59) sorted by relevance
123
/ark/runtime_core/isa/ |
D | asserts.rb | 14 def assert(name) method 33 assert('Unique opcodes') { Panda.instructions.map(&:opcode).uniq? } 35 assert('Non-prefixed instruction opcodes and prefixes should fit one byte') do 39 assert('Non-prefixed instruction opcode indexes are sorted') do 43 assert('Prefix opcode indexes are sorted') do 47 assert('All instructions for a prefix should fit one byte') do 53 assert('Prefixed instruction should have some prefix specified') do 59 assert('Prefix should be defined') do 67 assert('All prefixes should have unique name') do 71 assert('There should be non-zero gap between non-prefixed and prefixes') do [all …]
|
D | gen.rb | 77 if options.assert 78 require options.assert
|
/ark/ts2abc/ts2panda/ |
D | ts2abc_config.gni | 68 assert(defined(invoker.plugin_path), "plugin_path is required!") 69 assert(defined(invoker.plugin_name), "plugin_name is required!") 70 assert(defined(invoker.generat_file), "generat_file is required!") 71 assert(defined(invoker.package_name), "package_name is required!") 72 assert(defined(invoker.out_puts), "out_puts is required!") 112 assert(defined(invoker.src_js), "src_js is required!") 113 assert(defined(invoker.dst_file), "dst_file is required!") 114 assert(defined(invoker.out_puts), "out_puts is required!") 194 assert(defined(invoker.js_file), "js_file is required!")
|
/ark/runtime_core/gn/build/toolchain/ |
D | BUILD.gn | 15 assert(defined(invoker.ar)) 16 assert(defined(invoker.cc)) 17 assert(defined(invoker.cxx)) 18 assert(defined(invoker.ld))
|
/ark/runtime_core/tests/cts-assembly/ |
D | intrinsics-20.pa | 15 .function void System.assert(u1 a0) <external> 19 call.short System.assert, v0, v0
|
D | math-07.pa | 14 # assert(7 shli 2 == 28) operation --> shli
|
D | math-21.pa | 14 # assert(5 + 7 == 12) operation --> and2.64
|
D | math-13.pa | 14 # assert(6 && 2 == 6) operation --> and
|
D | math-09.pa | 14 # assert(151 ashri 1 == 71) operation --> ashri
|
D | math-28.pa | 14 # assert(7 xor 5 == 2) operation --> xor2.64
|
D | math-03.pa | 14 # assert(2 * 3 == 6) operation --> muli
|
D | math-10.pa | 14 # assert(7 + 6 == 13) operation --> and
|
D | math-31.pa | 14 # assert(151 ashr 1 == 75) operation --> ashr2.64
|
D | math-30.pa | 14 # assert(25 << 2 == 100) operation --> shl2.64
|
D | math-08.pa | 14 # assert(28 shri 2 == 7) operation --> shri
|
D | math-24.pa | 14 # assert(5 * 7 == 35) operation --> mul2.64
|
D | math-12.pa | 14 # assert(6 * 7 == 42) operation --> mul
|
D | math-01.pa | 14 # assert(1 + 2 == 3) operation --> andi
|
D | math-32.pa | 14 # assert(5 - 2 == 3) operation --> sub2.64
|
D | math-11.pa | 14 # assert(7 - 6 == 1) operation --> sub
|
D | math-29.pa | 14 # assert(100 >> 2 == 25) operation --> shr2.64
|
D | math-35.pa | 14 # assert(not(1) == -2) operation --> not.64
|
/ark/js_runtime/ |
D | js_runtime_config.gni | 34 assert(defined(invoker.data_file), "data_file is required!") 35 assert(defined(invoker.template_file), "template_file is required!") 36 assert(defined(invoker.output_file), "output_file is required!")
|
/ark/runtime_core/ |
D | ark_config.gni | 59 assert(defined(invoker.data_file), "data_file is required!") 60 assert(defined(invoker.template_file), "template_file is required!") 61 assert(defined(invoker.output_file), "output_file is required!") 111 assert(defined(invoker.data), "data were not passed to ark_gen") 112 assert(defined(invoker.template_files),
|
/ark/runtime_core/gn/ark/runtime/ |
D | ark_config.gni | 59 assert(defined(invoker.data_file), "data_file is required!") 60 assert(defined(invoker.template_file), "template_file is required!") 61 assert(defined(invoker.output_file), "output_file is required!") 111 assert(defined(invoker.data), "data were not passed to ark_gen") 112 assert(defined(invoker.template_files),
|
123