Searched refs:absolute_value (Results 1 - 5 of 5) 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/chromium_org/third_party/libxml/src/
H A Dxpath.c2718 double absolute_value; local
2721 absolute_value = fabs(number);
2728 if ( ((absolute_value > UPPER_DOUBLE) ||
2729 (absolute_value < LOWER_DOUBLE)) &&
2730 (absolute_value != 0.0) ) {
2741 if (absolute_value > 0.0) {
2742 integer_place = (int)log10(absolute_value);
H A Dxmlschemastypes.c5599 double absolute_value;
5602 absolute_value = fabs(number);
/external/libxml2/
H A Dxpath.c2852 double absolute_value; local
2855 absolute_value = fabs(number);
2862 if ( ((absolute_value > UPPER_DOUBLE) ||
2863 (absolute_value < LOWER_DOUBLE)) &&
2864 (absolute_value != 0.0) ) {
2875 if (absolute_value > 0.0) {
2876 integer_place = (int)log10(absolute_value);
H A Dxmlschemastypes.c5606 double absolute_value;
5609 absolute_value = fabs(number);

Completed in 2845 milliseconds