Home
last modified time | relevance | path

Searched refs:code (Results 5326 - 5350 of 8181) sorted by relevance

1...<<211212213214215216217218219220>>...328

/kernel/linux/linux-6.6/kernel/
H A Dseccomp.c269 * seccomp_check_filter - verify seccomp filter code
274 * redirects all filter code that loads struct sk_buff data
285 u16 code = ftest->code; in seccomp_check_filter() local
288 switch (code) { in seccomp_check_filter()
290 ftest->code = BPF_LDX | BPF_W | BPF_ABS; in seccomp_check_filter()
296 ftest->code = BPF_LD | BPF_IMM; in seccomp_check_filter()
300 ftest->code = BPF_LDX | BPF_IMM; in seccomp_check_filter()
741 u16 code = insn->code; in seccomp_is_const_allow() local
[all...]
/kernel/linux/linux-6.6/net/ipv6/
H A Dudp.c465 u8 type, u8 code, int offset, __be32 info) in __udp6_lib_err_encap_no_sk()
471 u8 type, u8 code, int offset, __be32 info); in __udp6_lib_err_encap_no_sk()
478 if (handler && !handler(skb, opt, type, code, offset, info)) in __udp6_lib_err_encap_no_sk()
509 u8 type, u8 code, __be32 info) in __udp6_lib_err_encap()
547 sk = ERR_PTR(__udp6_lib_err_encap_no_sk(skb, opt, type, code, in __udp6_lib_err_encap()
558 u8 type, u8 code, int offset, __be32 info, in __udp6_lib_err()
580 opt, type, code, info); in __udp6_lib_err()
595 harderr = icmpv6_err_convert(type, code, &err); in __udp6_lib_err()
674 u8 code, int offset, __be32 info) in udpv6_err()
676 return __udp6_lib_err(skb, opt, type, code, offse in udpv6_err()
463 __udp6_lib_err_encap_no_sk(struct sk_buff *skb, struct inet6_skb_parm *opt, u8 type, u8 code, int offset, __be32 info) __udp6_lib_err_encap_no_sk() argument
502 __udp6_lib_err_encap(struct net *net, const struct ipv6hdr *hdr, int offset, struct udphdr *uh, struct udp_table *udptable, struct sock *sk, struct sk_buff *skb, struct inet6_skb_parm *opt, u8 type, u8 code, __be32 info) __udp6_lib_err_encap() argument
557 __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt, u8 type, u8 code, int offset, __be32 info, struct udp_table *udptable) __udp6_lib_err() argument
672 udpv6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, u8 type, u8 code, int offset, __be32 info) udpv6_err() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dproresenc_kostya.c383 rice_order = codebook >> 5; /* rice code order */ in encode_vlc_codeword()
384 exp_order = (codebook >> 2) & 7; /* exp golomb code order */ in encode_vlc_codeword()
412 int codebook = 3, code, dc, prev_dc, delta, sign, new_sign; in encode_dcs() local
425 code = MAKE_CODE(delta); in encode_dcs()
426 encode_vlc_codeword(pb, ff_prores_dc_codebook[codebook], code); in encode_dcs()
427 codebook = (code + (code & 1)) >> 1; in encode_dcs()
634 rice_order = codebook >> 5; /* rice code order */ in estimate_vlc()
635 exp_order = (codebook >> 2) & 7; /* exp golomb code order */ in estimate_vlc()
653 int codebook = 3, code, d in estimate_dcs() local
[all...]
/third_party/backends/backend/genesys/
H A Dlow.cpp1017 // BUG: the following code will likely scan too much. Use the CANON_5600F approach in compute_session()
1322 int code = static_cast<int>(283 * (1 - gain)); in compute_frontend_gain_wolfson() local
1323 return clamp(code, 0, 255); in compute_frontend_gain_wolfson()
1328 int code = static_cast<int>((target_value / value) * 12); in compute_frontend_gain_lide_80() local
1329 return clamp(code, 0, 255); in compute_frontend_gain_lide_80()
1334 // this code path is similar to what generic wolfson code path uses and uses similar constants, in compute_frontend_gain_wolfson_gl841()
1338 int code = static_cast<int>(283 - 208 / inv_gain); in compute_frontend_gain_wolfson_gl841() local
1339 return clamp(code, 0, 255); in compute_frontend_gain_wolfson_gl841()
1344 // this code pat in compute_frontend_gain_wolfson_gl846_gl847_gl124()
1347 int code = static_cast<int>(283 - 208 / inv_gain); compute_frontend_gain_wolfson_gl846_gl847_gl124() local
1369 int code = static_cast<int>((378.0f / 5.0f) * ((target_value - value) / target_value)); compute_frontend_gain_analog_devices() local
[all...]
/third_party/node/deps/v8/src/compiler/
H A Djs-generic-lowering.cc2 // Use of this source code is governed by a BSD-style license that can be
9 #include "src/codegen/code-factory.h"
102 Node* stub_code = jsgraph()->HeapConstant(callable.code()); in ReplaceWithBuiltinCall()
137 Node* stub_code = jsgraph()->HeapConstant(callable.code()); in ReplaceUnaryOpWithBuiltinCall()
344 // If the code below will be used for the invalid feedback case, it needs to in LowerJSLoadNamedFromSuper()
382 // native-context-independent code). in LowerJSGetIterator()
385 // the size of the compiled code as it would insert 1 call to the builtin in LowerJSGetIterator()
608 // If this fails, we might need to update the parameter reordering code in LowerJSCreateArray()
840 // If this fails, we might need to update the parameter reordering code in LowerJSConstructForwardVarargs()
846 Node* stub_code = jsgraph()->HeapConstant(callable.code()); in LowerJSConstructForwardVarargs()
[all...]
/third_party/node/deps/v8/src/regexp/
H A Dregexp.cc2 // Use of this source code is governed by a BSD-style license that can be
9 #include "src/diagnostics/code-tracer.h"
160 // than the code used for atom matches.
191 // Caching is based only on the pattern and flags, but code also differs when in Compile()
431 Object compiled_code = re->code(is_one_byte); in EnsureCompiledIrregexp()
461 Object entry = re->code(is_one_byte); in RegExpCodeIsValidForPreCompilation()
517 // CSA code in ConstructNewResultFromMatchInfo requires these strings to be in CreateCaptureNameMap()
555 // native code for all regexp objects. in CompileIrregexp()
572 Code code = Code::cast(*compile_data.code); in CompileIrregexp() local
[all...]
/third_party/python/Lib/idlelib/
H A Dpyshell.py26 from code import InteractiveInterpreter
70 # checking user's code.
111 Rather than repeating the linecache code, patch it to save the
675 code = compile(source, filename, "exec")
684 self.runcode(code)
755 def runcommand(self, code):
756 "Run the code without invoking the debugger"
757 # The code better not raise an exception!
762 self.rpcclt.remotequeue("exec", "runcode", (code,), {})
764 exec(code, sel
[all...]
/third_party/python/Lib/test/
H A Dtest_asyncgen.py73 # The C code is way more low-level than this, as it implements
88 code = '''async def foo():
94 exec(code, {}, {})
97 code = '''async def foo():
102 exec(code, {}, {})
105 code = '''async def foo():
112 exec(code, {}, {})
115 code = '''async def foo():
121 exec(code, {}, {})
124 code
[all...]
/third_party/python/Lib/test/test_warnings/
H A D__init__.py1219 code = "import sys; sys.modules.pop('warnings', None); sys.modules['_warnings'] = None; "
1221 code = ""
1222 code += "import warnings; [print(f) for f in warnings.filters]"
1224 rc, stdout, stderr = assert_python_ok("-c", code, __isolated=True)
1305 code = """
1315 rc, out, err = assert_python_ok("-c", code)
1327 code = "f = open(%a)" % __file__
1328 rc, out, err = assert_python_ok("-Wd", "-c", code)
1332 code = "import warnings; f = open(%a)" % __file__
1333 rc, out, err = assert_python_ok("-Wd", "-c", code)
[all...]
/third_party/python/Python/
H A Dmarshal.c3 This is primarily intended for writing and reading compiled Python code,
5 code objects, are supported.
19 [clinic start generated code]*/
20 /*[clinic end generated code: output=da39a3ee5e6b4b0d input=c982b7930dee17db]*/
808 /* r_long64 deals with the TYPE_INT64 code. */
990 int type, code = r_byte(p); in r_object() local
994 if (code == EOF) { in r_object()
1008 flag = code & FLAG_REF; in r_object()
1009 type = code & ~FLAG_REF; in r_object()
1360 PyObject *code in r_object() local
[all...]
/third_party/ffmpeg/
H A Dconfigure98 --enable-gpl allow use of GPL code, the resulting libs
101 --enable-nonfree allow use of nonfree code, the resulting libs
139 --disable-dct disable DCT code
140 --disable-dwt disable DWT code
141 --disable-error-resilience disable error resilience code
142 --disable-lsp disable LSP code
143 --disable-mdct disable MDCT code
144 --disable-rdft disable RDFT code
145 --disable-fft disable FFT code
146 --disable-faan disable floating point AAN (I)DCT code
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dgf100.c1573 u32 code = nvkm_rd32(device, 0x409814); in gf100_gr_ctxctl_isr() local
1574 if (code == E_BAD_FWMTHD) { in gf100_gr_ctxctl_isr()
1585 nvkm_error(subdev, "FECS ucode error %d\n", code); in gf100_gr_ctxctl_isr()
1619 u32 code = nvkm_rd32(device, 0x400110); in gf100_gr_intr() local
1665 nvkm_enum_find(nv50_data_error_names, code); in gf100_gr_intr()
1668 code, en ? en->name : "", chid, inst << 12, in gf100_gr_intr()
1700 struct nvkm_blob *code, struct nvkm_blob *data) in gf100_gr_init_fw()
1703 nvkm_falcon_load_imem(falcon, code->data, 0x0, code->size, 0, 0, false); in gf100_gr_init_fw()
1847 gr->func->fecs.ucode->code in gf100_gr_init_ctxctl_int()
1699 gf100_gr_init_fw(struct nvkm_falcon *falcon, struct nvkm_blob *code, struct nvkm_blob *data) gf100_gr_init_fw() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/asm/
H A Darmv8-mont.pl28 # compiler-generated code. Recall that compiler is instructed to use
38 # comparison to compiler-generated code. On Cortex-A57 improvement
69 $code.=<<___;
308 $code.=<<___;
376 $code.=<<___;
396 $code.=<<___;
414 $code.=<<___;
437 $code.=<<___;
460 $code.=<<___;
473 $code
[all...]
/third_party/openssl/crypto/bn/asm/
H A Darmv8-mont.pl28 # compiler-generated code. Recall that compiler is instructed to use
38 # comparison to compiler-generated code. On Cortex-A57 improvement
69 $code.=<<___;
308 $code.=<<___;
376 $code.=<<___;
396 $code.=<<___;
414 $code.=<<___;
437 $code.=<<___;
460 $code.=<<___;
473 $code
[all...]
/kernel/linux/linux-5.10/arch/arc/lib/
H A Dmemset.S30 .Laligned: ; This code address should be aligned for speed.
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H A Dprocessor.h86 int signo, code; member
/kernel/linux/linux-5.10/arch/powerpc/platforms/86xx/
H A Dmpc86xx_smp.c15 #include <asm/code-patching.h>
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/
H A Dicmp.c76 u8 type, u8 code, in nip_icmp_err_handler()
74 nip_icmp_err_handler(struct sk_buff *skb, struct ninet_skb_parm *opt, u8 type, u8 code, int offset, __be32 info) nip_icmp_err_handler() argument
/kernel/linux/linux-5.10/arch/arm/mach-prima2/
H A Dsleep.S45 @ Following code has to run from cache since
/kernel/linux/linux-5.10/arch/arm/mach-s3c/
H A Dsleep-s3c2410.S8 * Based on PXA/SA1100 sleep code by:
47 @@ align next bit of code to cache line
/kernel/linux/linux-5.10/arch/x86/platform/geode/
H A Dnet5501.c31 .code = KEY_RESTART,
H A Dgeos.c29 .code = KEY_RESTART,
/kernel/linux/linux-6.6/arch/arc/lib/
H A Dmemset.S30 .Laligned: ; This code address should be aligned for speed.
/kernel/linux/linux-6.6/arch/powerpc/platforms/86xx/
H A Dmpc86xx_smp.c15 #include <asm/code-patching.h>
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/
H A Dpriv.h16 } code; member

Completed in 27 milliseconds

1...<<211212213214215216217218219220>>...328