Lines Matching refs:uvp
1001 cachefs_convert_uv2cl(const struct cachefs_user_values *uvp, in cachefs_convert_uv2cl() argument
1020 temp = (double)uvp->uv_maxblocks / 100.0 * in cachefs_convert_uv2cl()
1024 temp = (double)uvp->uv_minblocks / 100.0 * in cachefs_convert_uv2cl()
1028 temp = (double)uvp->uv_threshblocks / 100.0 * in cachefs_convert_uv2cl()
1032 temp = (double)uvp->uv_maxfiles / 100.0 * (double)fs.f_files + .5; in cachefs_convert_uv2cl()
1035 temp = (double)uvp->uv_minfiles / 100.0 * (double)fs.f_files + .5; in cachefs_convert_uv2cl()
1038 temp = (double)uvp->uv_threshfiles / 100.0 * (double)fs.f_files +.5; in cachefs_convert_uv2cl()
1042 clp->cl_maxfiles = uvp->uv_maxfilesize * ftmp + .5; in cachefs_convert_uv2cl()
1044 clp->cl_blkhiwat = uvp->uv_hiblocks / 100.0 * clp->cl_maxblks + .5; in cachefs_convert_uv2cl()
1045 clp->cl_blklowat = uvp->uv_lowblocks / 100.0 * clp->cl_maxblks + .5; in cachefs_convert_uv2cl()
1047 clp->cl_filehiwat = uvp->uv_hifiles / 100.0 * clp->cl_maxinodes + .5; in cachefs_convert_uv2cl()
1048 clp->cl_filelowat = uvp->uv_lowfiles / 100.0 * clp->cl_maxinodes + .5; in cachefs_convert_uv2cl()
1077 struct cachefs_user_values *uvp, const char *dirp) in cachefs_convert_cl2uv() argument
1102 uvp->uv_maxblocks = (int)temp; in cachefs_convert_cl2uv()
1107 uvp->uv_minblocks = (int)temp; in cachefs_convert_cl2uv()
1112 uvp->uv_threshblocks = (int)temp; in cachefs_convert_cl2uv()
1116 uvp->uv_maxfiles = (int)temp; in cachefs_convert_cl2uv()
1120 uvp->uv_minfiles = (int)temp; in cachefs_convert_cl2uv()
1124 uvp->uv_threshfiles = (int)temp; in cachefs_convert_cl2uv()
1127 uvp->uv_maxfilesize = (ltmp + (MAXBSIZE / 2)) / (1024 * 1024); in cachefs_convert_cl2uv()
1131 uvp->uv_hiblocks = xx; in cachefs_convert_cl2uv()
1135 uvp->uv_lowblocks = xx; in cachefs_convert_cl2uv()
1139 uvp->uv_hifiles = xx; in cachefs_convert_cl2uv()
1143 uvp->uv_lowfiles = xx; in cachefs_convert_cl2uv()