/external/iptables/extensions/ |
D | libxt_hashlimit.t | 2 -m hashlimit --hashlimit-above 1/sec --hashlimit-burst 5 --hashlimit-name mini1;=;OK 3 -m hashlimit --hashlimit-above 1000000/sec --hashlimit-burst 5 --hashlimit-name mini1;=;OK 4 -m hashlimit --hashlimit-above 1/min --hashlimit-burst 5 --hashlimit-name mini1;=;OK 5 -m hashlimit --hashlimit-above 1/hour --hashlimit-burst 5 --hashlimit-name mini1;=;OK 7 -m hashlimit --hashlimit-above 1/day --hashlimit-burst 5 --hashlimit-name mini1;;FAIL 8 -m hashlimit --hashlimit-upto 1/sec --hashlimit-burst 5 --hashlimit-name mini1;=;OK 9 -m hashlimit --hashlimit-upto 1000000/sec --hashlimit-burst 5 --hashlimit-name mini1;=;OK 10 -m hashlimit --hashlimit-upto 1/min --hashlimit-burst 5 --hashlimit-name mini1;=;OK 11 -m hashlimit --hashlimit-upto 1/hour --hashlimit-burst 5 --hashlimit-name mini1;=;OK 13 -m hashlimit --hashlimit-upto 1/day --hashlimit-burst 5 --hashlimit-name mini1;;FAIL [all …]
|
D | libxt_hashlimit.c | 104 XTOPT_POINTER(s, cfg.burst)}, 193 to->burst = cfg->burst; in cfg_copy() 245 static uint64_t parse_burst(const char *burst, int revision) in parse_burst() argument 253 if (!xtables_strtoul(burst, &end, &v, 1, max) || in parse_burst() 265 "(max %lumb).", burst, max/1024/1024); in parse_burst() 353 r->cfg.burst = XT_HASHLIMIT_BURST; in hashlimit_init() 363 info->cfg.burst = XT_HASHLIMIT_BURST; in hashlimit_mt4_init_v1() 374 info->cfg.burst = XT_HASHLIMIT_BURST; in hashlimit_mt6_init_v1() 385 info->cfg.burst = XT_HASHLIMIT_BURST; in hashlimit_mt4_init() 396 info->cfg.burst = XT_HASHLIMIT_BURST; in hashlimit_mt6_init() [all …]
|
D | libxt_limit.c | 38 .flags = XTOPT_PUT, XTOPT_POINTER(struct xt_rateinfo, burst), 85 r->burst = XT_LIMIT_BURST; in limit_init() 143 printf(" burst %u", r->burst); in limit_print() 151 if (r->burst != XT_LIMIT_BURST) in limit_save() 152 printf(" --limit-burst %u", r->burst); in limit_save() 187 if (r->burst != 0) in limit_xlate() 188 xt_xlate_add(xl, " burst %u packets", r->burst); in limit_xlate()
|
D | libebt_limit.c | 90 r->burst = EBT_LIMIT_BURST; in brlimit_init() 117 r->burst = num; in brlimit_parse() 159 printf("--limit-burst %u ", r->burst); in brlimit_print()
|
/external/libnl/python/netlink/route/qdisc/ |
D | htb.py | 75 def burst(self): member in HTBClass 76 burst = capi.rtnl_htb_get_rbuffer(self._class._rtnl_class) 77 return util.Size(burst) 79 @burst.setter 80 def burst(self, value): member in HTBClass 86 burst = capi.rtnl_htb_get_cbuffer(self._class._rtnl_class) 87 return util.Size(burst)
|
/external/u-boot/drivers/tpm/ |
D | tpm_tis_lpc.c | 202 u16 burst = 0; in tis_senddata() local 214 burst = burst_count(value); in tis_senddata() 220 while (!burst) { in tis_senddata() 227 burst = burst_count(tpm_read_word(priv, in tis_senddata() 242 count = min((size_t)burst, len - offset - 1); in tis_senddata() 256 burst = burst_count(value); in tis_senddata() 257 if ((offset == (len - 1)) && burst) { in tis_senddata() 302 u16 burst; in tis_readresponse() local 320 while ((burst = burst_count(value)) == 0) { in tis_readresponse() 332 while (burst-- && (offset < expected_count)) { in tis_readresponse()
|
/external/iproute2/tc/ |
D | tc_red.c | 53 int tc_red_eval_ewma(unsigned int qmin, unsigned int burst, unsigned int avpkt) in tc_red_eval_ewma() argument 57 double a = (double)burst + 1 - (double)qmin/avpkt; in tc_red_eval_ewma() 61 burst, 1 + qmin/avpkt); in tc_red_eval_ewma() 65 if (a <= (1 - pow(1-W, burst))/W) in tc_red_eval_ewma()
|
D | q_choke.c | 38 unsigned int burst = 0; in choke_parse_opt() local 77 if (get_unsigned(&burst, *argv, 0)) { in choke_parse_opt() 117 if (!burst) in choke_parse_opt() 118 burst = (2 * opt.qth_min + opt.qth_max) / 3; in choke_parse_opt() 130 wlog = tc_red_eval_ewma(opt.qth_min*avpkt, burst, avpkt); in choke_parse_opt() 136 fprintf(stderr, "CHOKE: WARNING. Burst %d seems to be too large.\n", burst); in choke_parse_opt()
|
D | q_red.c | 39 unsigned int burst = 0; in red_parse_opt() local 69 if (get_unsigned(&burst, *argv, 0)) { in red_parse_opt() 122 if (!burst) in red_parse_opt() 123 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in red_parse_opt() 128 if ((parm = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) { in red_parse_opt() 133 fprintf(stderr, "RED: WARNING. Burst %u seems to be too large.\n", burst); in red_parse_opt()
|
D | q_sfq.c | 42 unsigned int burst = 0; in sfq_parse_opt() local 120 if (get_unsigned(&burst, *argv, 0)) { in sfq_parse_opt() 168 if (!burst) in sfq_parse_opt() 169 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in sfq_parse_opt() 181 wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt); in sfq_parse_opt() 187 fprintf(stderr, "SFQ: WARNING. Burst %u seems to be too large.\n", burst); in sfq_parse_opt()
|
D | q_gred.c | 124 unsigned int burst = 0; in gred_parse_opt() local 177 if (get_unsigned(&burst, *argv, 0)) { in gred_parse_opt() 228 if (!burst) { in gred_parse_opt() 229 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in gred_parse_opt() 230 fprintf(stderr, "GRED: set burst to %u\n", burst); in gred_parse_opt() 236 if ((parm = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) { in gred_parse_opt() 242 burst); in gred_parse_opt()
|
D | m_police.c | 219 p.burst = tc_calc_xmittime(p.rate.rate, buffer); in act_parse_police() 285 buffer = tc_calc_xmitsize(p->rate.rate, p->burst); in print_police() 289 fprintf(f, "[%08x] ", p->burst); in print_police()
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
D | xt_hashlimit.h | 35 __u32 burst; /* Period multiplier for upper limit. */ member 59 __u32 burst; /* Period multiplier for upper limit. */ member 72 __u64 burst; /* Period multiplier for upper limit. */ member 86 __u64 burst; /* Period multiplier for upper limit. */ member
|
/external/iptables/include/linux/netfilter/ |
D | xt_hashlimit.h | 31 __u32 burst; /* Period multiplier for upper limit. */ member 55 __u32 burst; /* Period multiplier for upper limit. */ member 68 __u64 burst; /* Period multiplier for upper limit. */ member
|
/external/tensorflow/tensorflow/lite/nnapi/ |
D | NeuralNetworksShim.h | 1026 ANeuralNetworksBurst** burst) { in ANeuralNetworksBurst_create() argument 1028 EXECUTE_FUNCTION_RETURN(compilation, burst); in ANeuralNetworksBurst_create() 1039 inline void ANeuralNetworksBurst_free(ANeuralNetworksBurst* burst) { in ANeuralNetworksBurst_free() argument 1041 EXECUTE_FUNCTION(burst); in ANeuralNetworksBurst_free() 1065 ANeuralNetworksExecution* execution, ANeuralNetworksBurst* burst) { in ANeuralNetworksExecution_burstCompute() argument 1067 EXECUTE_FUNCTION_RETURN(execution, burst); in ANeuralNetworksExecution_burstCompute()
|
D | nnapi_implementation.h | 893 ANeuralNetworksBurst** burst); 903 void (*ANeuralNetworksBurst_free)(ANeuralNetworksBurst* burst); 926 ANeuralNetworksExecution* execution, ANeuralNetworksBurst* burst);
|
D | NeuralNetworksTypes.h | 477 ANeuralNetworksCompilation* compilation, ANeuralNetworksBurst** burst); 479 typedef void (*ANeuralNetworksBurst_free_fn)(ANeuralNetworksBurst* burst); 482 ANeuralNetworksExecution* execution, ANeuralNetworksBurst* burst);
|
/external/u-boot/doc/device-tree-bindings/net/ |
D | stmmac.txt | 21 - snps,fixed-burst Program the DMA to use the fixed burst mode 22 - snps,mixed-burst Program the DMA to use the mixed burst mode 46 - snps,burst_len: The AXI burst lenth value of the AXI BUS MODE register.
|
D | snps,dwc-qos-ethernet.txt | 114 - snps,burst-map: Bitmap of allowed AXI burst lengts, with the LSB 116 - snps,txpbl: DMA Programmable burst length for the TX DMA 117 - snps,rxpbl: DMA Programmable burst length for the RX DMA 151 snps,burst-map = <0x7>;
|
/external/iproute2/doc/actions/ |
D | actions-general | 15 127.0.0.1/32 flowid 1:1 police mtu 4000 rate 1500kbit burst 90k 56 police mtu 4000 rate 1500kbit burst 90k 62 action police mtu 4000 rate 1500kbit burst 90k 150 action police rate 1kbit burst 9k pipe \ 158 action police index 30 mtu 5000 rate 1kbit burst 10k pipe \ 163 action police index 20 mtu 5000 rate 1kbit burst 90k drop 178 action order 2: police 1 action pipe rate 1Kbit burst 9Kb mtu 2Kb 183 action order 4: police 30 action pipe rate 1Kbit burst 10Kb mtu 5000b 188 action order 6: police 20 action drop rate 1Kbit burst 90Kb mtu 5000b 221 action order 2: police 1 action pipe rate 1Kbit burst 9Kb mtu 2Kb [all …]
|
/external/libnl/tests/ |
D | test-complex-HTB-with-hash-filters.c | 333 uint32_t burst, uint32_t cburst, in class_add_HTB() argument 371 if (burst) { in class_add_HTB() 373 rtnl_htb_set_rbuffer(class, burst); in class_add_HTB() 393 uint32_t burst, uint32_t cburst in class_add_HTB_root() argument 427 if (burst) { in class_add_HTB_root() 428 rtnl_htb_set_rbuffer(class, burst); in class_add_HTB_root()
|
/external/u-boot/drivers/misc/ |
D | cros_ec.c | 820 uint32_t burst = cros_ec_flash_write_burst_size(dev); in cros_ec_flash_write() local 829 for (off = offset; off < end; off += burst, data += burst) { in cros_ec_flash_write() 833 todo = min(end - off, burst); in cros_ec_flash_write() 876 uint32_t burst = cros_ec_flash_write_burst_size(dev); in cros_ec_flash_read() local 881 for (off = offset; off < end; off += burst, data += burst) { in cros_ec_flash_read() 883 min(end - off, burst)); in cros_ec_flash_read()
|
/external/bcc/examples/networking/neighbor_sharing/ |
D | tc_neighbor_sharing.py | 35 classid=1, rate="128kbit", burst=1024 * 32, mtu=16 * 1024) 38 classid=2, rate="1024kbit", burst=1024 * 32, mtu=16 * 1024)
|
/external/u-boot/doc/device-tree-bindings/video/ |
D | exynos_mipi_dsi.txt | 16 samsung,dsim-config-e-burst-mode: selects Burst mode in Video mode. 17 in Non-burst mode, RGB data area is filled with RGB data and 63 samsung,dsim-config-e-burst-mode = <1>;
|
/external/u-boot/arch/arm/dts/ |
D | zynqmp-zc1232-revA.dts | 75 ceva,p0-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>; 79 ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
|