Home
last modified time | relevance | path

Searched refs:leftVal (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/tests/expression/
DtemplateExpression.test.ts44 function microCreateAddInsns(leftVal: number, rightVal: number, icSize: number): { insns: any[]; ne…
48 insns.push(new Ldai(new Imm(leftVal)));
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.h114 …static JSHandle<BigInt> FloorMod(JSThread *thread, JSHandle<BigInt> leftVal, JSHandle<BigInt> righ…
Djs_bigint.cpp1471 JSHandle<BigInt> BigInt::FloorMod(JSThread *thread, JSHandle<BigInt> leftVal, JSHandle<BigInt> righ… in FloorMod() argument
1473 JSHandle<BigInt> remainder = Remainder(thread, leftVal, rightVal); in FloorMod()
1475 if (leftVal->GetSign() && !remainder->IsZero()) { in FloorMod()