Searched refs:minof (Results 1 – 4 of 4) sorted by relevance
/third_party/toybox/toys/pending/ |
D | xzcat.c | 814 copy_size = minof(s->temp.filtered, b->out_size - b->out_pos); in bcj_flush() 1501 left = minof(dict->limit - dict->pos, *len); in dict_repeat() 1528 copy_size = minof(b->in_size - b->in_pos, in dict_uncompressed() 2207 dict_limit(&s->dict, minof(b->out_size - b->out_pos, in xz_dec_lzma2_run() 2486 size_t copy_size = minof(b->in_size - b->in_pos, s->temp.size - s->temp.pos); in fill_temp()
|
D | bc.c | 1343 min_rdx = minof(a->rdx, b->rdx); in bc_num_a() 1567 scale = minof(a->rdx + b->rdx, scale); in bc_num_m() 1743 if (!neg) scale = minof(a->rdx * pow, maxof(scale, a->rdx)); in bc_num_p()
|
/third_party/toybox/lib/ |
D | lib.h | 426 #define minof(a, b) ({typeof(a) aa = (a); typeof(b) bb = (b); aa<bb ? aa : bb;}) macro
|
/third_party/toybox/porting/liteos_a/lib/ |
D | lib.h | 427 #define minof(a, b) ({typeof(a) aa = (a); typeof(b) bb = (b); aa<bb ? aa : bb;}) macro
|