Searched refs:is_negative (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/libxml/src/
H A Dtrionan.c223 int is_negative = TRIO_FALSE; local
226 is_negative |= (((unsigned char *)&number)[TRIO_DOUBLE_INDEX(i)]
229 return is_negative;
561 TRIO_ARGS2((number, is_negative),
563 int *is_negative)
569 *is_negative = signbit(number);
650 *is_negative = TRIO_FALSE; /* NaN has no sign */
653 *is_negative = TRIO_FALSE;
656 *is_negative = TRIO_TRUE;
659 *is_negative
560 trio_fpclassify_and_signbit(number, is_negative), double number, int *is_negative argument
736 int is_negative; local
[all...]
H A Dtrionan.h78 TRIO_PUBLIC int trio_fpclassify_and_signbit TRIO_PROTO((double number, int *is_negative));
/external/libxml2/
H A Dtrionan.c223 int is_negative = TRIO_FALSE; local
226 is_negative |= (((unsigned char *)&number)[TRIO_DOUBLE_INDEX(i)]
229 return is_negative;
561 TRIO_ARGS2((number, is_negative),
563 int *is_negative)
569 *is_negative = signbit(number);
650 *is_negative = TRIO_FALSE; /* NaN has no sign */
653 *is_negative = TRIO_FALSE;
656 *is_negative = TRIO_TRUE;
659 *is_negative
560 trio_fpclassify_and_signbit(number, is_negative), double number, int *is_negative argument
736 int is_negative; local
[all...]
H A Dtrionan.h78 TRIO_PUBLIC int trio_fpclassify_and_signbit TRIO_PROTO((double number, int *is_negative));
/external/chromium_org/v8/src/
H A Dconversions.cc393 bool is_negative = value < 0.0; local
394 if (is_negative) value = -value;
412 if (is_negative) integer_buffer[integer_pos--] = '-';
H A Ddeoptimizer.cc2661 bool is_negative = (value < 0);
2662 uint32_t bits = ((is_negative ? -value : value) << 1) |
2663 static_cast<int32_t>(is_negative);
2685 bool is_negative = (bits & 1) == 1;
2687 return is_negative ? -result : result;
/external/v8/src/
H A Dconversions.cc380 bool is_negative = value < 0.0; local
381 if (is_negative) value = -value;
398 if (is_negative) integer_buffer[integer_pos--] = '-';
H A Ddeoptimizer.cc1295 bool is_negative = (value < 0);
1296 uint32_t bits = ((is_negative ? -value : value) << 1) |
1297 static_cast<int32_t>(is_negative);
1319 bool is_negative = (bits & 1) == 1;
1321 return is_negative ? -result : result;
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc695 bool is_negative = TryConsume("-"); local
707 if (is_negative) {
720 is_negative ? static_cast<uint64>(kint64max) + 1 : kuint64max;
722 if (is_negative) {
733 uninterpreted_option->set_double_value(is_negative ? -value : value);
738 if (is_negative) {
878 bool is_negative = TryConsume("-"); local
881 if (is_negative) number *= -1;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.cc178 bool is_negative = false; local
181 is_negative = true;
186 if (is_negative) value *= -1;
1011 bool is_negative = TryConsume("-"); local
1025 if (is_negative) {
1038 is_negative ? static_cast<uint64>(kint64max) + 1 : kuint64max;
1040 if (is_negative) {
1057 uninterpreted_option->set_double_value(is_negative ? -value : value);
1063 if (is_negative) {
/external/stlport/src/
H A Dnum_put_float.cpp591 bool is_negative() const { function in struct:float_sign_helper
641 if (helper.is_negative())
/external/chromium/testing/gmock/test/
H A Dgmock-matchers_test.cc1149 Matcher<int> is_negative = Lt(0); local
1152 EXPECT_THAT(p, Not(Key(is_negative)));
1265 Matcher<int> is_negative = Lt(0); local
1268 EXPECT_THAT(p, Not(Pair(is_negative, _)));
1270 EXPECT_THAT(p, Not(Pair(_, is_negative)));

Completed in 418 milliseconds