Home
last modified time | relevance | path

Searched full:extract (Results 1 – 25 of 1625) sorted by relevance

12345678910>>...65

/openbmc/linux/drivers/net/ethernet/freescale/dpaa2/
H A Ddpkg.h27 * @DPKG_FROM_HDR: Extract selected bytes from header, by offset
28 * @DPKG_FROM_FIELD: Extract selected bytes from header, by offset from field
29 * @DPKG_FULL_FIELD: Extract a full field
39 * @DPKG_EXTRACT_FROM_HDR: Extract from the header
40 * @DPKG_EXTRACT_FROM_DATA: Extract from data not in specific header
41 * @DPKG_EXTRACT_FROM_PARSE: Extract from parser-result;
42 * e.g. can be used to extract header existence;
416 * @extract: Selects extraction method
417 * @extract.from_hdr: Used when 'type = DPKG_EXTRACT_FROM_HDR'
418 * @extract.from_data: Used when 'type = DPKG_EXTRACT_FROM_DATA'
[all …]
/openbmc/linux/drivers/clk/
H A Dclk-nspire.c40 #define EXTRACT(var, prop) (((var)>>prop##_SHIFT) & prop##_MASK) macro
43 if (EXTRACT(val, FIXED_BASE)) in nspire_clkinfo_cx()
46 clk->base_clock = 6 * EXTRACT(val, CX_BASE) * MHZ; in nspire_clkinfo_cx()
48 clk->base_cpu_ratio = EXTRACT(val, BASE_CPU) * EXTRACT(val, CX_UNKNOWN); in nspire_clkinfo_cx()
49 clk->base_ahb_ratio = clk->base_cpu_ratio * (EXTRACT(val, CPU_AHB) + 1); in nspire_clkinfo_cx()
54 if (EXTRACT(val, FIXED_BASE)) in nspire_clkinfo_classic()
57 clk->base_clock = (300 - 6 * EXTRACT(val, CLASSIC_BASE)) * MHZ; in nspire_clkinfo_classic()
59 clk->base_cpu_ratio = EXTRACT(val, BASE_CPU) * 2; in nspire_clkinfo_classic()
60 clk->base_ahb_ratio = clk->base_cpu_ratio * (EXTRACT(val, CPU_AHB) + 1); in nspire_clkinfo_classic()
/openbmc/qemu/target/hexagon/idef-parser/
H A Didef-parser.lex217 "fGETBIT" { yylval->extract.bit_width = 1;
218 yylval->extract.storage_bit_width = 1;
219 yylval->extract.signedness = UNSIGNED;
220 return EXTRACT; }
221 "fGETBYTE" { yylval->extract.bit_width = 8;
222 yylval->extract.storage_bit_width = 8;
223 yylval->extract.signedness = SIGNED;
224 return EXTRACT; }
225 "fGETUBYTE" { yylval->extract.bit_width = 8;
226 yylval->extract.storage_bit_width = 8;
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dpackage_manager.py50 Returns packages to extract required by runtime tests.
98 Extract packages that will be needed during runtime.
119 extract = package.get('extract', True)
121 if extract:
125 # don't need to extract again.
129 # Extract package and copy it to TEST_EXTRACTED_DIR
148 extract_dir = pm.extract(pkg)
212 extract = package.get('extract', True)
216 if install and extract:
/openbmc/linux/certs/
H A DMakefile26 cmd_extract_certs = $(obj)/extract-cert "$(extract-cert-in)" $@
27 extract-cert-in = $(filter-out $(obj)/extract-cert, $(real-prereqs))
31 $(obj)/x509_certificate_list: $(CONFIG_SYSTEM_TRUSTED_KEYS) $(obj)/extract-cert FORCE
70 $(obj)/signing_key.x509: extract-cert-in := $(PKCS11_URI)
73 $(obj)/signing_key.x509: $(filter-out $(PKCS11_URI),$(CONFIG_MODULE_SIG_KEY)) $(obj)/extract-cert F…
80 $(obj)/x509_revocation_list: $(CONFIG_SYSTEM_REVOCATION_KEYS) $(obj)/extract-cert FORCE
85 hostprogs := extract-cert
/openbmc/qemu/hw/misc/
H A Dimx6_src.c192 if (EXTRACT(change_mask, CORE3_ENABLE)) { in imx6_src_write()
193 if (EXTRACT(current_value, CORE3_ENABLE)) { in imx6_src_write()
205 if (EXTRACT(change_mask, CORE2_ENABLE)) { in imx6_src_write()
206 if (EXTRACT(current_value, CORE2_ENABLE)) { in imx6_src_write()
218 if (EXTRACT(change_mask, CORE1_ENABLE)) { in imx6_src_write()
219 if (EXTRACT(current_value, CORE1_ENABLE)) { in imx6_src_write()
231 if (EXTRACT(change_mask, CORE0_RST)) { in imx6_src_write()
235 if (EXTRACT(change_mask, CORE1_RST)) { in imx6_src_write()
239 if (EXTRACT(change_mask, CORE2_RST)) { in imx6_src_write()
243 if (EXTRACT(change_mask, CORE3_RST)) { in imx6_src_write()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/dpkg/dpkg/
H A Dremove-tar-no-timestamp.patch11 src/deb/extract.c | 1 -
14 diff --git a/src/deb/extract.c b/src/deb/extract.c
16 --- a/src/deb/extract.c
17 +++ b/src/deb/extract.c
/openbmc/linux/arch/alpha/kernel/
H A Derr_marvel.c115 packet_desc[EXTRACT(err_cyc, IO7__ERR_CYC__PACKET)], in marvel_print_err_cyc()
118 EXTRACT(err_cyc, IO7__ERR_CYC__CYCLE), in marvel_print_err_cyc()
135 err_print_prefix, EXTRACT(crrct_sym, IO7__PO7_CRRCT_SYM__SYN)); in marvel_print_po7_crrct_sym()
136 marvel_print_err_cyc(EXTRACT(crrct_sym, IO7__PO7_CRRCT_SYM__ERR_CYC)); in marvel_print_po7_crrct_sym()
189 if (EXTRACT(valid_mask, IO7__PO7_UNCRR_SYM__SYN)) in marvel_print_po7_uncrr_sym()
192 EXTRACT(uncrr_sym, IO7__PO7_UNCRR_SYM__SYN)); in marvel_print_po7_uncrr_sym()
194 if (EXTRACT(valid_mask, IO7__PO7_UNCRR_SYM__ERR_CYC)) in marvel_print_po7_uncrr_sym()
195 marvel_print_err_cyc(EXTRACT(uncrr_sym, in marvel_print_po7_uncrr_sym()
198 scratch = EXTRACT(uncrr_sym, IO7__PO7_UNCRR_SYM__CLK); in marvel_print_po7_uncrr_sym()
232 if ((scratch = EXTRACT(uncrr_sym, IO7__PO7_UNCRR_SYM__VICTIM_SP))) { in marvel_print_po7_uncrr_sym()
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A DCVE-2015-7697.patch11 extract.c | 6 ++++++
14 diff --git a/extract.c b/extract.c
16 --- a/extract.c
17 +++ b/extract.c
H A D10-cve-2014-8140-test-compr-eb.patch12 Index: unzip60/extract.c
14 --- unzip60.orig/extract.c
15 +++ unzip60/extract.c
22 + * (eb_ucsize). (Else extract eb_ucsize.)
/openbmc/linux/fs/crypto/
H A Dhkdf.c3 * Implementation of HKDF ("HMAC-based Extract-and-Expand Key Derivation
34 * 1. HKDF-Extract: extract a pseudorandom key of length HKDF_HASHLEN bytes from
39 * HKDF-Extract can be skipped if the input is already a pseudorandom key of
42 * unnecessarily long master keys. Thus fscrypt still does HKDF-Extract. No
47 /* HKDF-Extract (RFC 5869 section 2.2), unsalted */
62 * Compute HKDF-Extract using the given master key as the input keying material,
66 * times without having to recompute HKDF-Extract each time.
/openbmc/openbmc/poky/meta/lib/oe/package_manager/
H A Dcommon_deb_ipk.py45 def extract(self, pkg): member in OpkgDpkgPM
54 "trying to extract the package." % pkg)
61 bb.fatal("Unable to extract package for '%s'."
73 bb.fatal("Unable to extract %s package. Failed to identify "
81 bb.fatal("Unable to extract %s package. Command '%s' "
85 bb.fatal("Unable to extract %s package. Command '%s' "
/openbmc/u-boot/arch/arm/cpu/armv7/
H A Dcache_v7_asm.S29 ands r3, r3, #7 << 1 @ extract LoC*2 from clidr
35 mov r1, r0, lsr r2 @ extract cache type bits from clidr
42 and r2, r1, #7 @ extract the length of the cache lines
48 ands r7, r7, r1, lsr #13 @ extract max number of the index size
100 ands r3, r3, #7 << 1 @ extract LoC*2 from clidr
105 mov r1, r0, lsr r2 @ extract cache type bits from clidr
112 and r2, r1, #7 @ extract the length of the cache lines
118 ands r7, r7, r1, lsr #13 @ extract max number of the index size
/openbmc/qemu/scripts/
H A Dextract-vsssdk-headers3 # extract-vsssdk-headers
8 echo 'Usage: extract-vsssdk-headers /path/to/setup.exe' >&2
22 # Extract .MSI file in the .exe, looking for the OLE compound
31 # Now extract the files.
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/tests/
H A Dprocess_tree_test.py54 self.checkAgainstJavaExtract(self.mk_fname('extract.processtree.1.log'), process_tree)
59 self.checkAgainstJavaExtract(self.mk_fname('extract.processtree.2.log'), process_tree)
65 self.checkAgainstJavaExtract(self.mk_fname('extract.processtree.3b.log'), process_tree)
72 self.checkAgainstJavaExtract(self.mk_fname('extract.processtree.3c.log'), process_tree)
80 self.checkAgainstJavaExtract(self.mk_fname('extract.processtree.3d.log'), process_tree)
89 self.checkAgainstJavaExtract(self.mk_fname('extract.processtree.3e.log'), process_tree)
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/tracker/localsearch/
H A D0001-fix-reproducibility.patch18 src/tracker-extract/meson.build | 2 +-
86 - '-DBUILD_EXTRACTDIR="@0@"'.format(meson.build_root() / 'src' / 'tracker-extract'),
88 + '-DBUILD_EXTRACTDIR="@0@"'.format(get_option('prefix') / 'src' / 'tracker-extract'),
92 diff --git a/src/tracker-extract/meson.build b/src/tracker-extract/meson.build
94 --- a/src/tracker-extract/meson.build
95 +++ b/src/tracker-extract/meson.build
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libtar/files/
H A D0005-fix-file-descriptor-leaks-reported-by-cppcheck.patch15 lib/extract.c | 4 ++++
65 diff --git a/lib/extract.c b/lib/extract.c
67 --- a/lib/extract.c
68 +++ b/lib/extract.c
/openbmc/linux/arch/powerpc/xmon/
H A Dppc-dis.c23 /* Extract the operand value from the PowerPC or POWER instruction. */
31 /* Extract the value from the instruction. */ in operand_value_powerpc()
32 if (operand->extract) in operand_value_powerpc()
33 value = (*operand->extract) (insn, dialect, &invalid); in operand_value_powerpc()
105 if (operand->extract) in lookup_powerpc()
106 (*operand->extract) (insn, dialect, &invalid); in lookup_powerpc()
167 /* Now extract and print the operands. */ in print_insn_powerpc()
178 already made sure that the extract function considered in print_insn_powerpc()
/openbmc/linux/scripts/
H A Dget_dvb_firmware97 extract("$tmpdir/software/OEM/PCI/App/ttlcdacc.dll", 0x37ef9, 30555, "$tmpdir/fwtmp");
115extract("$tmpdir/TT_PCI_2.19h_28_11_2006/software/OEM/PCI/App/ttlcdacc.dll", 0x65389, 24478, "$tmp…
133 extract("$tmpdir/LVHybrid.sys", 0x8b088, 24602, "$tmpdir/fwtmp");
211 extract("2830SCap2.sys", 0x62e8, 55024, "$tmpdir/opera1-fpga.fw");
212 extract("2830SLoad2.sys",0x3178,0x3685-0x3178,"$tmpdir/fw1part1");
213 extract("2830SLoad2.sys",0x0980,0x3150-0x0980,"$tmpdir/fw1part2");
256 extract("$tmpdir/VisionDTV/Drivers/Win2K&XP/UDTTload.sys", 12503, 3036, "$tmpdir/fwtmp1");
257 extract("$tmpdir/VisionDTV/Drivers/Win2K&XP/UDTTload.sys", 2207, 10274, "$tmpdir/fwtmp2");
317 extract("$tmpdir/SkyNET.sys", 331624, 5908, $outfile);
334 extract("$tmpdir/3xHybrid.sys", 465304, 9584, $outfile);
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/tar/tar/
H A D0003-Exclude-VCS-directory-with-writing-from-an-archive.patch43 +# Test --exclude-vcs option with subcommands: EXTRACT, LIST, DIFF.
52 +AT_SETUP([--exclude-vcs extract list compare])
53 +AT_KEYWORDS([exclude-vcs extract list compare exclude18])
79 +echo Extract:
92 +[Extract:
/openbmc/openbmc/meta-ibm/meta-system1/recipes-phosphor/flash/bios-version/
H A Dpch-standby-check.sh11 # Extract gpiochip and line offset from the GPIO_PIN
12 GPIO_CHIP=$(echo "$GPIO_PIN" | cut -d' ' -f1) # Extract gpiochip
13 GPIO_LINE=$(echo "$GPIO_PIN" | cut -d' ' -f2) # Extract line offset
/openbmc/linux/fs/afs/
H A Dvlclient.c197 /* Extract the returned uuid, uniquifier, nentries and in afs_deliver_vl_get_addrs_u()
224 fallthrough; /* and extract entries */ in afs_deliver_vl_get_addrs_u()
327 fallthrough; /* and extract the capabilities word count */ in afs_deliver_vl_get_capabilities()
340 fallthrough; /* and extract capabilities words */ in afs_deliver_vl_get_capabilities()
436 /* Extract the returned uuid, uniquifier, fsEndpoints count and in afs_deliver_yfsvl_get_endpoints()
478 fallthrough; /* and extract fsEndpoints[] entries */ in afs_deliver_yfsvl_get_endpoints()
515 /* Extract the list of volEndpoints. */ in afs_deliver_yfsvl_get_endpoints()
525 /* Extract the type of volEndpoints[0]. Normally we would in afs_deliver_yfsvl_get_endpoints()
526 * extract the type of the next endpoint when we extract the in afs_deliver_yfsvl_get_endpoints()
555 fallthrough; /* and extract volEndpoints[] entries */ in afs_deliver_yfsvl_get_endpoints()
[all …]
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dimport.py41 tar.extract(metadata)
76 # Extract
84 # do not extract data from non-importable recipes or metadata
95 tar.extract(member, path=config.workspace_path)
102 tar.extract(member, path=config.workspace_path)
/openbmc/webui-vue/docs/guide/guidelines/
H A Dinternationalization.md39 node node_modules/vue-i18n-extract/bin/vue-i18n-extract.js -v 'src/**/*.?(js|vue)' -l 'src/locales/…
47 node node_modules/vue-i18n-extract/bin/vue-i18n-extract.js -v 'src/**/*.?(js|vue)' -l 'src/locales/…
/openbmc/linux/include/net/caif/
H A Dcfpkt.h26 * Extract header from packet.
28 * pkt Packet to extract header data from.
66 * pkt Packet to extract header data from.
74 * Extract header from trailer (end of packet).
76 * pkt Packet to extract header data from.
143 * i.e. if it has been attempted to extract more data than available in packet

12345678910>>...65