/external/iptables/extensions/ |
D | libxt_limit.c | 112 static const struct rates struct 116 } rates[] = { { "day", XT_LIMIT_SCALE*24*60*60 }, argument 130 for (i = 1; i < ARRAY_SIZE(rates); ++i) in print_rate() 131 if (period > rates[i].mult in print_rate() 132 || rates[i].mult/period < rates[i].mult%period) in print_rate() 135 printf(" %u/%s", rates[i-1].mult / period, rates[i-1].name); in print_rate()
|
D | libxt_hashlimit.c | 428 static const struct rates struct 432 } rates[] = { { "day", XT_HASHLIMIT_SCALE*24*60*60 }, argument 446 for (i = 1; i < ARRAY_SIZE(rates); ++i) in print_rate() 447 if (period > rates[i].mult in print_rate() 448 || rates[i].mult/period < rates[i].mult%period) in print_rate() 451 printf(" %u/%s", rates[i-1].mult / period, rates[i-1].name); in print_rate() 453 return rates[i-1].mult / XT_HASHLIMIT_SCALE * 1000; 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/tcpdump/ |
D | print-802_11.c | 71 for (z = 0; z < p.rates.length ; z++) { \ 72 PRINT_RATE(sep, p.rates.rate[z], \ 73 (p.rates.rate[z] & 0x80 ? "*" : "")); \ 76 if (p.rates.length != 0) \ 661 struct rates_t rates; in parse_elements() local 753 memcpy(&rates, p + offset, 2); in parse_elements() 756 if (rates.length != 0) { in parse_elements() 757 if (rates.length > sizeof rates.rate) in parse_elements() 759 if (!TTEST2(*(p + offset), rates.length)) in parse_elements() 761 if (length < rates.length) in parse_elements() [all …]
|
D | ieee802_11.h | 240 struct rates_t rates; member
|
/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/wpa_supplicant_8/src/drivers/ |
D | driver_nl80211_capa.c | 1076 mode->rates = os_calloc(mode->num_rates, sizeof(int)); in phy_info_rates() 1077 if (!mode->rates) in phy_info_rates() 1088 mode->rates[idx] = nla_get_u32( in phy_info_rates() 1194 if (modes[m].rates[i] > 200) { in wpa_driver_nl80211_postprocess_modes() 1241 mode->rates = os_malloc(4 * sizeof(int)); in wpa_driver_nl80211_postprocess_modes() 1242 if (mode->rates == NULL) { in wpa_driver_nl80211_postprocess_modes() 1249 if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 && in wpa_driver_nl80211_postprocess_modes() 1250 mode11g->rates[i] != 55 && mode11g->rates[i] != 110) in wpa_driver_nl80211_postprocess_modes() 1252 mode->rates[mode->num_rates] = mode11g->rates[i]; in wpa_driver_nl80211_postprocess_modes() 1260 os_free(mode->rates); in wpa_driver_nl80211_postprocess_modes()
|
D | driver_hostap.c | 1124 mode->rates = os_zalloc(rlen); in hostap_get_hw_feature_data() 1125 if (mode->channels == NULL || mode->rates == NULL) { in hostap_get_hw_feature_data() 1127 os_free(mode->rates); in hostap_get_hw_feature_data() 1140 mode->rates[0] = 10; in hostap_get_hw_feature_data() 1141 mode->rates[1] = 20; in hostap_get_hw_feature_data() 1142 mode->rates[2] = 55; in hostap_get_hw_feature_data() 1143 mode->rates[3] = 110; in hostap_get_hw_feature_data()
|
D | driver_nl80211_scan.c | 229 struct nlattr *rates; in wpa_driver_nl80211_scan() local 233 rates = nla_nest_start(msg, NL80211_ATTR_SCAN_SUPP_RATES); in wpa_driver_nl80211_scan() 234 if (rates == NULL) in wpa_driver_nl80211_scan() 246 nla_nest_end(msg, rates); in wpa_driver_nl80211_scan()
|
/external/libopus/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() 272 … if(opus_encoder_ctl(enc, OPUS_SET_FORCE_CHANNELS((rates[j]>=64000?2:1)))!=OPUS_OK)test_failed(); in run_test1() 329 …int rates[16]={4000,12000,32000,8000,16000,32000,48000,88000,4000,12000,32000,8000,16000,32000,480… in run_test1() local 333 rate=rates[j]+fast_rand()%rates[j]; in run_test1()
|
/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/sonic/samples/ |
D | README | 1 These wav files show how Sonic performs at increasing speech rates. All sound 23 though Sonic can speed up espeak to much faster rates.
|
/external/libvncserver/x11vnc/ |
D | Makefile.am | 34 …rates.c remote.c scan.c screen.c selection.c solid.c sslcmds.c sslhelper.c uinput.c unixpw.c user.…
|
D | Makefile.in | 82 x11vnc-pointer.$(OBJEXT) x11vnc-rates.$(OBJEXT) \ 363 …rates.c remote.c scan.c screen.c selection.c solid.c sslcmds.c sslhelper.c uinput.c unixpw.c user.… 477 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x11vnc-rates.Po@am__quote@ 789 x11vnc-rates.o: rates.c 790 …(CFLAGS) -MT x11vnc-rates.o -MD -MP -MF $(DEPDIR)/x11vnc-rates.Tpo -c -o x11vnc-rates.o `test -f '… 791 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/x11vnc-rates.Tpo $(DEPDIR)/x11vnc-rates.Po 794 …CPPFLAGS) $(x11vnc_CFLAGS) $(CFLAGS) -c -o x11vnc-rates.o `test -f 'rates.c' || echo '$(srcdir)/'`… 796 x11vnc-rates.obj: rates.c 797 …AGS) $(x11vnc_CFLAGS) $(CFLAGS) -MT x11vnc-rates.obj -MD -MP -MF $(DEPDIR)/x11vnc-rates.Tpo -c -o … 798 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/x11vnc-rates.Tpo $(DEPDIR)/x11vnc-rates.Po [all …]
|
/external/valgrind/VEX/ |
D | TODO.txt | 19 Assess tt_fast miss rates
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | RateLimiterTest.java | 278 int[] rates = { 1000, 1, 10, 1000000, 10, 1}; in testWeNeverGetABurstMoreThanOneSec() local 279 for (int rate : rates) { in testWeNeverGetABurstMoreThanOneSec()
|
/external/skia/experimental/SimpleiOSApp/iPad/ |
D | AppDelegate_iPad.m | 32 …to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use …
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | bss.h | 135 int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
|
D | bss.c | 1218 int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates) in wpa_bss_get_bit_rates() argument 1240 *rates = r; in wpa_bss_get_bit_rates()
|
/external/wpa_supplicant_8/src/ap/ |
D | hw_features.c | 38 os_free(hw_features[i].rates); in hostapd_free_hw_features() 198 mode->rates[i])) in hostapd_prepare_rates() 202 rate->rate = mode->rates[i]; in hostapd_prepare_rates()
|
/external/jetty/src/resources/org/eclipse/jetty/servlets/jmx/ |
D | DoSFilter-mbean.properties | 8 maxIdleTrackerMs: maximum amount of time (in milliseconds) to keep track of request rates for a con…
|
/external/skia/experimental/SimpleiOSApp/iPhone/ |
D | AppDelegate_iPhone.m | 32 …to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use …
|
/external/linux-tools-perf/src/tools/perf/Documentation/ |
D | perf-report.txt | 124 - graph: use a graph tree, displaying absolute overhead rates. 125 - fractal: like graph, but displays relative rates. Each branch of
|
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
D | j2k.h | 252 OPJ_FLOAT32 rates[100]; member
|
/external/libvncserver/x11vnc/misc/turbovnc/ |
D | README | 22 TurboVNC is an optimized VNC for fast refresh rates on fast networks.
|