Searched refs:LessThan (Results 1 – 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_bigint.h | 90 static bool LessThan(const JSTaggedValue &x, const JSTaggedValue &y); 171 static bool LessThan(const BigInt *x, const BigInt *y);
|
D | js_bigint.cpp | 811 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
|
D | js_tagged_value-inl.h | 178 if (!BigInt::LessThan(int64bitVal.GetTaggedValue(), resValue.GetTaggedValue())) { in ToBigInt64()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | pandagen.cpp | 825 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
|
D | pandagen.h | 338 void LessThan(const ir::AstNode *node, VReg lhs);
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
D | interpreter-inl.h | 1810 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()
|
D | interpreter_assembly.cpp | 1132 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()
|