Searched refs:LessThan (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_bigint.h | 90 static bool LessThan(const JSTaggedValue &x, const JSTaggedValue &y); 177 static bool LessThan(const BigInt *x, const BigInt *y);
|
H A D | js_bigint.cpp | 858 bool BigInt::LessThan(const JSTaggedValue &x, const JSTaggedValue &y) in LessThan() function in panda::ecmascript::BigInt 863 bool BigInt::LessThan(const BigInt *x, const BigInt *y) in LessThan() function in panda::ecmascript::BigInt
|
H A D | js_tagged_value.cpp | 180 if (!BigInt::LessThan(int64bitVal.GetTaggedValue(), resValue.GetTaggedValue())) { in ToBigInt64()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
H A D | pandagen.cpp | 886 LessThan(node, lhs); in Condition() 971 LessThan(node, lhs); in Binary() 1080 void PandaGen::LessThan(const ir::AstNode *node, VReg lhs) in LessThan() function in panda::es2panda::compiler::PandaGen
|
H A D | pandagen.h | 321 void LessThan(const ir::AstNode *node, VReg lhs);
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | interpreter-inl.cpp | 1885 bool result = BigInt::LessThan(left, right); in RunInternal() 1909 bool result = BigInt::LessThan(left, right) || BigInt::Equal(left, right); in RunInternal() 1934 bool result = BigInt::LessThan(right, left); in RunInternal() 1959 bool result = BigInt::LessThan(right, left) || BigInt::Equal(right, left); in RunInternal()
|
H A D | interpreter_assembly.cpp | 1163 bool result = BigInt::LessThan(left, right); in HandleLessImm8V8() 1195 bool result = BigInt::LessThan(left, right) || BigInt::Equal(left, right); 1228 bool result = BigInt::LessThan(right, left); 1261 bool result = BigInt::LessThan(right, left) || BigInt::Equal(right, left);
|
Completed in 33 milliseconds