Home
last modified time | relevance | path

Searched refs:Int32Mod (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_deque_stub_builder.h38 return Int32Mod(Int32Add(Int32Sub(last, first), capacity), capacity); in GetSize()
47 GateRef curIndex = Int32Mod(Int32Add(first, index), capacity); in Get()
Dcontainers_queue_stub_builder.h68 GateRef curIndex = Int32Mod(Int32Add(front, index), capacity); in Get()
77 return Int32Mod(Int32Add(index, Int32(1)), elementsSize); in GetNextPosition()
Dcontainers_stub_builder.cpp345 first = Int32Mod(Int32Add(*first, Int32(1)), capacity); in DequeCommonFuncCall()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder-inl.h423 inline GateRef StubBuilder::Int32Mod(GateRef x, GateRef y) in Int32Mod() function
425 return env_->GetBuilder()->Int32Mod(x, y); in Int32Mod()
Dstub_builder.h167 GateRef Int32Mod(GateRef x, GateRef y);
Dcircuit_builder.h65 V(Int32Mod, Smod, MachineType::I32) \
Dstub_builder.cpp4686 result = IntToTaggedPtr(Int32Mod(*intLeft, *intRight)); in FastMod()