Searched refs:absolute_value (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cc44 static int AppendNumber(char **buff, const char *buff_end, u64 absolute_value, argument
50 RAW_CHECK(absolute_value || !negative);
61 num_buffer[pos++] = absolute_value % base;
62 absolute_value /= base;
63 } while (absolute_value > 0);
/external/libxml2/
H A Dxpath.c3143 double absolute_value; local
3146 absolute_value = fabs(number);
3153 if ( ((absolute_value > UPPER_DOUBLE) ||
3154 (absolute_value < LOWER_DOUBLE)) &&
3155 (absolute_value != 0.0) ) {
3166 if (absolute_value > 0.0) {
3167 integer_place = (int)log10(absolute_value);
H A Dxmlschemastypes.c5624 double absolute_value;
5627 absolute_value = fabs(number);

Completed in 187 milliseconds