Searched refs:out_max (Results 1 - 3 of 3) sorted by relevance

/external/arduino/hardware/arduino/cores/arduino/
H A DWMath.cpp54 long map(long x, long in_min, long in_max, long out_min, long out_max) argument
56 return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file.cc981 SBPrefix out_max = static_cast<SBPrefix>(out_min + out_stride - 1); local
982 DCHECK_GT(out_max, out_min);
984 StateInternalPos out_end = db_state.ShardEnd(out_pos, out_max);
/external/lzma/xz-embedded/
H A Dxz_dec_lzma2.c300 static void dict_limit(struct dictionary *dict, size_t out_max) argument
302 if (dict->end - dict->pos <= out_max)
305 dict->limit = dict->pos + out_max;

Completed in 120 milliseconds