Home
last modified time | relevance | path

Searched full:fmod (Results 1 – 19 of 19) sorted by relevance

/arkcompiler/runtime_core/tests/regression/
Dfmod.pa14 # fmod(a0, a1) == a2
15 .function i32 fmod(f64 a0, f64 a1, f64 a2) {
26 call fmod, v0, v1, v2
32 call fmod, v0, v1, v2
38 call fmod, v0, v1, v2
44 call fmod, v0, v1, v2
50 call fmod, v0, v1, v2
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/
Dget_intrinsics.inl.erb63 return reinterpret_cast<uintptr_t>(static_cast<fp>(fmod));
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml16 % regex_arithm = /(fdiv|fmod|add|sub|mul|and|or|xor|ashr|shr|shl|neg|not)[2i]?/
19 % opc = opc[1].capitalize.gsub('Ashr', 'AShr').gsub('Fdiv', 'Div').gsub('Fmod', 'Mod')
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_binary_op.h226 return JSTaggedValue(std::fmod(dLeft, dRight)); in ModWithTSType()
245 return JSTaggedValue(std::fmod(dLeft, dRight)); in ModWithTSType()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dfast_runtime_stub-inl.h84 return JSTaggedValue(std::fmod(dLeft, dRight)); in FastMod()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dgate_meta_data.h206 … V(Fmod, FMOD, GateFlags::NONE_FLAG, 0, 0, 2) \
Dgate.cpp138 case OpCode::FMOD: in CheckValueInput()
Dcircuit_ir_specification.md352 * **FMOD**: returns the remainder from the division of its two floating-point operands.
Dllvm_ir_builder.cpp196 {OpCode::FMOD, &LLVMIRBuilder::HandleMod}, in InitializeHandlers()
/arkcompiler/runtime_core/compiler/optimizer/templates/
Dinst_builder_gen.cpp.erb106 /(fdiv|fmod|add|sub|mul|and|or|xor|ashr|shr|shl|neg|not)[2i]?$/ => "binop",
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsEnumDeclaration.cpp191 return std::fmod(std::get<double>(left), std::get<double>(right)); in EvaluateBinaryExpression()
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp271 double remainder = std::fmod(number, radix); in IntegerToString()
/arkcompiler/runtime_core/tests/
DCMakeLists.txt878 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/regression/fmod.pa" COMPILER_OPTIONS --compiler-inl…
/arkcompiler/toolchain/build/third_party_gn/musl/
Dmusl_src.gni673 "src/math/fmod.c",
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp2142 return std::fmod(x, y); in FloatMod()
Druntime_stubs-inl.h1664 return JSTaggedValue(std::fmod(dLeft, dRight)); in RuntimeMod2()
/arkcompiler/runtime_core/compiler/tests/amd64/
Dencoder64_test.cpp2755 if (!test->CallCode<T>(tmp1, tmp2, fmod(tmp1, tmp2))) { in TestMod()
/arkcompiler/runtime_core/compiler/tests/aarch32/
Dencoder32_test.cpp2772 if (!test->CallCode<T>(tmp1, tmp2, fmod(tmp1, tmp2))) { in TestMod()
/arkcompiler/runtime_core/compiler/tests/aarch64/
Dencoder64_test.cpp2873 if (!test->CallCode<T>(tmp1, tmp2, fmod(tmp1, tmp2))) { in TestMod()