Lines Matching refs:temp
1007 double temp; in cachefs_convert_uv2cl() local
1020 temp = (double)uvp->uv_maxblocks / 100.0 * in cachefs_convert_uv2cl()
1022 clp->cl_maxblks = temp < (double)INT_MAX ? (int)temp : INT_MAX; in cachefs_convert_uv2cl()
1024 temp = (double)uvp->uv_minblocks / 100.0 * in cachefs_convert_uv2cl()
1026 clp->cl_blockmin = temp < (double)INT_MAX ? (int)temp : INT_MAX; in cachefs_convert_uv2cl()
1028 temp = (double)uvp->uv_threshblocks / 100.0 * in cachefs_convert_uv2cl()
1030 clp->cl_blocktresh = temp < (double)INT_MAX ? (int)temp : INT_MAX; in cachefs_convert_uv2cl()
1032 temp = (double)uvp->uv_maxfiles / 100.0 * (double)fs.f_files + .5; in cachefs_convert_uv2cl()
1033 clp->cl_maxinodes = temp < (double)INT_MAX ? (int)temp : INT_MAX; in cachefs_convert_uv2cl()
1035 temp = (double)uvp->uv_minfiles / 100.0 * (double)fs.f_files + .5; in cachefs_convert_uv2cl()
1036 clp->cl_filemin = temp < (double)INT_MAX ? (int)temp : INT_MAX; in cachefs_convert_uv2cl()
1038 temp = (double)uvp->uv_threshfiles / 100.0 * (double)fs.f_files +.5; in cachefs_convert_uv2cl()
1039 clp->cl_filetresh = temp < (double)INT_MAX ? (int)temp : INT_MAX; in cachefs_convert_uv2cl()
1081 double temp; in cachefs_convert_cl2uv() local
1099 temp = (double)clp->cl_maxblks * ftmp / in cachefs_convert_cl2uv()
1101 BOUND(temp); in cachefs_convert_cl2uv()
1102 uvp->uv_maxblocks = (int)temp; in cachefs_convert_cl2uv()
1104 temp = (double)clp->cl_blockmin * ftmp / in cachefs_convert_cl2uv()
1106 BOUND(temp); in cachefs_convert_cl2uv()
1107 uvp->uv_minblocks = (int)temp; in cachefs_convert_cl2uv()
1109 temp = (double)clp->cl_blocktresh * ftmp / in cachefs_convert_cl2uv()
1111 BOUND(temp); in cachefs_convert_cl2uv()
1112 uvp->uv_threshblocks = (int)temp; in cachefs_convert_cl2uv()
1114 temp = ((double)clp->cl_maxinodes / fs.f_files) * 100. + .5; in cachefs_convert_cl2uv()
1115 BOUND(temp); in cachefs_convert_cl2uv()
1116 uvp->uv_maxfiles = (int)temp; in cachefs_convert_cl2uv()
1118 temp = ((double)clp->cl_filemin / fs.f_files) * 100. + .5; in cachefs_convert_cl2uv()
1119 BOUND(temp); in cachefs_convert_cl2uv()
1120 uvp->uv_minfiles = (int)temp; in cachefs_convert_cl2uv()
1122 temp = ((double)clp->cl_filetresh / fs.f_files) * 100. + .5; in cachefs_convert_cl2uv()
1123 BOUND(temp); in cachefs_convert_cl2uv()
1124 uvp->uv_threshfiles = (int)temp; in cachefs_convert_cl2uv()