Home
last modified time | relevance | path

Searched refs:bypass (Results 1 – 25 of 177) sorted by relevance

12345678

/external/iptables/extensions/
Dlibxt_NFQUEUE.t12 -j NFQUEUE --queue-num 10 --queue-bypass;=;OK
13 …UE --queue-balance 0:6 --queue-cpu-fanout --queue-bypass;-j NFQUEUE --queue-balance 0:6 --queue-by…
14 -j NFQUEUE --queue-bypass --queue-balance 0:6 --queue-cpu-fanout;-j NFQUEUE --queue-balance 0:6 --q…
15 -j NFQUEUE --queue-balance 0:6 --queue-bypass;=;OK
16 -j NFQUEUE --queue-bypass;-j NFQUEUE --queue-num 0 --queue-bypass;OK
Dlibxt_NFQUEUE.c123 info->bypass |= NFQ_FLAG_BYPASS; in NFQUEUE_parse_v2()
189 if (info->bypass & NFQ_FLAG_BYPASS) in NFQUEUE_print_v2()
244 if (info->bypass & NFQ_FLAG_BYPASS) in NFQUEUE_save_v2()
312 if (info->bypass & NFQ_FLAG_BYPASS) in NFQUEUE_xlate_v2()
Dlibxt_NFQUEUE.man10 \fBqueue-bypass\fP in 2.6.39.
23 \fB\-\-queue\-bypass\fP
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/CodeGenPrepare/NVPTX/
Dbypass-slow-div-constant-numerator.ll6 ; When we bypass slow div with a constant numerator which fits into the bypass
7 ; width, we still emit the bypass code, but we don't 'or' the numerator with
20 ; When we try to bypass slow div with a constant numerator which *doesn't* fit
21 ; into the bypass width, leave it as a plain 64-bit div with no bypass.
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/
Dopt-stats.py56 bypass = defaultdict(int) variable
59 bypass[r.Pass] += 1
71 for (passname, count) in sorted(bypass.items(), key=operator.itemgetter(1),
/external/python/cpython2/Lib/test/
Dtest_urllib.py186 bypass = urllib.proxy_bypass_environment
189 self.assertTrue(bypass('localhost'))
190 self.assertTrue(bypass('LocalHost')) # MixedCase
191 self.assertTrue(bypass('LOCALHOST')) # UPPERCASE
192 self.assertTrue(bypass('newdomain.com:1234'))
193 self.assertTrue(bypass('foo.d.o.t')) # issue 29142
194 self.assertTrue(bypass('anotherdomain.com:8888'))
195 self.assertTrue(bypass('www.newdomain.com:1234'))
196 self.assertFalse(bypass('prelocalhost'))
197 self.assertFalse(bypass('newdomain.com')) # no port
[all …]
/external/zlib/src/examples/
Dgzappend.c204 unsigned bypass; in skip() local
208 bypass = n & ~((1U << in->size) - 1); in skip()
209 if (bypass) { in skip()
210 if (lseek(in->fd, (off_t)bypass, SEEK_CUR) == -1) in skip()
212 n -= bypass; in skip()
/external/sonivox/arm-wt-22k/lib_src/
Deas_chorus.c111 pChorusData->bypass = EAS_CHORUS_BYPASS_DEFAULT; in ChorusInit()
273 if (pChorusData->bypass == EAS_TRUE || pChorusData->m_nLevel == 0) in ChorusProcess()
439 *pValue = (EAS_I32) p->bypass; in ChorusGetParam()
487 p->bypass = (EAS_BOOL) value; in ChorusSetParam()
Deas_chorusdata.h93 EAS_BOOL bypass; member
/external/u-boot/doc/device-tree-bindings/clock/
Dst,stm32mp1.txt62 0x0: bypass (division by 1)
174 - "st,bypass" Configure the oscillator bypass mode (HSEBYP, LSEBYP)
187 st,bypass;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/
DTargetItinerary.td29 // Pipeline bypass / forwarding - These values specifies the symbolic names of
96 // a def by an instruction is available on a specific bypass and the use can
97 // read from the same bypass, then the operand use latency is reduced by one.
134 // info. Subtargets using NoItineraries can bypass the scheduler's
/external/llvm/include/llvm/Target/
DTargetItinerary.td29 // Pipeline bypass / forwarding - These values specifies the symbolic names of
96 // a def by an instruction is available on a specific bypass and the use can
97 // read from the same bypass, then the operand use latency is reduced by one.
134 // info. Subtargets using NoItineraries can bypass the scheduler's
/external/u-boot/arch/arm/mach-socfpga/include/mach/
Dclock_manager_s10.h76 u32 bypass; member
104 u32 bypass; member
Dclock_manager_arria10.h17 u32 bypass; member
44 u32 bypass; member
/external/python/cpython3/Lib/test/
Dtest_urllib.py249 bypass = urllib.request.proxy_bypass_environment
252 self.assertTrue(bypass('localhost'))
253 self.assertTrue(bypass('LocalHost')) # MixedCase
254 self.assertTrue(bypass('LOCALHOST')) # UPPERCASE
255 self.assertTrue(bypass('newdomain.com:1234'))
256 self.assertTrue(bypass('foo.d.o.t')) # issue 29142
257 self.assertTrue(bypass('anotherdomain.com:8888'))
258 self.assertTrue(bypass('www.newdomain.com:1234'))
259 self.assertFalse(bypass('prelocalhost'))
260 self.assertFalse(bypass('newdomain.com')) # no port
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetSchedule.td26 // Pipeline bypass / forwarding - These values specifies the symbolic names of
93 // a def by an instruction is available on a specific bypass and the use can
94 // read from the same bypass, then the operand use latency is reduced by one.
/external/u-boot/arch/arm/mach-tegra/tegra20/
Dwarmboot_avp.c175 pllx_base.bypass = 1; in wb_start()
192 pllx_base.bypass = 0; in wb_start()
/external/u-boot/arch/arm/dts/
Ddra72-evm-tps65917.dtsi89 regulator-allow-bypass;
96 regulator-allow-bypass;
/external/iptables/include/linux/netfilter/
Dxt_NFQUEUE.h26 __u16 bypass; member
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_NFQUEUE.h27 __u16 bypass; member
/external/u-boot/drivers/clk/
Dclk_stm32mp1.c1146 static void stm32mp1_lse_enable(fdt_addr_t rcc, int bypass, int lsedrv) in stm32mp1_lse_enable() argument
1150 if (bypass) in stm32mp1_lse_enable()
1185 static void stm32mp1_hse_enable(fdt_addr_t rcc, int bypass, int css) in stm32mp1_hse_enable() argument
1187 if (bypass) in stm32mp1_hse_enable()
1550 int bypass; in stm32mp1_clktree() local
1554 bypass = dev_read_bool(dev, "st,bypass"); in stm32mp1_clktree()
1559 stm32mp1_lse_enable(rcc, bypass, lsedrv); in stm32mp1_clktree()
1563 int bypass, css; in stm32mp1_clktree() local
1566 bypass = dev_read_bool(dev, "st,bypass"); in stm32mp1_clktree()
1569 stm32mp1_hse_enable(rcc, bypass, css); in stm32mp1_clktree()
Dclk_zynq.c133 u32 clk_ctrl, reset, pwrdwn, mul, bypass; in zynq_clk_get_pll_rate() local
142 bypass = clk_ctrl & PLLCTRL_BPFORCE_MASK; in zynq_clk_get_pll_rate()
143 if (bypass) in zynq_clk_get_pll_rate()
/external/u-boot/board/aristainetos/
Daxi.cfg19 /* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
/external/u-boot/board/advantech/dms-ba16/
Dclocks.cfg12 /* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
/external/u-boot/board/tqc/tqma6/
Dclocks.cfg21 /* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */

12345678