Home
last modified time | relevance | path

Searched refs:int_result (Results 1 - 5 of 5) sorted by relevance

/third_party/googletest/googletest/test/
H A Dgoogletest-death-test-test.cc1303 int int_result = 0; in TEST() local
1304 EXPECT_TRUE(ParseNaturalNumber(msg3.GetString(), &int_result)); in TEST()
1305 EXPECT_EQ(INT_MAX, int_result); in TEST()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-regexp-gen.cc643 TNode<IntPtrT> int_result = ChangeInt32ToIntPtr(result); in RegExpExecInternal() local
645 IntPtrEqual(int_result, IntPtrConstant(RegExp::kInternalRegExpSuccess)), in RegExpExecInternal()
648 IntPtrEqual(int_result, IntPtrConstant(RegExp::kInternalRegExpFailure)), in RegExpExecInternal()
650 GotoIf(IntPtrEqual(int_result, in RegExpExecInternal()
654 int_result, in RegExpExecInternal()
658 CSA_DCHECK(this, IntPtrEqual(int_result, in RegExpExecInternal()
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-logic-arm64.cc3160 double int_result = std::floor(value); in FPRoundInt() local
3161 double error = value - int_result; in FPRoundInt()
3167 int_result = -0.0; in FPRoundInt()
3169 } else if ((error > 0.5) || ((error == 0.5) && (int_result >= 0.0))) { in FPRoundInt()
3172 int_result++; in FPRoundInt()
3180 int_result = -0.0; in FPRoundInt()
3185 ((error == 0.5) && (std::fmod(int_result, 2) != 0))) { in FPRoundInt()
3186 int_result++; in FPRoundInt()
3194 int_result = ceil(value); in FPRoundInt()
3206 int_result in FPRoundInt()
3347 double int_result = std::floor(value); FPToFixedJS() local
[all...]
/third_party/vixl/src/aarch64/
H A Dlogic-aarch64.cc4761 double int_result = std::floor(value);
4762 double error = value - int_result;
4764 if ((error != 0.0) && (int_result < 0.0)) {
4765 int_result++;
4773 (int_result / mod_const) - std::floor(int_result / mod_const);
4778 constrained = int_result - mod_const * round(int_result / mod_const);
4788 if ((int_result < INT32_MIN) || (int_result > INT32_MA
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc620 long int_result = PyInt_AsLong(arg); in CheckAndGetInteger() local
621 if (PROTOBUF_PREDICT_TRUE(IsValidNumericCast<T>(int_result))) { in CheckAndGetInteger()
622 *value = static_cast<T>(int_result); in CheckAndGetInteger()

Completed in 26 milliseconds