Searched refs:maxof (Results 1 - 5 of 5) sorted by relevance
/third_party/toybox/toys/lsb/ |
H A D | seq.c | 52 if (dp++) TT.precision = maxof(TT.precision, strcspn(dp, "eE")); in parsef() 79 len = maxof(len, snprintf(0, 0, TT.f, dd)); in seq_main()
|
/third_party/toybox/toys/pending/ |
H A D | bc.c | 1342 c->rdx = maxof(a->rdx, b->rdx); in bc_num_a() 1422 bc_num_setToZero(c, maxof(a->rdx, b->rdx)); in bc_num_s() 1457 size_t max = maxof(a->len, b->len), max2 = (max + 1) / 2; in bc_num_k() 1498 len = maxof(len, i + j + (carry != 0)); in bc_num_k() 1563 size_t maxrdx = maxof(a->rdx, b->rdx); in bc_num_m() 1565 scale = maxof(scale, a->rdx); in bc_num_m() 1566 scale = maxof(scale, b->rdx); in bc_num_m() 1568 maxrdx = maxof(maxrdx, scale); in bc_num_m() 1701 size_t ts = maxof(scale + b->rdx, a->rdx), len = bc_num_mulReq(a, b, ts); in bc_num_rem() 1743 if (!neg) scale = minof(a->rdx * pow, maxof(scal in bc_num_p() [all...] |
H A D | awk.c | 425 size_t newcap = maxof(cap + p->size, ((cap / p->size) * 3 / 2) * p->size); in zlist_expand()
|
/third_party/toybox/lib/ |
H A D | lib.h | 438 #define maxof(a, b) ({typeof(a) aa = (a); typeof(b) bb = (b); aa>bb ? aa : bb;}) macro
|
/third_party/toybox/porting/liteos_a/lib/ |
H A D | lib.h | 429 #define maxof(a, b) ({typeof(a) aa = (a); typeof(b) bb = (b); aa>bb ? aa : bb;}) macro
|
Completed in 14 milliseconds