Lines Matching refs:this
6 * The purpose of this script is to demonstrate fetching these values
24 * The contents of this file are subject to the terms of the
26 * (the "License"). You may not use this file except in compliance
36 * 10-Jun-2005 Brendan Gregg Created this.
45 this->load1a = `hp_avenrun[0] / 65536;
46 this->load5a = `hp_avenrun[1] / 65536;
47 this->load15a = `hp_avenrun[2] / 65536;
48 this->load1b = ((`hp_avenrun[0] % 65536) * 100) / 65536;
49 this->load5b = ((`hp_avenrun[1] % 65536) * 100) / 65536;
50 this->load15b = ((`hp_avenrun[2] % 65536) * 100) / 65536;
54 walltimestamp, this->load1a, this->load1b, this->load5a,
55 this->load5b, this->load15a, this->load15b);