/third_party/ffmpeg/libavfilter/ |
D | vf_colorlevels.c | 37 double out_min, out_max; member 68 …{ "romax", "set output red white point", OFFSET(range[R].out_max), AV_OPT_TYPE_DOUBLE, {.dbl=1},… 69 …{ "gomax", "set output green white point", OFFSET(range[G].out_max), AV_OPT_TYPE_DOUBLE, {.dbl=1},… 70 …{ "bomax", "set output blue white point", OFFSET(range[B].out_max), AV_OPT_TYPE_DOUBLE, {.dbl=1},… 71 …{ "aomax", "set output alpha white point", OFFSET(range[A].out_max), AV_OPT_TYPE_DOUBLE, {.dbl=1},… 218 int omax = lrint(r->out_max * UINT8_MAX); in filter_frame() 258 int omax = lrint(r->out_max * UINT16_MAX); in filter_frame()
|
D | vf_misc_vaapi.c | 52 static float map(int x, int in_min, int in_max, float out_min, float out_max) in map() argument 56 slope = 1.0 * (out_max - out_min) / (in_max - in_min); in map()
|
D | vf_procamp_vaapi.c | 56 static float map(float x, float in_min, float in_max, float out_min, float out_max) in map() argument 60 slope = 1.0 * (out_max - out_min) / (in_max - in_min); in map()
|
D | vf_lut3d.c | 935 float out_max[3] = {1.0, 1.0, 1.0}; in parse_cinespace() local 1001 out_max[i] = -FLT_MAX; in parse_cinespace() 1019 out_max[i] = FFMAX(out_max[i], v); in parse_cinespace() 1030 if (av_sscanf(line, "%f %f", &out_min[i], &out_max[i]) != 2) { in parse_cinespace() 1075 vec->r *= out_max[0] - out_min[0]; in parse_cinespace() 1076 vec->g *= out_max[1] - out_min[1]; in parse_cinespace() 1077 vec->b *= out_max[2] - out_min[2]; in parse_cinespace() 1688 float out_max[3] = {1.0, 1.0, 1.0}; in parse_cinespace_1d() local 1727 if (av_sscanf(line, "%f %f", &out_min[i], &out_max[i]) != 2) in parse_cinespace_1d() 1745 lut1d->lut[0][i] *= out_max[0] - out_min[0]; in parse_cinespace_1d() [all …]
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | lws-genrsa.c | 199 size_t in_len, uint8_t *out, size_t out_max) argument 218 out_max); 227 &olen, in, out, out_max); 243 size_t in_len, uint8_t *out, size_t out_max) argument 262 out_max); 271 &olen, in, out, out_max);
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-genrsa.h | 169 size_t in_len, uint8_t *out, size_t out_max); 187 size_t in_len, uint8_t *out, size_t out_max);
|
D | lws-jws.h | 388 lws_jws_base64_enc(const char *in, size_t in_len, char *out, size_t out_max);
|
/third_party/libwebsockets/lib/tls/openssl/ |
D | lws-genrsa.c | 256 size_t in_len, uint8_t *out, size_t out_max) argument 270 size_t in_len, uint8_t *out, size_t out_max) argument
|
/third_party/libwebsockets/lib/jose/jws/ |
D | jws.c | 275 lws_jws_base64_enc(const char *in, size_t in_len, char *out, size_t out_max) in lws_jws_base64_enc() argument 279 n = lws_b64_encode_string_url(in, (int)in_len, out, (int)out_max - 1); in lws_jws_base64_enc() 282 __func__, (int)in_len, (int)out_max); in lws_jws_base64_enc()
|
/third_party/libwebsockets/lib/core/ |
D | private-lib-core.h | 766 lws_jws_base64_enc(const char *in, size_t in_len, char *out, size_t out_max);
|
/third_party/toybox/toys/pending/ |
D | xzcat.c | 1448 static void dict_limit(struct dictionary *dict, size_t out_max) in dict_limit() argument 1450 if (dict->end - dict->pos <= out_max) in dict_limit() 1453 dict->limit = dict->pos + out_max; in dict_limit()
|
/third_party/rust/crates/libc/src/ |
D | psp.rs | 2666 pub fn sceAtracGetMaxSample(atrac_id: i32, out_max: *mut i32) -> i32; in sceAtracGetMaxSample()
|