Home
last modified time | relevance | path

Searched refs:encoding (Results 1 – 25 of 587) sorted by relevance

12345678910>>...24

/openbmc/linux/tools/testing/selftests/drivers/net/netdevsim/
H A Dethtool-fec.sh17 $ETHTOOL --set-fec $NSIM_NETDEV encoding auto
25 $ETHTOOL --set-fec $NSIM_NETDEV encoding $o
33 $ETHTOOL --set-fec $NSIM_NETDEV encoding $o
41 $ETHTOOL --set-fec $NSIM_NETDEV encoding $o
49 $ETHTOOL --set-fec $NSIM_NETDEV encoding rs llrs
55 $ETHTOOL --set-fec $NSIM_NETDEV encoding rs off auto
62 $ETHTOOL --set-fec $NSIM_NETDEV encoding FIBRE 2>/dev/null
65 $ETHTOOL --set-fec $NSIM_NETDEV encoding bla-bla-bla 2>/dev/null
71 $ETHTOOL --set-fec $NSIM_NETDEV encoding auto
79 $ETHTOOL --set-fec $NSIM_NETDEV encoding auto RS
[all …]
/openbmc/qemu/docs/interop/
H A Dvnc-ledstate-pseudo-encoding.rst1 VNC LED state Pseudo-encoding
7 This document describes the Pseudo-encoding of LED state for RFB which
17 To solve this problem it attempts to add LED state Pseudo-encoding
20 Pseudo-encoding
23 This Pseudo-encoding requested by client declares to server that it supports
26 The Pseudo-encoding number for LED state defined as:
31 -261 'LED state Pseudo-encoding'
34 LED state Pseudo-encoding
37 The LED state Pseudo-encoding describes the encoding of LED state which
/openbmc/bmcweb/include/
H A Dhttp_utility.hpp55 std::string_view encoding = header.substr(lastIndex, index); in getPreferredContentType() local
63 std::size_t separator = encoding.find(";q="); in getPreferredContentType()
67 encoding = encoding.substr(0, separator); in getPreferredContentType()
71 if (encoding == "*/*") in getPreferredContentType()
76 contentTypes, [encoding](const ContentTypePair& pair) { in getPreferredContentType()
77 return pair.contentTypeString == encoding; in getPreferredContentType()
/openbmc/qemu/target/hexagon/
H A Dcpu_bits.h33 static inline uint32_t parse_bits(uint32_t encoding) in parse_bits() argument
36 return extract32(encoding, 14, 2); in parse_bits()
39 static inline uint32_t iclass_bits(uint32_t encoding) in iclass_bits() argument
42 uint32_t iclass = extract32(encoding, 28, 4); in iclass_bits()
44 if (parse_bits(encoding) == 0) { in iclass_bits()
H A Ddecode.c665 insn->iclass = iclass_bits(encoding); in decode_op()
686 uint32_t encoding) in decode_subinsn_tablewalk() argument
703 decode_op(insn, opc, encoding); in decode_subinsn_tablewalk()
712 return extract32(encoding, 0, 13); in get_insn_a()
717 return extract32(encoding, 16, 13); in get_insn_b()
722 uint32_t encoding) in decode_insns_tablewalk() argument
736 a = get_insn_a(encoding); in decode_insns_tablewalk()
737 b = get_insn_b(encoding); in decode_insns_tablewalk()
752 decode_op(insn, opc, encoding); in decode_insns_tablewalk()
765 decode_insns(Insn *insn, uint32_t encoding) in decode_insns() argument
[all …]
H A Dgen_dectree_import.c79 [TAG] = { .encoding = ENCSTR },
81 [TAG] = { .encoding = ENCSTR, .enc_class = CLASS },
83 [TAG] = { .encoding = ENCSTR, .enc_class = CLASS },
104 const char *tmp = opcode_encodings[opcode].encoding; in get_opcode_enc()
113 const char *tmp = opcode_encodings[opcode].encoding; in get_opcode_enc_class()
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Ddammit.py222 if encoding is not None:
223 encoding = encoding.lower()
227 tried.add(encoding)
267 encoding = None
270 return data, encoding
273 encoding = 'utf-16be'
277 encoding = 'utf-16le'
280 encoding = 'utf-8'
283 encoding = 'utf-32be'
286 encoding = 'utf-32le'
[all …]
/openbmc/linux/drivers/media/platform/nxp/imx8-isi/
H A Dimx8-isi-pipe.c41 .encoding = MXC_ISI_ENC_YUV,
46 .encoding = MXC_ISI_ENC_YUV,
53 .encoding = MXC_ISI_ENC_RGB,
59 .encoding = MXC_ISI_ENC_RGB,
67 .encoding = MXC_ISI_ENC_RAW,
73 .encoding = MXC_ISI_ENC_RAW,
79 .encoding = MXC_ISI_ENC_RAW,
85 .encoding = MXC_ISI_ENC_RAW,
91 .encoding = MXC_ISI_ENC_RAW,
285 sink_info->encoding, src_info->encoding); in mxc_isi_pipe_enable()
[all …]
H A Dimx8-isi-video.c49 .encoding = MXC_ISI_ENC_YUV,
58 .encoding = MXC_ISI_ENC_YUV,
69 .encoding = MXC_ISI_ENC_YUV,
80 .encoding = MXC_ISI_ENC_YUV,
91 .encoding = MXC_ISI_ENC_YUV,
102 .encoding = MXC_ISI_ENC_YUV,
113 .encoding = MXC_ISI_ENC_YUV,
126 .encoding = MXC_ISI_ENC_RGB,
137 .encoding = MXC_ISI_ENC_RGB,
148 .encoding = MXC_ISI_ENC_RGB,
[all …]
/openbmc/openbmc/poky/bitbake/lib/bs4/builder/
H A D_lxml.py45 def default_parser(self, encoding): argument
51 target=self, strip_cdata=False, recover=True, encoding=encoding)
53 def parser_for(self, encoding): argument
55 parser = self.default_parser(encoding)
59 parser = parser(target=self, strip_cdata=False, encoding=encoding)
109 for encoding in detector.encodings:
110 yield (detector.markup, encoding, document_declared_encoding, False)
233 def default_parser(self, encoding): argument
237 encoding = self.soup.original_encoding
239 self.parser = self.parser_for(encoding)
/openbmc/linux/drivers/gpu/drm/sun4i/
H A Dsun8i_csc.c112 enum drm_color_encoding encoding, in sun8i_csc_set_coefficients() argument
119 table = yuv2rgb[range][encoding]; in sun8i_csc_set_coefficients()
145 enum drm_color_encoding encoding, in sun8i_de3_ccsc_set_coefficients() argument
152 table = yuv2rgb_de3[range][encoding]; in sun8i_de3_ccsc_set_coefficients()
210 enum drm_color_encoding encoding, in sun8i_csc_set_ccsc_coefficients() argument
217 mode, encoding, range); in sun8i_csc_set_ccsc_coefficients()
224 mode, encoding, range); in sun8i_csc_set_ccsc_coefficients()
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dcolorspaces-defs.rst10 default Y'CbCr encoding and the default quantization method. The second
13 transfer functions. The third is the Y'CbCr encoding identifier (enum
29 :c:type:`v4l2_hsv_encoding` specifies which encoding is used.
116 - Use the default Y'CbCr encoding as defined by the colorspace.
118 - Use the BT.601 Y'CbCr encoding.
120 - Use the Rec. 709 Y'CbCr encoding.
122 - Use the extended gamut xvYCC BT.601 encoding.
124 - Use the extended gamut xvYCC Rec. 709 encoding.
128 - Use the constant luminance BT.2020 Yc'CbcCrc encoding.
130 - Use the SMPTE 240M Y'CbCr encoding.
[all …]
H A Dcolorspaces-details.rst15 ``V4L2_XFER_FUNC_709``. The default Y'CbCr encoding is
67 the following ``V4L2_YCBCR_ENC_601`` encoding:
143 the following ``V4L2_YCBCR_ENC_709`` encoding:
161 in which case the BT.601 Y'CbCr encoding is used.
335 the following ``V4L2_YCBCR_ENC_601`` encoding:
406 the following ``V4L2_YCBCR_ENC_BT2020`` encoding:
420 (``V4L2_YCBCR_ENC_BT2020_CONST_LUM``) encoding:
457 default Y'CbCr encoding was picked because it is the HDTV encoding.
554 the following ``V4L2_YCBCR_ENC_SMPTE240M`` encoding:
628 the following ``V4L2_YCBCR_ENC_601`` encoding:
[all …]
/openbmc/linux/tools/testing/selftests/kvm/include/x86_64/
H A Dvmx.h452 static inline int vmread(uint64_t encoding, uint64_t *value) in vmread() argument
458 return evmcs_vmread(encoding, value); in vmread()
462 : [encoding]"r"(encoding) in vmread()
473 static inline uint64_t vmreadz(uint64_t encoding) in vmreadz() argument
476 vmread(encoding, &value); in vmreadz()
480 static inline int vmwrite(uint64_t encoding, uint64_t value) in vmwrite() argument
485 return evmcs_vmwrite(encoding, value); in vmwrite()
489 : [value]"rm"(value), [encoding]"r"(encoding) in vmwrite()
/openbmc/qemu/tests/tcg/hexagon/
H A Dreg_mut.c33 #define WRITE_REG_ENCODED(output, reg_name, input, encoding) \ argument
35 encoding "\n\t" \
41 #define WRITE_REG_PAIR_ENCODED(output, reg_name, input, encoding) \ argument
43 encoding "\n\t" \
/openbmc/linux/crypto/asymmetric_keys/
H A Dpublic_key.c68 const char *encoding, const char *hash_algo, in software_key_determine_akcipher() argument
76 if (!encoding) in software_key_determine_akcipher()
83 if (strcmp(encoding, "pkcs1") == 0) { in software_key_determine_akcipher()
97 if (strcmp(encoding, "raw") != 0) in software_key_determine_akcipher()
107 if (strcmp(encoding, "x962") != 0) in software_key_determine_akcipher()
125 if (strcmp(encoding, "raw") != 0) in software_key_determine_akcipher()
132 if (strcmp(encoding, "raw") != 0) in software_key_determine_akcipher()
168 ret = software_key_determine_akcipher(pkey, params->encoding, in software_key_query()
205 if (strcmp(params->encoding, "pkcs1") == 0) { in software_key_query()
287 ret = software_key_determine_akcipher(pkey, params->encoding, in software_key_eds_op()
[all …]
/openbmc/linux/drivers/media/test-drivers/vicodec/
H A Dcodec-fwht.c693 u32 encoding = 0; in encode_plane() local
716 encoding |= FWHT_FRAME_PCODED; in encode_plane()
772 encoding &= ~FWHT_FRAME_PCODED; in encode_plane()
774 return encoding; in encode_plane()
787 u32 encoding; in fwht_encode_frame() local
794 encoding |= FWHT_LUMA_UNENCODED; in fwht_encode_frame()
795 encoding &= ~FWHT_FRAME_UNENCODED; in fwht_encode_frame()
808 encoding |= FWHT_CB_UNENCODED; in fwht_encode_frame()
809 encoding &= ~FWHT_FRAME_UNENCODED; in fwht_encode_frame()
816 encoding |= FWHT_CR_UNENCODED; in fwht_encode_frame()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/libid3tag/libid3tag/
H A Dunknown-encoding.patch1 In case of an unknown/invalid encoding, id3_parse_string() will
18 encoding = id3_parse_uint(&data, 1);
19 string = id3_parse_string(&data, end - data, encoding, 0);
35 + /* FIXME: Unknown encoding! Print warning? */
/openbmc/qemu/target/arm/tcg/
H A Dneon-ls.decode22 # Encodings for Neon load/store instructions where the T32 encoding
23 # is a simple transformation of the A32 encoding.
24 # More specifically, this file covers instructions where the A32 encoding is
26 # and the T32 encoding is
28 # This file works on the A32 encoding only; calling code for T32 has to
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/debian/
H A Dfix-standard-namespace-errors.patch20 - size_t GetEncodedSize(uint8_t encoding);
21 + std::size_t GetEncodedSize(uint8_t encoding);
23 bool AdjustEncodedValue(uint8_t encoding, uint64_t* value);
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/debian/system/core/
H A Dfix-standard-namespace-errors.patch20 - size_t GetEncodedSize(uint8_t encoding);
21 + std::size_t GetEncodedSize(uint8_t encoding);
23 bool AdjustEncodedValue(uint8_t encoding, uint64_t* value);
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-pyruvate-crates.inc21 crate://crates.io/encoding/0.2.33 \
22 crate://crates.io/encoding-index-japanese/1.20141219.5 \
23 crate://crates.io/encoding-index-korean/1.20141219.5 \
24 crate://crates.io/encoding-index-simpchinese/1.20141219.5 \
25 crate://crates.io/encoding-index-singlebyte/1.20141219.5 \
26 crate://crates.io/encoding-index-tradchinese/1.20141219.5 \
128 SRC_URI[encoding-0.2.33.sha256sum] = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d3…
129 SRC_URI[encoding-index-japanese-1.20141219.5.sha256sum] = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d9…
130 SRC_URI[encoding-index-korean-1.20141219.5.sha256sum] = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c8…
131 SRC_URI[encoding-index-simpchinese-1.20141219.5.sha256sum] = "d87a7194909b9118fc707194baa434a4e3b0f…
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dsyscall.c24 #define BTF_INT_ENC(encoding, bits_offset, nr_bits) \ argument
25 ((encoding) << 24 | (bits_offset) << 16 | (nr_bits))
26 #define BTF_TYPE_INT_ENC(name, encoding, bits_offset, bits, sz) \ argument
28 BTF_INT_ENC(encoding, bits_offset, bits)
/openbmc/linux/tools/testing/selftests/bpf/
H A Dtest_btf.h15 #define BTF_INT_ENC(encoding, bits_offset, nr_bits) \ argument
16 ((encoding) << 24 | (bits_offset) << 16 | (nr_bits))
17 #define BTF_TYPE_INT_ENC(name, encoding, bits_offset, bits, sz) \ argument
19 BTF_INT_ENC(encoding, bits_offset, bits)
/openbmc/linux/net/mac80211/
H A Dairtime.c430 switch (status->encoding) { in ieee80211_get_rate_duration()
473 if (status->encoding == RX_ENC_LEGACY) { in ieee80211_calc_rx_airtime()
521 stat->encoding = RX_ENC_HE; in ieee80211_fill_rate_info()
523 stat->encoding = RX_ENC_VHT; in ieee80211_fill_rate_info()
525 stat->encoding = RX_ENC_HT; in ieee80211_fill_rate_info()
527 stat->encoding = RX_ENC_LEGACY; in ieee80211_fill_rate_info()
534 if (stat->encoding != RX_ENC_LEGACY) in ieee80211_fill_rate_info()
580 stat->encoding = RX_ENC_VHT; in ieee80211_fill_rx_status()
584 stat->encoding = RX_ENC_HT; in ieee80211_fill_rx_status()
586 stat->encoding = RX_ENC_LEGACY; in ieee80211_fill_rx_status()
[all …]

12345678910>>...24