Searched full:fmod (Results 1 – 19 of 19) sorted by relevance
| /arkcompiler/runtime_core/tests/regression/ |
| D | fmod.pa | 14 # 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/ |
| D | get_intrinsics.inl.erb | 63 return reinterpret_cast<uintptr_t>(static_cast<fp>(fmod));
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | inst_templates.yaml | 16 % 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/ |
| D | ic_binary_op.h | 226 return JSTaggedValue(std::fmod(dLeft, dRight)); in ModWithTSType() 245 return JSTaggedValue(std::fmod(dLeft, dRight)); in ModWithTSType()
|
| /arkcompiler/ets_runtime/ecmascript/interpreter/ |
| D | fast_runtime_stub-inl.h | 84 return JSTaggedValue(std::fmod(dLeft, dRight)); in FastMod()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | gate_meta_data.h | 206 … V(Fmod, FMOD, GateFlags::NONE_FLAG, 0, 0, 2) \
|
| D | gate.cpp | 138 case OpCode::FMOD: in CheckValueInput()
|
| D | circuit_ir_specification.md | 352 * **FMOD**: returns the remainder from the division of its two floating-point operands.
|
| D | llvm_ir_builder.cpp | 196 {OpCode::FMOD, &LLVMIRBuilder::HandleMod}, in InitializeHandlers()
|
| /arkcompiler/runtime_core/compiler/optimizer/templates/ |
| D | inst_builder_gen.cpp.erb | 106 /(fdiv|fmod|add|sub|mul|and|or|xor|ashr|shr|shl|neg|not)[2i]?$/ => "binop",
|
| /arkcompiler/ets_frontend/es2panda/ir/ts/ |
| D | tsEnumDeclaration.cpp | 191 return std::fmod(std::get<double>(left), std::get<double>(right)); in EvaluateBinaryExpression()
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | number_helper.cpp | 271 double remainder = std::fmod(number, radix); in IntegerToString()
|
| /arkcompiler/runtime_core/tests/ |
| D | CMakeLists.txt | 878 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/regression/fmod.pa" COMPILER_OPTIONS --compiler-inl…
|
| /arkcompiler/toolchain/build/third_party_gn/musl/ |
| D | musl_src.gni | 673 "src/math/fmod.c",
|
| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stubs.cpp | 2142 return std::fmod(x, y); in FloatMod()
|
| D | runtime_stubs-inl.h | 1664 return JSTaggedValue(std::fmod(dLeft, dRight)); in RuntimeMod2()
|
| /arkcompiler/runtime_core/compiler/tests/amd64/ |
| D | encoder64_test.cpp | 2755 if (!test->CallCode<T>(tmp1, tmp2, fmod(tmp1, tmp2))) { in TestMod()
|
| /arkcompiler/runtime_core/compiler/tests/aarch32/ |
| D | encoder32_test.cpp | 2772 if (!test->CallCode<T>(tmp1, tmp2, fmod(tmp1, tmp2))) { in TestMod()
|
| /arkcompiler/runtime_core/compiler/tests/aarch64/ |
| D | encoder64_test.cpp | 2873 if (!test->CallCode<T>(tmp1, tmp2, fmod(tmp1, tmp2))) { in TestMod()
|