/linux/drivers/gpu/drm/amd/display/dc/sspl/ |
H A D | dc_spl_scl_easf_filters.h | 20 uint32_t spl_get_v_bf3_mode(struct spl_fixed31_32 ratio); 21 uint32_t spl_get_h_bf3_mode(struct spl_fixed31_32 ratio); 22 uint32_t spl_get_reducer_gain6(int taps, struct spl_fixed31_32 ratio); 23 uint32_t spl_get_reducer_gain4(int taps, struct spl_fixed31_32 ratio); 24 uint32_t spl_get_gainRing6(int taps, struct spl_fixed31_32 ratio); 25 uint32_t spl_get_gainRing4(int taps, struct spl_fixed31_32 ratio); 26 uint32_t spl_get_3tap_dntilt_uptilt_offset(int taps, struct spl_fixed31_32 ratio); 27 uint32_t spl_get_3tap_uptilt_maxval(int taps, struct spl_fixed31_32 ratio); 28 uint32_t spl_get_3tap_dntilt_slope(int taps, struct spl_fixed31_32 ratio); 29 uint32_t spl_get_3tap_uptilt1_slope(int taps, struct spl_fixed31_32 ratio); [all...] |
/linux/tools/perf/tests/ |
H A D | parse-metric.c | 119 static int compute_metric(const char *name, struct value *vals, double *ratio) in compute_metric() argument 121 return __compute_metric(name, vals, name, ratio, NULL, NULL); in compute_metric() 133 double ratio; in test_ipc() local 141 compute_metric("IPC", vals, &ratio) == 0); in test_ipc() 143 TEST_ASSERT_VAL("IPC failed, wrong ratio", in test_ipc() 144 ratio == 1.5); in test_ipc() 150 double ratio; in test_frontend() local 160 compute_metric("Frontend_Bound_SMT", vals, &ratio) == 0); in test_frontend() 162 TEST_ASSERT_VAL("Frontend_Bound_SMT failed, wrong ratio", in test_frontend() 163 ratio in test_frontend() 169 double ratio; test_cache_miss_cycles() local 209 double ratio; test_dcache_l2() local 236 double ratio; test_recursion_fail() local 253 double ratio; test_memory_bandwidth() local [all...] |
/linux/drivers/gpu/drm/i915/display/ |
H A D | intel_cdclk.c | 79 * reference clock and a ratio parameter. 1315 u8 ratio; member 1319 { .refclk = 19200, .cdclk = 144000, .ratio = 60 }, 1320 { .refclk = 19200, .cdclk = 288000, .ratio = 60 }, 1321 { .refclk = 19200, .cdclk = 384000, .ratio = 60 }, 1322 { .refclk = 19200, .cdclk = 576000, .ratio = 60 }, 1323 { .refclk = 19200, .cdclk = 624000, .ratio = 65 }, 1328 { .refclk = 19200, .cdclk = 79200, .ratio = 33 }, 1329 { .refclk = 19200, .cdclk = 158400, .ratio = 33 }, 1330 { .refclk = 19200, .cdclk = 316800, .ratio 1695 u32 val, ratio; bxt_de_pll_readout() local 1809 int ratio = DIV_ROUND_CLOSEST(vco, display->cdclk.hw.ref); bxt_de_pll_enable() local 1838 int ratio = DIV_ROUND_CLOSEST(vco, display->cdclk.hw.ref); icl_cdclk_pll_enable() local 1856 int ratio = DIV_ROUND_CLOSEST(vco, display->cdclk.hw.ref); adlp_cdclk_pll_crawl() local 3350 int ratio = intel_mdclk_cdclk_ratio(display, &new_cdclk_state->actual); intel_modeset_calc_cdclk() local [all...] |
/linux/drivers/thermal/intel/ |
H A D | intel_powerclamp.c | 42 * we increment the confidence counter for the given target ratio. 48 * idle ratio. Similar to frequency modulation. 55 /* Idle ratio observed using package C-state counters */ 262 MODULE_PARM_DESC(max_idle, "maximum injected idle time to the total CPU time ratio in percent range:1-100"); 310 "\tpowerclamp controls idle ratio within this window. larger\n" 370 static unsigned int get_compensation(int ratio) in get_compensation() argument 378 if (ratio == 1 && in get_compensation() 379 cal_data[ratio].confidence >= CONFIDENCE_OK && in get_compensation() 380 cal_data[ratio + 1].confidence >= CONFIDENCE_OK && in get_compensation() 381 cal_data[ratio in get_compensation() [all...] |
/linux/drivers/gpu/drm/amd/display/dc/dcn20/ |
H A D | dcn20_dwb_scl.c | 530 static const uint16_t *wbscl_get_filter_3tap_16p(struct fixed31_32 ratio) in wbscl_get_filter_3tap_16p() argument 532 if (ratio.value < dc_fixpt_one.value) in wbscl_get_filter_3tap_16p() 534 else if (ratio.value < dc_fixpt_from_fraction(4, 3).value) in wbscl_get_filter_3tap_16p() 536 else if (ratio.value < dc_fixpt_from_fraction(5, 3).value) in wbscl_get_filter_3tap_16p() 542 static const uint16_t *wbscl_get_filter_4tap_16p(struct fixed31_32 ratio) in wbscl_get_filter_4tap_16p() argument 544 if (ratio.value < dc_fixpt_one.value) in wbscl_get_filter_4tap_16p() 546 else if (ratio.value < dc_fixpt_from_fraction(4, 3).value) in wbscl_get_filter_4tap_16p() 548 else if (ratio.value < dc_fixpt_from_fraction(5, 3).value) in wbscl_get_filter_4tap_16p() 554 static const uint16_t *wbscl_get_filter_5tap_16p(struct fixed31_32 ratio) in wbscl_get_filter_5tap_16p() argument 556 if (ratio in wbscl_get_filter_5tap_16p() 566 wbscl_get_filter_6tap_16p(struct fixed31_32 ratio) wbscl_get_filter_6tap_16p() argument 578 wbscl_get_filter_7tap_16p(struct fixed31_32 ratio) wbscl_get_filter_7tap_16p() argument 590 wbscl_get_filter_8tap_16p(struct fixed31_32 ratio) wbscl_get_filter_8tap_16p() argument 602 wbscl_get_filter_9tap_16p(struct fixed31_32 ratio) wbscl_get_filter_9tap_16p() argument 613 wbscl_get_filter_10tap_16p(struct fixed31_32 ratio) wbscl_get_filter_10tap_16p() argument 625 wbscl_get_filter_11tap_16p(struct fixed31_32 ratio) wbscl_get_filter_11tap_16p() argument 637 wbscl_get_filter_12tap_16p(struct fixed31_32 ratio) wbscl_get_filter_12tap_16p() argument 649 wbscl_get_filter_coeffs_16p(int taps,struct fixed31_32 ratio) wbscl_get_filter_coeffs_16p() argument [all...] |
/linux/sound/soc/codecs/ |
H A D | cs42xx8.c | 182 unsigned int ratio[3]; member 266 u32 ratio[2]; in cs42xx8_hw_params() local 278 ratio[tx] = rate[tx] > 0 ? cs42xx8->sysclk / rate[tx] : 0; in cs42xx8_hw_params() 279 ratio[!tx] = rate[!tx] > 0 ? cs42xx8->sysclk / rate[!tx] : 0; in cs42xx8_hw_params() 301 /* Is the ratio[tx] valid ? */ in cs42xx8_hw_params() 303 (cs42xx8_ratios[i].ratio[0] == ratio[tx] || in cs42xx8_hw_params() 304 cs42xx8_ratios[i].ratio[1] == ratio[tx] || in cs42xx8_hw_params() 305 cs42xx8_ratios[i].ratio[ in cs42xx8_hw_params() [all...] |
/linux/tools/testing/selftests/memory-hotplug/ |
H A D | mem-on-off-test.sh | 148 # Run with default of ratio=2 for Kselftest run 149 ratio=2 165 ratio=$OPTARG 166 if [ "$ratio" -gt 100 ] || [ "$ratio" -lt 0 ]; then 181 echo "Test scope: $ratio% hotplug memory" 200 # Offline $ratio percent of hot-pluggable memory 203 target=`echo "a=$hotpluggable_num*$ratio; if ( a%100 ) a/100+1 else a/100" | bc` 204 echo -e "\t offline $ratio% hot-pluggable memory in online state" 267 # Offline $ratio percen [all...] |
/linux/drivers/media/platform/ti/omap3isp/ |
H A D | ispresizer.c | 52 * Constants for ratio calculation 304 * @ratio: Structure for ratio parameters. 309 const struct resizer_ratio *ratio) in resizer_set_ratio() argument 317 rgval |= ((ratio->horz - 1) << ISPRSZ_CNT_HRSZ_SHIFT) in resizer_set_ratio() 319 rgval |= ((ratio->vert - 1) << ISPRSZ_CNT_VRSZ_SHIFT) in resizer_set_ratio() 324 if (ratio->horz > MID_RESIZE_VALUE) in resizer_set_ratio() 330 if (ratio->vert > MID_RESIZE_VALUE) in resizer_set_ratio() 682 * @ratio : return calculated ratios 686 * has a fixed number of phases that depend on the resizing ratio 782 resizer_calc_ratios(struct isp_res_device * res,struct v4l2_rect * input,struct v4l2_mbus_framefmt * output,struct resizer_ratio * ratio) resizer_calc_ratios() argument 1231 struct resizer_ratio ratio; resizer_get_selection() local 1285 struct resizer_ratio ratio; resizer_set_selection() local 1383 struct resizer_ratio ratio; resizer_try_format() local [all...] |
/linux/sound/soc/fsl/ |
H A D | fsl_esai.c | 161 * @ratio: desired overall ratio for the paticipating dividers 165 static int fsl_esai_divisor_cal(struct snd_soc_dai *dai, bool tx, u32 ratio, in fsl_esai_divisor_cal() argument 176 if (ratio > 2 * 8 * 256 * maxfp || ratio < 2) { in fsl_esai_divisor_cal() 177 dev_err(dai->dev, "the ratio is out of range (2 ~ %d)\n", in fsl_esai_divisor_cal() 180 } else if (ratio % 2) { in fsl_esai_divisor_cal() 185 ratio /= 2; in fsl_esai_divisor_cal() 187 psr = ratio <= 256 * maxfp ? ESAI_xCCR_xPSR_BYPASS : ESAI_xCCR_xPSR_DIV8; in fsl_esai_divisor_cal() 189 /* Do not loop-search if PM (1 ~ 256) alone can serve the ratio */ in fsl_esai_divisor_cal() 266 u32 ratio, ecr = 0; fsl_esai_set_dai_sysclk() local 366 u32 sub, ratio = hck_rate / freq; fsl_esai_set_bclk() local [all...] |
/linux/Documentation/admin-guide/thermal/ |
H A D | intel_powerclamp.rst | 74 ratio (based on power reduction), and the error is the difference 75 between the actual package level C-state residency ratio and the target idle 76 ratio. 82 clamping actions of controlled duty ratio and duration. Each per-CPU 129 instantly as given input (target idle ratio). After injection, 152 a) determine the effective range of idle injection ratio 153 b) determine the amount of compensation needed at each target ratio 155 Compensation to each target ratio consists of two parts: 165 additional idle ratio can be added to quiet interrupts, by 215 we have a simple algorithm to double the injection ratio [all...] |
/linux/tools/testing/selftests/net/forwarding/ |
H A D | sch_ets_tests.sh | 54 local ratio=$(echo "scale=2; 100 * $d / $total" | bc -l) 56 test $(echo "$ratio > 95.0" | bc -l) -eq 1 59 log_info "Expected ratio >95% Measured ratio $ratio" 61 test $(echo "$ratio < 5" | bc -l) -eq 1 64 log_info "Expected ratio <5% Measured ratio $ratio"
|
/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n1/ |
H A D | metrics.json | 12 "BriefDescription": "This metric measures the ratio of branches mispredicted to the total number of branches architecturally executed. This gives an indication of the effectiveness of the branch prediction unit.", 47 "BriefDescription": "This metric measures the ratio of instruction TLB Walks to the total number of data TLB accesses. This gives an indication of the effectiveness of the data TLB accesses.", 82 "BriefDescription": "This metric measures the ratio of instruction TLB Walks to the total number of instruction TLB accesses. This gives an indication of the effectiveness of the instruction TLB accesses.", 89 "BriefDescription": "This metric measures the ratio of level 1 data cache accesses missed to the total number of level 1 data cache accesses. This gives an indication of the effectiveness of the level 1 data cache.", 103 "BriefDescription": "This metric measures the ratio of level 1 data TLB accesses missed to the total number of level 1 data TLB accesses. This gives an indication of the effectiveness of the level 1 data TLB.", 117 "BriefDescription": "This metric measures the ratio of level 1 instruction cache accesses missed to the total number of level 1 instruction cache accesses. This gives an indication of the effectiveness of the level 1 instruction cache.", 131 "BriefDescription": "This metric measures the ratio of level 1 instruction TLB accesses missed to the total number of level 1 instruction TLB accesses. This gives an indication of the effectiveness of the level 1 instruction TLB.", 145 "BriefDescription": "This metric measures the ratio of level 2 cache accesses missed to the total number of level 2 cache accesses. This gives an indication of the effectiveness of the level 2 cache, which is a unified cache that stores both data and instruction. Note that cache accesses in this cache are either data memory access or instruction fetch as this is a unified cache.", 159 "BriefDescription": "This metric measures the ratio of level 2 unified TLB accesses missed to the total number of level 2 unified TLB accesses. This gives an indication of the effectiveness of the level 2 TLB.", 173 "BriefDescription": "This metric measures the ratio o [all...] |
/linux/Documentation/mm/ |
H A D | zsmalloc.rst | 56 the number of zspages with usage ratio less than 10% (see below) 58 the number of zspages with usage ratio between 10% and 20% 60 the number of zspages with usage ratio between 20% and 30% 62 the number of zspages with usage ratio between 30% and 40% 64 the number of zspages with usage ratio between 40% and 50% 66 the number of zspages with usage ratio between 50% and 60% 68 the number of zspages with usage ratio between 60% and 70% 70 the number of zspages with usage ratio between 70% and 80% 72 the number of zspages with usage ratio between 80% and 90% 74 the number of zspages with usage ratio betwee [all...] |
/linux/drivers/media/dvb-frontends/ |
H A D | ves1x93.c | 165 u32 ratio; in ves1x93_set_symbolrate() local 184 ratio = tmp / FIN; in ves1x93_set_symbolrate() 187 ratio = (ratio << 8) + tmp / FIN; in ves1x93_set_symbolrate() 190 ratio = (ratio << 8) + tmp / FIN; in ves1x93_set_symbolrate() 194 if (ratio < MUL/3) FNR = 0; in ves1x93_set_symbolrate() 195 if (ratio < (MUL*11)/50) FNR = 1; in ves1x93_set_symbolrate() 196 if (ratio < MUL/6) FNR = 2; in ves1x93_set_symbolrate() 197 if (ratio < MU in ves1x93_set_symbolrate() [all...] |
/linux/Documentation/devicetree/bindings/hwmon/pmbus/ |
H A D | mps,mpq8785.yaml | 26 mps,vout-fb-divider-ratio-permille: 28 The feedback resistor divider ratio, expressed in permille 49 mps,vout-fb-divider-ratio-permille: 58 mps,vout-fb-divider-ratio-permille: 72 mps,vout-fb-divider-ratio-permille = <600>;
|
/linux/drivers/gpu/drm/amd/display/dc/inc/hw/ |
H A D | transform.h | 70 /* Active format aspect ratio */ 252 const uint16_t *get_filter_3tap_16p(struct fixed31_32 ratio); 253 const uint16_t *get_filter_3tap_64p(struct fixed31_32 ratio); 254 const uint16_t *get_filter_4tap_16p(struct fixed31_32 ratio); 255 const uint16_t *get_filter_4tap_64p(struct fixed31_32 ratio); 256 const uint16_t *get_filter_5tap_64p(struct fixed31_32 ratio); 257 const uint16_t *get_filter_6tap_64p(struct fixed31_32 ratio); 258 const uint16_t *get_filter_7tap_64p(struct fixed31_32 ratio); 259 const uint16_t *get_filter_8tap_64p(struct fixed31_32 ratio);
|
/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-v1/ |
H A D | metrics.json | 19 "BriefDescription": "This metric measures the ratio of branches mispredicted to the total number of branches architecturally executed. This gives an indication of the effectiveness of the branch prediction unit.", 54 "BriefDescription": "This metric measures the ratio of data TLB Walks to the total number of data TLB accesses. This gives an indication of the effectiveness of the data TLB accesses.", 93 "BriefDescription": "This metric measures the ratio of instruction TLB Walks to the total number of instruction TLB accesses. This gives an indication of the effectiveness of the instruction TLB accesses.", 100 "BriefDescription": "This metric measures the ratio of level 1 data cache accesses missed to the total number of level 1 data cache accesses. This gives an indication of the effectiveness of the level 1 data cache.", 114 "BriefDescription": "This metric measures the ratio of level 1 data TLB accesses missed to the total number of level 1 data TLB accesses. This gives an indication of the effectiveness of the level 1 data TLB.", 128 "BriefDescription": "This metric measures the ratio of level 1 instruction cache accesses missed to the total number of level 1 instruction cache accesses. This gives an indication of the effectiveness of the level 1 instruction cache.", 142 "BriefDescription": "This metric measures the ratio of level 1 instruction TLB accesses missed to the total number of level 1 instruction TLB accesses. This gives an indication of the effectiveness of the level 1 instruction TLB.", 156 "BriefDescription": "This metric measures the ratio of level 2 cache accesses missed to the total number of level 2 cache accesses. This gives an indication of the effectiveness of the level 2 cache, which is a unified cache that stores both data and instruction. Note that cache accesses in this cache are either data memory access or instruction fetch as this is a unified cache.", 170 "BriefDescription": "This metric measures the ratio of level 2 unified TLB accesses missed to the total number of level 2 unified TLB accesses. This gives an indication of the effectiveness of the level 2 TLB.", 184 "BriefDescription": "This metric measures the ratio o [all...] |
/linux/drivers/media/platform/renesas/vsp1/ |
H A D | vsp1_uds.c | 51 * uds_output_size - Return the output size for an input size and scaling ratio 53 * @ratio: scaling ratio in U4.12 fixed-point format 55 static unsigned int uds_output_size(unsigned int input, unsigned int ratio) in uds_output_size() argument 57 if (ratio > 4096) { in uds_output_size() 61 mp = ratio / 4096; in uds_output_size() 64 return (input - 1) / mp * mp * 4096 / ratio + 1; in uds_output_size() 67 return (input - 1) * 4096 / ratio + 1; in uds_output_size() 85 * uds_passband_width - Return the passband filter width for a scaling ratio 86 * @ratio 88 uds_passband_width(unsigned int ratio) uds_passband_width() argument [all...] |
/linux/Documentation/ABI/testing/ |
H A D | sysfs-firmware-opal-psr | 4 Description: Power-Shift-Ratio directory for Powernv P9 servers 6 Power-Shift-Ratio allows to provide hints the firmware 16 Power-Shift-Ratio between CPU and GPU for a given chip 17 with chip-id X. This file gives the ratio (0-100)
|
/linux/drivers/clk/ |
H A D | clk-cs2000-cp.c | 202 u64 ratio; in cs2000_rate_to_ratio() local 206 * ratio = rate_out / rate_in * 2^multiplier in cs2000_rate_to_ratio() 211 ratio = (u64)rate_out << multiplier; in cs2000_rate_to_ratio() 212 do_div(ratio, rate_in); in cs2000_rate_to_ratio() 214 return ratio; in cs2000_rate_to_ratio() 217 static unsigned long cs2000_ratio_to_rate(u32 ratio, u32 rate_in, bool lf_ratio) in cs2000_ratio_to_rate() argument 223 * ratio = rate_out / rate_in * 2^multiplier in cs2000_ratio_to_rate() 229 rate_out = (u64)ratio * rate_in; in cs2000_ratio_to_rate() 301 u32 ratio; in cs2000_recalc_rate() local 303 ratio in cs2000_recalc_rate() 312 u32 ratio; cs2000_round_rate() local [all...] |
/linux/Documentation/devicetree/bindings/rng/ |
H A D | arm-cctrng.yaml | 27 arm,rosc-ratio: 30 Sampling ratio values for these 4 ring oscillators. (from calibration) 41 - arm,rosc-ratio 51 arm,rosc-ratio = <5000 1000 500 0>;
|
/linux/Documentation/devicetree/bindings/iio/adc/ |
H A D | ti,tsc2046.yaml | 56 oversampling-ratio: true 91 oversampling-ratio = <5>; 99 oversampling-ratio = <5>; 104 oversampling-ratio = <5>; 109 oversampling-ratio = <5>;
|
/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n2-v2/ |
H A D | metrics.json | 20 "BriefDescription": "This metric measures the ratio of branches mispredicted to the total number of branches architecturally executed. This gives an indication of the effectiveness of the branch prediction unit.", 55 "BriefDescription": "This metric measures the ratio of data TLB Walks to the total number of data TLB accesses. This gives an indication of the effectiveness of the data TLB accesses.", 94 "BriefDescription": "This metric measures the ratio of instruction TLB Walks to the total number of instruction TLB accesses. This gives an indication of the effectiveness of the instruction TLB accesses.", 101 "BriefDescription": "This metric measures the ratio of level 1 data cache accesses missed to the total number of level 1 data cache accesses. This gives an indication of the effectiveness of the level 1 data cache.", 115 "BriefDescription": "This metric measures the ratio of level 1 data TLB accesses missed to the total number of level 1 data TLB accesses. This gives an indication of the effectiveness of the level 1 data TLB.", 129 "BriefDescription": "This metric measures the ratio of level 1 instruction cache accesses missed to the total number of level 1 instruction cache accesses. This gives an indication of the effectiveness of the level 1 instruction cache.", 143 "BriefDescription": "This metric measures the ratio of level 1 instruction TLB accesses missed to the total number of level 1 instruction TLB accesses. This gives an indication of the effectiveness of the level 1 instruction TLB.", 157 "BriefDescription": "This metric measures the ratio of level 2 cache accesses missed to the total number of level 2 cache accesses. This gives an indication of the effectiveness of the level 2 cache, which is a unified cache that stores both data and instruction. Note that cache accesses in this cache are either data memory access or instruction fetch as this is a unified cache.", 171 "BriefDescription": "This metric measures the ratio of level 2 unified TLB accesses missed to the total number of level 2 unified TLB accesses. This gives an indication of the effectiveness of the level 2 TLB.", 185 "BriefDescription": "This metric measures the ratio o [all...] |
/linux/tools/perf/util/ |
H A D | stat-shadow.c | 199 double ratio = 0; in print_ratio() local 205 ratio = numerator / denominator * 100.0; in print_ratio() 206 thresh = get_ratio_thresh(thresh_ratios, ratio); in print_ratio() 210 out->print_metric(config, out->ctx, thresh, fmt, unit, ratio); in print_ratio() 346 double ratio = cycles / nsecs; in print_cycles() local 349 "GHz", ratio); in print_cycles() 501 double ratio, scale, threshold; in generic_metric() local 520 if (expr__parse(&ratio, pctx, metric_expr) == 0) { in generic_metric() 534 ratio *= scale; in generic_metric() 544 metric_bf, ratio); in generic_metric() 569 double ratio = 0.0; test_generic_metric() local 723 double ratio = convert_unit_double(1000000000.0 * avg / nsecs, perf_stat__print_shadow_stats() local [all...] |
/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n3/ |
H A D | metrics.json | 89 "BriefDescription": "This metric measures the ratio of direct branches retired to the total number of branches architecturally executed.", 96 "BriefDescription": "This metric measures the ratio of indirect branches retired, including function returns, to the total number of branches architecturally executed.", 103 "BriefDescription": "This metric measures the ratio of branches mispredicted to the total number of branches architecturally executed. This gives an indication of the effectiveness of the branch prediction unit.", 124 "BriefDescription": "This metric measures the ratio of branches retired that are function returns to the total number of branches architecturally executed.", 145 "BriefDescription": "This metric measures the ratio of data TLB Walks to the total number of data TLB accesses. This gives an indication of the effectiveness of the data TLB accesses.", 268 "BriefDescription": "This metric measures the ratio of instruction TLB Walks to the total number of instruction TLB accesses. This gives an indication of the effectiveness of the instruction TLB accesses.", 275 "BriefDescription": "This metric measures the ratio of level 1 data cache accesses missed to the total number of level 1 data cache accesses. This gives an indication of the effectiveness of the level 1 data cache.", 289 "BriefDescription": "This metric measures the ratio of level 1 data TLB accesses missed to the total number of level 1 data TLB accesses. This gives an indication of the effectiveness of the level 1 data TLB.", 303 "BriefDescription": "This metric measures the ratio of level 1 instruction cache accesses missed to the total number of level 1 instruction cache accesses. This gives an indication of the effectiveness of the level 1 instruction cache.", 317 "BriefDescription": "This metric measures the ratio o [all...] |