Home
last modified time | relevance | path

Searched full:mod (Results 1 – 25 of 65) sorted by relevance

123

/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dmod.yaml16 - file-name: "mod"
24 - sig: mod v1:in:i32, v2:in:i32
31 mod v0, v1
39 description: Check mod with zero and various values.
53 - sig: mod v1:in:i32, v2:in:i32
60 mod v0, v1
68 description: Check mod with +1 and various values.
82 - sig: mod v1:in:i32, v2:in:i32
89 mod v0, v1
97 description: Check mod with -1 and various values.
[all …]
Dfmod2.yaml158 # Mod of +Inf and value
215 # Mod of -Inf and value
296 # Mod of +0.0 and value
354 # Mod of -0.0 and value
414 # Mod of 1.0 and value
473 # Mod of -1.0 and value
532 # Mod of -1.0 and value
597 # Mod of two values
646 # Mod of -1.0 and value
Dfmod2.64.yaml158 # Mod of +Inf and value
215 # Mod of -Inf and value
296 # Mod of +0.0 and value
354 # Mod of -0.0 and value
414 # Mod of 1.0 and value
473 # Mod of -1.0 and value
532 # Mod of -1.0 and value
597 # Mod of two values
646 # Mod of -1.0 and value
/arkcompiler/runtime_core/irtoc/lang/
Dinstruction.rb53 def has_modifier?(mod) argument
54 @modifiers.any? { |x| x[0] == mod}
131 @modifiers.each do |mod|
132 ss += ".#{modifier_to_s(mod)}"
210 index = @modifiers.detect {|mod| mod[0] == :TypeId}[1][0]
224 intrinsic_id = @modifiers.detect {|mod| mod[0] == :IntrinsicId}[1][0]
243 def modifier_to_s(mod) argument
244 "#{mod[0]}(#{mod[1].join(', ')})"
275 @modifiers.each do |mod|
278 mod[0] = 'SetOperandsType' if mod[0] == :SrcType
[all …]
Dir_generator.rb101 index = inst.modifiers.detect {|mod| mod[0] == :TypeId}[1][0]
/arkcompiler/runtime_core/docs/
DPBC2IR.md82 | fmod2 | f32 Mod |
83 | fmod2.64 | f64 Mod |
86 | mod2 | i32 Mod |
87 | mod2.64 | i64 Mod |
91 | modu2.64 | u64 Mod |
102 | modi | i64 Constant, i32 Mod |
113 | mod | i32 Mod |
/arkcompiler/runtime_core/verification/util/tests/
Dfunction_traits_test.cpp39 int mod; member
40 explicit mult_by_mod(int module) : mod {module} {} in mult_by_mod()
43 return (x * y) % mod; in operator ()()
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-class-1/
Dbase.js26 constructor(brand, mod) { argument
28 this.model = mod;
Dbase_mod.js28 constructor(brand, mod) { argument
30 this.model = mod;
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-class-1/
Dbase.js26 constructor(brand, mod) { argument
28 this.model = mod;
Dbase_mod.js28 constructor(brand, mod) { argument
30 this.model = mod;
/arkcompiler/runtime_core/tests/cts-assembly/
Dmath-48.pa21 # check ArithmeticException in case of mod by zero
27 mod v0, v1
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Dlib_call_inst.h30 if (opcode == Opcode::Mod) { in HasLibCall()
36 if (opcode == Opcode::Mod) { in HasLibCall()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_bigint.cpp77 // 3. Let mod be ℝ(bigint) modulo 2bits. in AsIntN()
78 // 4. If mod ≥ 2bits - 1, return ℤ(mod - 2bits); otherwise, return ℤ(mod). in AsIntN()
/arkcompiler/ets_runtime/test/deopttest/mod/
DBUILD.gn16 host_aot_test_action("mod") {
/arkcompiler/ets_runtime/test/aottest/mod/
DBUILD.gn16 host_aot_test_action("mod") {
/arkcompiler/ets_frontend/ts2panda/src/base/
Dutil.ts57 node.modifiers.forEach((mod) => {
58 if (mod.kind == ts.SyntaxKind.ExportKeyword) {
70 node.modifiers.forEach((mod) => {
71 if (mod.kind == ts.SyntaxKind.DefaultKeyword) {
/arkcompiler/ets_runtime/ecmascript/compiler/
Doperations_stub_builder.h47 GateRef Mod(GateRef glue, GateRef left, GateRef right);
Dcommon_stubs.h28 V(Mod) \
/arkcompiler/runtime_core/disassembler/tests/sources/
Dinstructions.pa122 mod v1, v2
/arkcompiler/ets_frontend/ts2panda/src/
Drecorder.ts526 // export * as m from "mod";
530 // export {} from "mod";
533 // export {x} from "mod";
534 // export {v as x} from "mod";
542 // export * from "mod";
/arkcompiler/ets_runtime/test/aottest/
DBUILD.gn109 "mod:modAotAction",
/arkcompiler/runtime_core/runtime/bridge/arch/x86/
Dinterpreter_to_compiled_code_bridge_x86.S119 // %esp % 16 == 12 here (-4 == 12 (mod 16))
301 // %esp % 16 == 12 here (-4 == 12 (mod 16))
/arkcompiler/ets_runtime/ecmascript/
Djs_date.cpp36 …(*date)[HOUR] = Mod(timeMs, MS_PER_DAY); // ms from hour, minutes,… in TransferTimeToDate()
44 (*date)[WEEKDAY] = Mod(((*date)[DAYS] + LEAP_NUMBER[0]), DAY_PER_WEEK); // weekday in TransferTimeToDate()
124 int64_t DateUtils::Mod(int64_t a, int b) in Mod() function in panda::ecmascript::DateUtils
888 int64_t month = DateUtils::Mod((*date)[MONTH], MONTH_PER_YEAR); in SetDateValues()
910 int64_t m = DateUtils::Mod(month, MONTH_PER_YEAR); in SetDateValues()
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml19 % opc = opc[1].capitalize.gsub('Ashr', 'AShr').gsub('Fdiv', 'Div').gsub('Fmod', 'Mod')
24 % opc = inst.stripped_mnemonic =~ /div/ ? 'Div' : 'Mod'

123