/third_party/iptables/extensions/ |
D | libxt_NFQUEUE.t | 12 -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
|
D | libxt_NFQUEUE.txlate | 4 iptables-translate -A FORWARD -j NFQUEUE --queue-num 0 --queue-bypass -p TCP --sport 80 5 nft add rule ip filter FORWARD tcp sport 80 counter queue num 0 bypass 7 iptables-translate -A FORWARD -j NFQUEUE --queue-bypass -p TCP --sport 80 --queue-balance 0:3 --que… 8 nft add rule ip filter FORWARD tcp sport 80 counter queue num 0-3 bypass,fanout
|
D | libxt_NFQUEUE.c | 123 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()
|
D | libxt_NFQUEUE.man | 10 \fBqueue-bypass\fP in 2.6.39. 23 \fB\-\-queue\-bypass\fP
|
/third_party/ffmpeg/libavfilter/ |
D | af_speechnorm.c | 52 int bypass; member 192 static double next_gain(AVFilterContext *ctx, double pi_max_peak, int bypass, double state) in next_gain() argument 199 if (bypass) { in next_gain() 208 static void next_pi(AVFilterContext *ctx, ChannelContext *cc, int bypass) in next_pi() argument 224 cc->gain_state = next_gain(ctx, cc->pi_max_peak, bypass, cc->gain_state); in next_pi() 318 …const int bypass = !(av_channel_layout_extract_channel(inlink->channel_layout, ch) & s->channels);… 325 next_pi(ctx, cc, bypass); \ 361 … cc->bypass = !(av_channel_layout_extract_channel(inlink->channel_layout, ch) & s->channels); \ 363 next_pi(ctx, cc, cc->bypass); \ 372 if (cc->bypass) \ [all …]
|
D | vf_deflicker.c | 52 int bypass; member 88 … { "bypass", "leave frames unchanged", OFFSET(bypass), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS }, 386 if (!s->bypass) in filter_frame() 389 for (y = 1 - s->bypass; y < s->nb_planes; y++) { in filter_frame()
|
D | af_asupercut.c | 43 int bypass; member 96 s->bypass = w0 >= 0.5; in get_coeffs() 97 if (s->bypass) in get_coeffs() 299 if (s->bypass) in filter_frame()
|
D | vf_photosensitivity.c | 46 int bypass; member 67 …{ "bypass", "leave frames unchanged", OFFSET(bypass), … 245 if (new_badness < s->badness_threshold || !s->last_frame_av || s->bypass) { in filter_frame()
|
/third_party/python/Lib/test/ |
D | test_urllib.py | 270 bypass = urllib.request.proxy_bypass_environment 273 self.assertTrue(bypass('localhost')) 274 self.assertTrue(bypass('LocalHost')) # MixedCase 275 self.assertTrue(bypass('LOCALHOST')) # UPPERCASE 276 self.assertTrue(bypass('.localhost')) 277 self.assertTrue(bypass('newdomain.com:1234')) 278 self.assertTrue(bypass('.newdomain.com:1234')) 279 self.assertTrue(bypass('foo.d.o.t')) # issue 29142 280 self.assertTrue(bypass('d.o.t')) 281 self.assertTrue(bypass('anotherdomain.com:8888')) [all …]
|
/third_party/mesa3d/src/freedreno/ci/ |
D | deqp-freedreno-a630-vk.toml | 14 # force-bypass testing 20 prefix = "bypass-"
|
D | deqp-freedreno-a630-vk-full.toml | 13 # force-bypass testing 19 prefix = "bypass-"
|
D | deqp-freedreno-a630.toml | 69 # force-bypass testing 80 flakes = ["install/freedreno-a630-bypass-flakes.txt"] 82 prefix = "bypass-"
|
D | freedreno-a630-fails.txt | 35 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.colorburn,Fail 36 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.colordodge,Fail 37 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.darken,Fail 38 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.difference,Fail 39 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.exclusion,Fail 40 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.hardlight,Fail 41 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.hsl_color,Fail 42 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.hsl_hue,Fail 43 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.hsl_luminosity,Fail 44 bypass-dEQP-GLES31.functional.blend_equation_advanced.msaa.hsl_saturation,Fail [all …]
|
/third_party/zlib/examples/ |
D | gzappend.c | 204 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()
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/examples/ |
D | gzappend.c | 204 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()
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/examples/ |
D | gzappend.c | 204 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()
|
/third_party/boost/boost/thread/ |
D | externally_locked_stream.hpp | 72 Stream& bypass() const in bypass() function in boost::stream_guard 113 Stream& bypass() const in bypass() function in boost::externally_locked_stream
|
/third_party/iptables/include/linux/netfilter/ |
D | xt_NFQUEUE.h | 26 __u16 bypass; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/ |
D | TargetItinerary.td | 28 // Pipeline bypass / forwarding - These values specifies the symbolic names of 95 // a def by an instruction is available on a specific bypass and the use can 96 // read from the same bypass, then the operand use latency is reduced by one. 144 // info. Subtargets using NoItineraries can bypass the scheduler's
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/ |
D | tsa_atomic_add_to_first_tensor.h | 54 bool bypass = true) override;
|
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/include/ |
D | Expression.h | 41 ExpressionList getClosure(bool bypass);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCScheduleE500mc.td | 27 // The CFX has a bypass path, allowing non-divide instructions to execute 33 : FuncUnit; // CFX divide bypass path 327 let LoadLatency = 5; // Optimistic load latency assuming bypass.
|
/third_party/flutter/skia/third_party/externals/sfntly/doc/ |
D | unit_tests.md | 31 FontData tests are the longest and you may want to bypass them during
|
/third_party/skia/third_party/externals/sfntly/doc/ |
D | unit_tests.md | 31 FontData tests are the longest and you may want to bypass them during
|
/third_party/expat/ |
D | Makefile.am | 117 @echo 'ERROR: "make -C lib all install" to bypass compilation' >&2
|