OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:out_max
(Results
1 - 4
of
4
) sorted by null
/external/arduino/hardware/arduino/cores/arduino/
WMath.cpp
54
long map(long x, long in_min, long in_max, long out_min, long
out_max
)
56
return (x - in_min) * (
out_max
- out_min) / (in_max - in_min) + out_min;
/packages/apps/Camera2/src/com/android/camera/ui/
AnimatedCircleDrawable.java
131
* @param
out_max
Output range maximum.
134
private static int map(int x, int in_min, int in_max, int out_min, int
out_max
) {
135
return (x - in_min) * (
out_max
- out_min) / (in_max - in_min) + out_min;
/external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store_file.cc
981
SBPrefix
out_max
= static_cast<SBPrefix>(out_min + out_stride - 1);
local
[
all
...]
/external/lzma/xz-embedded/
xz_dec_lzma2.c
300
static void dict_limit(struct dictionary *dict, size_t
out_max
)
302
if (dict->end - dict->pos <=
out_max
)
305
dict->limit = dict->pos +
out_max
;
Completed in 384 milliseconds