MCPcopy Create free account
hub / github.com/apache/trafficserver / ROUNDUP

Function ROUNDUP

include/tscore/ink_defs.h:93–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91//
92template <typename ArithmeticV, typename ArithmeticM>
93constexpr ArithmeticV
94ROUNDUP(ArithmeticV value, ArithmeticM m)
95{
96 ArithmeticV remainder = value % m;
97 if (remainder) {
98 value += m - remainder;
99 }
100 return value;
101}
102#endif

Callers 6

acceptFastEventMethod · 0.85
setup_fd_for_listenMethod · 0.85
openMethod · 0.85
fullSizeMethod · 0.85
test_Extendible.ccFile · 0.85
initFieldsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected