Lines Matching full:exponent
96 * Check exponent for stats unit in stats_test()
97 * Exponent for counter should be greater than or equal to 0 in stats_test()
98 * Exponent for unit bytes should be greater than or equal to 0 in stats_test()
99 * Exponent for unit seconds should be less than or equal to 0 in stats_test()
100 * Exponent for unit clock cycles should be greater than or in stats_test()
102 * Exponent for unit boolean should be 0 in stats_test()
108 TEST_ASSERT(pdesc->exponent >= 0, in stats_test()
109 "Unsupported KVM stats (%s) exponent: %i", in stats_test()
110 pdesc->name, pdesc->exponent); in stats_test()
113 TEST_ASSERT(pdesc->exponent <= 0, in stats_test()
114 "Unsupported KVM stats (%s) exponent: %i", in stats_test()
115 pdesc->name, pdesc->exponent); in stats_test()
118 TEST_ASSERT(pdesc->exponent == 0, in stats_test()
119 "Unsupported KVM stats (%s) exponent: %d", in stats_test()
120 pdesc->name, pdesc->exponent); in stats_test()