Home
last modified time | relevance | path

Searched refs:L1_SZ (Results 1 – 5 of 5) sorted by relevance

/titanic_50/usr/src/uts/sun4u/sunfire/sys/
H A Dfhc.h311 #define L1_SZ 30 /* # of OVERTEMP_TIMEOUT_SEC samples */ macro
320 #define L2_INDEX(i) ((i) / L1_SZ)
321 #define L2_REM(i) ((i) % L1_SZ)
322 #define L3_INDEX(i) ((i) / (L1_SZ * L2_SZ))
323 #define L3_REM(i) ((i) % (L1_SZ * L2_SZ))
324 #define L4_INDEX(i) ((i) / (L1_SZ * L2_SZ * L3_SZ))
325 #define L4_REM(i) ((i) % (L1_SZ * L2_SZ * L3_SZ))
326 #define L5_INDEX(i) ((i) / (L1_SZ * L2_SZ * L3_SZ * L4_SZ))
327 #define L5_REM(i) ((i) % (L1_SZ * L2_SZ * L3_SZ * L4_SZ))
388 short l1[L1_SZ]; /* OVERTEMP_TIMEOUT_SEC samples */
/titanic_50/usr/src/uts/sun4u/sunfire/io/
H A Dfhc.c1589 for (i = 0; i < L1_SZ; i++) { in init_temp_arrays()
1740 for (i = 0, count = 0, total = 0; i < L1_SZ; i++) { in update_temp()
1769 envstat->l1[index % L1_SZ] = real_temp; in update_temp()
2092 for (i = 0; i < L1_SZ; i++) { in overtemp_kstat_update()
/titanic_50/usr/src/lib/libprtdiag_psr/sparc/sunfire/common/
H A Dsunfire.c1622 curr_temp = bksp->tempstat.l1[bksp->tempstat.index % L1_SZ]; in disp_env_status()
1647 curr_temp = kstats->tempstat.l1[kstats->tempstat.index % L1_SZ]; in disp_env_status()
/titanic_50/usr/src/cmd/stat/kstat/
H A Dkstat.c1281 buf = short_array_to_string(temps->l1, L1_SZ); in save_temperature()
/titanic_50/usr/src/cmd/perl/contrib/Sun/Solaris/Kstat/
H A DKstat.xs617 hv_store(self, "l1", 2, short_array_to_SV(tempsp->l1, L1_SZ), 0); in save_temperature()