#ifdefined(__arm__) && (__ARM_ARCH <= 7) // armv7 arm32 has no instructions to implement these builtins, // so we include the msun source in the .bp file instead. #else double ceil(double x) { return __builtin_ceil(x); } float ceilf(float x) { return __builtin_ceilf(x); } #ifdefined(__ILP32__)
__weak_reference(ceil, ceill); #endif #endif
#ifdefined(__arm__) && (__ARM_ARCH <= 7) // armv7 arm32 has no instructions to implement these builtins, // so we include the msun source in the .bp file instead. #else double floor(double x) { return __builtin_floor(x); } float floorf(float x) { return __builtin_floorf(x); } #ifdefined(__ILP32__)
__weak_reference(floor, floorl); #endif #endif
#ifdefined(__arm__) && (__ARM_ARCH <= 7) // armv7 arm32 has no instructions to implement these builtins, // so we include the msun source in the .bp file instead. #else double rint(double x) { return __builtin_rint(x); } float rintf(float x) { return __builtin_rintf(x); } #ifdefined(__ILP32__)
__weak_reference(rint, rintl); #endif #endif
#ifdefined(__arm__) && (__ARM_ARCH <= 7) // armv7 arm32 has no instructions to implement these builtins, // so we include the msun source in the .bp file instead. #else double trunc(double x) { return __builtin_trunc(x); } float truncf(float x) { return __builtin_truncf(x); } #ifdefined(__ILP32__)
__weak_reference(trunc, truncl); #endif #endif
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.