Searched refs:quo (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3609 INTERCEPTOR(double, remquo, double x, double y, int *quo) {
3611 COMMON_INTERCEPTOR_ENTER(ctx, remquo, x, y, quo);
3615 double res = REAL(remquo)(x, y, quo);
3616 if (quo) COMMON_INTERCEPTOR_WRITE_RANGE(ctx, quo, sizeof(*quo));
3619 INTERCEPTOR(float, remquof, float x, float y, int *quo) {
3621 COMMON_INTERCEPTOR_ENTER(ctx, remquof, x, y, quo);
3625 float res = REAL(remquof)(x, y, quo);
3626 if (quo) COMMON_INTERCEPTOR_WRITE_RANG
[all...]
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc1660 int quo; local
1661 double res = remquo(29.0, 3.0, &quo);
1663 EXPECT_NOT_POISONED(quo);
1667 int quo; local
1668 float res = remquof(29.0, 3.0, &quo);
1670 EXPECT_NOT_POISONED(quo);
1674 int quo; local
1675 long double res = remquof(29.0, 3.0, &quo);
1677 EXPECT_NOT_POISONED(quo);

Completed in 619 milliseconds