Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.h90 static bool LessThan(const JSTaggedValue &x, const JSTaggedValue &y);
171 static bool LessThan(const BigInt *x, const BigInt *y);
Djs_bigint.cpp811 bool BigInt::LessThan(const JSTaggedValue &x, const JSTaggedValue &y) in LessThan() function in panda::ecmascript::BigInt
816 bool BigInt::LessThan(const BigInt *x, const BigInt *y) in LessThan() function in panda::ecmascript::BigInt
Djs_tagged_value-inl.h178 if (!BigInt::LessThan(int64bitVal.GetTaggedValue(), resValue.GetTaggedValue())) { in ToBigInt64()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp825 LessThan(node, lhs); in Condition()
910 LessThan(node, lhs); in Binary()
1019 void PandaGen::LessThan(const ir::AstNode *node, VReg lhs) in LessThan() function in panda::es2panda::compiler::PandaGen
Dpandagen.h338 void LessThan(const ir::AstNode *node, VReg lhs);
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter-inl.h1810 bool result = BigInt::LessThan(left, right); in RunInternal()
1834 bool result = BigInt::LessThan(left, right) || BigInt::Equal(left, right); in RunInternal()
1859 bool result = BigInt::LessThan(right, left); in RunInternal()
1884 bool result = BigInt::LessThan(right, left) || BigInt::Equal(right, left); in RunInternal()
Dinterpreter_assembly.cpp1132 bool result = BigInt::LessThan(left, right); in HandleLessImm8V8()
1164 bool result = BigInt::LessThan(left, right) || BigInt::Equal(left, right); in HandleLesseqImm8V8()
1197 bool result = BigInt::LessThan(right, left); in HandleGreaterImm8V8()
1230 bool result = BigInt::LessThan(right, left) || BigInt::Equal(right, left); in HandleGreatereqImm8V8()