/third_party/ltp/testcases/kernel/mem/tunable/ |
H A D | min_free_kbytes.c | 18 * The tune is used to control free memory, and system always 21 * Since the tune is not too large or too little, which will 89 unsigned long tune, memfree, memtotal; in test_tune() local 104 tune = memfree / 20; in test_tune() 105 if (tune > (memtotal / 50)) in test_tune() 106 tune = memtotal / 50; in test_tune() 108 set_sys_tune("min_free_kbytes", tune, 1); in test_tune() 187 unsigned long tune; in check_monitor() local 192 tune = get_sys_tune("min_free_kbytes"); in check_monitor() 194 if (memfree < tune) { in check_monitor() [all...] |
/third_party/ltp/testcases/kernel/mem/lib/ |
H A D | mem.c | 641 void set_sys_tune(char *sys_file, long tune, int check) in set_sys_tune() argument 646 tst_res(TINFO, "set %s to %ld", sys_file, tune); in set_sys_tune() 649 SAFE_FILE_PRINTF(path, "%ld", tune); in set_sys_tune() 653 if (val != tune) in set_sys_tune() 655 sys_file, val, tune); in set_sys_tune() 662 long tune; in get_sys_tune() local 665 SAFE_FILE_SCANF(path, "%ld", &tune); in get_sys_tune() 667 return tune; in get_sys_tune()
|
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/ |
H A D | LatencyTuningCallback.cpp | 28 mLatencyTuner->tune(); in onAudioReady()
|
/third_party/skia/third_party/externals/oboe/include/oboe/ |
H A D | LatencyTuner.h | 28 * LatencyTuner can be used to dynamically tune the latency of an output stream. 34 * Call tune() right before returning from your data callback function if using callbacks. 35 * Call tune() right before calling write() if using blocking writes. 55 * @param the maximum buffer size which the tune() operation will set the buffer size to 67 Result tune(); 70 * This may be called from another thread. Then tune() will call reset(), 122 * This should only be called in the same thread as tune().
|
/third_party/lame/libmp3lame/ |
H A D | lame_global_flags.h | 139 float athaa_sensitivity; /* dB, tune active region of auto-level */ 145 int tune; /* 0 off, 1 on */ member
|
H A D | set_get.c | 2260 gfp->tune = 1; in lame_set_tune()
|
H A D | lame.c | 1070 if (gfp->tune) { in lame_init_params()
|
/third_party/ltp/testcases/kernel/mem/include/ |
H A D | mem.h | 74 void set_sys_tune(char *sys_file, long tune, int check);
|
/third_party/skia/third_party/externals/oboe/src/common/ |
H A D | LatencyTuner.cpp | 34 Result LatencyTuner::tune() { in tune() function in LatencyTuner
|
/third_party/ffmpeg/libavcodec/ |
H A D | libx265.c | 52 char *tune; member 142 if (ctx->api->param_default_preset(ctx->params, ctx->preset, ctx->tune) < 0) { in libx265_encode_init() 145 av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", ctx->preset, ctx->tune); in libx265_encode_init() 714 { "tune", "set the x265 tune parameter", OFFSET(tune), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
|
H A D | libx264.c | 64 char *tune; member 654 if (x4->preset || x4->tune) in X264_init() 655 if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) { in X264_init() 657 av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune); in X264_init() 1102 { "tune", "Tune the encoding params (cf. x264 --fullhelp)", OFFSET(tune), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
|
H A D | libaomenc.c | 102 int tune; member 919 if (ctx->tune >= 0) in aom_init() 920 codecctl_int(avctx, AOME_SET_TUNING, ctx->tune); in aom_init() 1376 { "tune", "The metric that the encoder tunes for. Automatically chosen by the encoder by default", OFFSET(tune), AV_OPT_TYPE_INT, {.i64 = -1}, -1, AOM_TUNE_SSIM, VE, "tune"}, 1377 { "psnr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AOM_TUNE_PSNR}, 0, 0, VE, "tune"}, 1378 { "ssim", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AOM_TUNE_SSIM}, 0, 0, VE, "tune"},
|
H A D | libvpxenc.c | 105 int tune; member 1124 if (ctx->tune >= 0) in vpx_init() 1125 codecctl_int(avctx, VP8E_SET_TUNING, ctx->tune); in vpx_init() 1821 { "tune", "Tune the encoding to a specific scenario", OFFSET(tune), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE, "tune"}, \ 1822 { "psnr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_PSNR}, 0, 0, VE, "tune"}, \ 1823 { "ssim", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_SSIM}, 0, 0, VE, "tune"}, \ 1894 { "tune-content", "Tune content type", OFFSET(tune_content), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 2, VE, "tune_content" }, 1896 { "tune [all...] |
/third_party/rust/crates/regex/src/literal/ |
H A D | imp.rs | 191 // haystack, then it'd be worth using it. How to tune this... IDK. in new()
|
/third_party/sqlite/src/ |
H A D | shell.c | 24802 { "tune", SQLITE_TESTCTRL_TUNE, 1, "ID VALUE" }, in do_meta_command()
|