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

/external/curl/lib/
H A Dstrtoofft.c58 int is_negative = 0; local
72 is_negative = 1;
124 if(is_negative) {
130 if(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/libpng/contrib/intel/
H A Dfilter_sse2_intrinsics.c154 __m128i is_negative = _mm_cmplt_epi16(x, _mm_setzero_si128());
157 x = _mm_xor_si128(x, is_negative);
160 x = _mm_add_epi16(x, _mm_srli_epi16(is_negative, 15));
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc178 bool is_negative = false; local
181 is_negative = true;
186 if (is_negative) value *= -1;
1070 bool is_negative = TryConsume("-"); local
1084 if (is_negative) {
1097 is_negative ? static_cast<uint64>(kint64max) + 1 : kuint64max;
1099 if (is_negative) {
1116 uninterpreted_option->set_double_value(is_negative ? -value : value);
1122 if (is_negative) {
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec.cpp176 int e_number = 0, e_signal = 0, e_point = 0, is_negative = 0; local
206 is_negative = 1;
257 return is_negative ? -ret : ret;
/external/v8/src/
H A Dconversions.cc433 bool is_negative = value < 0.0; local
434 if (is_negative) value = -value;
452 if (is_negative) integer_buffer[integer_pos--] = '-';
H A Ddeoptimizer.cc2178 bool is_negative = (value < 0); local
2179 uint32_t bits = ((is_negative ? -value : value) << 1) |
2180 static_cast<int32_t>(is_negative);
2202 bool is_negative = (bits & 1) == 1; local
2204 return is_negative ? -result : result;
/external/libpng/contrib/libtests/
H A Dtarith.c317 int is_negative; /* Number is negative */ member in struct:__anon10678
341 c.is_negative = 1;
383 (number_is_valid && !c.is_zero && c.is_negative))
396 (number_is_valid && !c.is_zero && !c.is_negative))
592 control.is_negative = 0;
/external/valgrind/coregrind/
H A Dm_debuglog.c1077 Bool is_negative = False; local
1081 is_negative = True;
1125 if (is_negative) ++num_digit;
1138 if (is_negative) {
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc1197 Matcher<int> is_negative = Lt(0); local
1200 EXPECT_THAT(p, Not(Key(is_negative)));
1313 Matcher<int> is_negative = Lt(0); local
1316 EXPECT_THAT(p, Not(Pair(is_negative, _)));
1318 EXPECT_THAT(p, Not(Pair(_, is_negative)));
/external/gmock/test/
H A Dgmock-matchers_test.cc1266 Matcher<int> is_negative = Lt(0); local
1269 EXPECT_THAT(p, Not(Key(is_negative)));
1382 Matcher<int> is_negative = Lt(0); local
1385 EXPECT_THAT(p, Not(Pair(is_negative, _)));
1387 EXPECT_THAT(p, Not(Pair(_, is_negative)));

Completed in 468 milliseconds