/external/iptables/extensions/ |
D | libxt_limit.c | 108 static const struct rates struct 112 } rates[] = { { "day", XT_LIMIT_SCALE*24*60*60 }, argument 121 for (i = 1; i < ARRAY_SIZE(rates); ++i) in print_rate() 122 if (period > rates[i].mult in print_rate() 123 || rates[i].mult/period < rates[i].mult%period) in print_rate() 126 printf(" %u/%s", rates[i-1].mult / period, rates[i-1].name); in print_rate()
|
D | libxt_hashlimit.c | 311 static const struct rates struct 315 } rates[] = { { "day", XT_HASHLIMIT_SCALE*24*60*60 }, argument 324 for (i = 1; i < ARRAY_SIZE(rates); ++i) in print_rate() 325 if (period > rates[i].mult in print_rate() 326 || rates[i].mult/period < rates[i].mult%period) in print_rate() 329 printf(" %u/%s", rates[i-1].mult / period, rates[i-1].name); in print_rate()
|
D | libxt_rateest.man | 1 The rate estimator can match on estimated rates as collected by the RATEEST 78 # Estimate outgoing rates
|
/external/chromium_org/media/audio/cras/ |
D | cras_input_unittest.cc | 190 const unsigned int rates[] = in TEST_F() local 193 for (unsigned int i = 0; i < ARRAY_SIZE(rates); i++) { in TEST_F() 194 SCOPED_TRACE(testing::Message() << "Mono " << rates[i] << "Hz"); in TEST_F() 197 rates[i], in TEST_F() 203 for (unsigned int i = 0; i < ARRAY_SIZE(rates); i++) { in TEST_F() 204 SCOPED_TRACE(testing::Message() << "Stereo " << rates[i] << "Hz"); in TEST_F() 207 rates[i], in TEST_F()
|
/external/iproute2/misc/ |
D | ifstat.c | 221 double *rates = n->rate; in dump_raw_db() local 229 rates = h1->rate; in dump_raw_db() 237 fprintf(fp, "%llu %u ", vals[i], (unsigned)rates[i]); in dump_raw_db() 247 void format_rate(FILE *fp, unsigned long long *vals, double *rates, int i) in format_rate() argument 257 if (rates[i] > mega) { in format_rate() 258 sprintf(temp, "%uM", (unsigned)(rates[i]/mega)); in format_rate() 260 } else if (rates[i] > kilo) { in format_rate() 261 sprintf(temp, "%uK", (unsigned)(rates[i]/kilo)); in format_rate() 264 fprintf(fp, "%-6u ", (unsigned)rates[i]); in format_rate()
|
/external/tcpdump/ |
D | print-802_11.c | 72 for (z = 0; z < p.rates.length ; z++) { \ 73 PRINT_RATE(sep, p.rates.rate[z], \ 74 (p.rates.rate[z] & 0x80 ? "*" : "")); \ 77 if (p.rates.length != 0) \ 219 memcpy(&(pbody->rates), p + offset, 2); in parse_elements() 221 if (pbody->rates.length != 0) { in parse_elements() 222 if (pbody->rates.length > sizeof pbody->rates.rate) in parse_elements() 224 if (!TTEST2(*(p + offset), pbody->rates.length)) in parse_elements() 226 memcpy(&pbody->rates.rate, p + offset, in parse_elements() 227 pbody->rates.length); in parse_elements() [all …]
|
D | ieee802_11.h | 242 struct rates_t rates; member
|
/external/chromium_org/third_party/opus/src/tests/ |
D | test_opus_encode.c | 243 … int rates[13]={6000,12000,48000,16000,32000,48000,64000,512000,13000,24000,48000,64000,96000}; in run_test1() local 245 rate=rates[j]+fast_rand()%rates[j]; in run_test1() 260 … if(opus_encoder_ctl(enc, OPUS_SET_FORCE_CHANNELS((rates[j]>=64000?2:1)))!=OPUS_OK)test_failed(); in run_test1() 302 …int rates[16]={4000,12000,32000,8000,16000,32000,48000,88000,4000,12000,32000,8000,16000,32000,480… in run_test1() local 306 rate=rates[j]+fast_rand()%rates[j]; in run_test1()
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_test.c | 2568 modes[0].rates = os_calloc(modes[0].num_rates, sizeof(int)); in wpa_driver_test_get_hw_feature_data() 2569 if (modes[0].channels == NULL || modes[0].rates == NULL) in wpa_driver_test_get_hw_feature_data() 2576 modes[0].rates[0] = 10; in wpa_driver_test_get_hw_feature_data() 2577 modes[0].rates[1] = 20; in wpa_driver_test_get_hw_feature_data() 2578 modes[0].rates[2] = 55; in wpa_driver_test_get_hw_feature_data() 2579 modes[0].rates[3] = 110; in wpa_driver_test_get_hw_feature_data() 2580 modes[0].rates[4] = 60; in wpa_driver_test_get_hw_feature_data() 2581 modes[0].rates[5] = 90; in wpa_driver_test_get_hw_feature_data() 2582 modes[0].rates[6] = 120; in wpa_driver_test_get_hw_feature_data() 2583 modes[0].rates[7] = 180; in wpa_driver_test_get_hw_feature_data() [all …]
|
D | driver_hostap.c | 1115 mode->rates = os_zalloc(rlen); in hostap_get_hw_feature_data() 1116 if (mode->channels == NULL || mode->rates == NULL) { in hostap_get_hw_feature_data() 1118 os_free(mode->rates); in hostap_get_hw_feature_data() 1131 mode->rates[0] = 10; in hostap_get_hw_feature_data() 1132 mode->rates[1] = 20; in hostap_get_hw_feature_data() 1133 mode->rates[2] = 55; in hostap_get_hw_feature_data() 1134 mode->rates[3] = 110; in hostap_get_hw_feature_data()
|
D | driver_nl80211.c | 4333 struct nlattr *rates; in wpa_driver_nl80211_scan() local 4337 rates = nla_nest_start(msg, NL80211_ATTR_SCAN_SUPP_RATES); in wpa_driver_nl80211_scan() 4338 if (rates == NULL) in wpa_driver_nl80211_scan() 4349 nla_nest_end(msg, rates); in wpa_driver_nl80211_scan() 5675 mode->rates = os_calloc(mode->num_rates, sizeof(int)); in phy_info_rates() 5676 if (!mode->rates) in phy_info_rates() 5687 mode->rates[idx] = nla_get_u32( in phy_info_rates() 5793 if (modes[m].rates[i] > 200) { in wpa_driver_nl80211_postprocess_modes() 5840 mode->rates = os_malloc(4 * sizeof(int)); in wpa_driver_nl80211_postprocess_modes() 5841 if (mode->rates == NULL) { in wpa_driver_nl80211_postprocess_modes() [all …]
|
/external/iproute2/doc/ |
D | nstat.sgml | 47 <item><tt/-t INTERVAL/ - time interval to average rates. Default value 92 for large time. Also <tt/Xstat/ daemon calculates average rates. 94 f.e. for gigabit rates byte counters overflow not more frequently than 96 From the other hand, when <tt/Xstat/ is used for estimating rates
|
/external/linux-tools-perf/Documentation/ |
D | perf-report.txt | 88 - graph: use a graph tree, displaying absolute overhead rates. 89 - fractal: like graph, but displays relative rates. Each branch of
|
/external/valgrind/main/VEX/ |
D | TODO.txt | 19 Assess tt_fast miss rates
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | bss.h | 126 int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
|
D | bss.c | 1126 int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates) in wpa_bss_get_bit_rates() argument 1148 *rates = r; in wpa_bss_get_bit_rates()
|
D | android.config | 226 # Support HT overrides (disable HT/HT40, mask MCS rates, etc.) 229 # Support VHT overrides (disable VHT, mask MCS rates, etc.)
|
D | defconfig | 228 # Support HT overrides (disable HT/HT40, mask MCS rates, etc.) 231 # Support VHT overrides (disable VHT, mask MCS rates, etc.)
|
/external/wpa_supplicant_8/src/ap/ |
D | hw_features.c | 41 os_free(hw_features[i].rates); in hostapd_free_hw_features() 158 mode->rates[i])) in hostapd_prepare_rates() 162 rate->rate = mode->rates[i]; in hostapd_prepare_rates()
|
/external/chromium_org/third_party/lcov/ |
D | README | 14 * HTML based output: coverage rates are additionally indicated using bar
|
/external/e2fsprogs/ |
D | e2fsprogs.spec.in | 58 uniqueness of time-based UUID generation even at very high rates on
|
/external/chromium_org/ppapi/api/ |
D | ppb_audio_config.idl | 29 * PP_AudioSampleRate is an enumeration of the different audio sampling rates.
|
/external/libvorbis/doc/ |
D | rfc5215.txt | 123 over an exceptionally wide range of bit rates. At the high quality/ 126 and higher sample rates (from 8kHz telephony to 192kHz digital 1196 rates, so it is possible to adapt network bandwidth by adjusting the 1198 encoded at different bit rates.
|
/external/iproute2/doc/actions/ |
D | actions-general | 107 i selected the metering rates to be small so that i can show better how
|
/external/valgrind/main/docs/internals/ |
D | 3_0_BUGSTATUS.txt | 315 n-i-bz Cachegrind shows incorrect miss rates when counts are
|