Lines Matching full:ret
46 double ret = a0Double + a1Double; in AddWithTSType() local
47 return JSTaggedValue(ret); in AddWithTSType()
70 … EcmaString *ret = EcmaStringAccessor::Concat(thread->GetEcmaVM(), stringA0, stringA1); in AddWithTSType() local
71 return JSTaggedValue(ret); in AddWithTSType()
80 … EcmaString *ret = EcmaStringAccessor::Concat(thread->GetEcmaVM(), stringA0, stringA1); in AddWithTSType() local
81 return JSTaggedValue(ret); in AddWithTSType()
85 … EcmaString *ret = EcmaStringAccessor::Concat(thread->GetEcmaVM(), stringA0, stringA1); in AddWithTSType() local
86 return JSTaggedValue(ret); in AddWithTSType()
110 double ret = a0Double - a1Double; in SubWithTSType() local
111 return JSTaggedValue(ret); in SubWithTSType()
121 auto ret = number0 - number1; in SubWithTSType() local
122 return JSTaggedValue(ret); in SubWithTSType()
293 auto ret = in ShlWithTSType() local
295 return JSTaggedValue(ret); in ShlWithTSType()
308 auto ret = static_cast<int32_t>(opNumber0 >> shift); // NOLINT(hicpp-signed-bitwise) in ShrWithTSType() local
309 return JSTaggedValue(ret); in ShrWithTSType()
323 auto ret = in AshrWithTSType() local
325 return JSTaggedValue(ret); in AshrWithTSType()
337 auto ret = static_cast<uint32_t>(opNumber0) & static_cast<uint32_t>(opNumber1); in AndWithTSType() local
338 return JSTaggedValue(ret); in AndWithTSType()
350 auto ret = static_cast<uint32_t>(opNumber0) | static_cast<uint32_t>(opNumber1); in OrWithTSType() local
351 return JSTaggedValue(ret); in OrWithTSType()
363 auto ret = static_cast<uint32_t>(opNumber0) ^ static_cast<uint32_t>(opNumber1); in XorWithTSType() local
364 return JSTaggedValue(ret); in XorWithTSType()