/linux-6.12.1/drivers/net/ethernet/freescale/dpaa2/ |
D | dpkg.h | 27 * @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 …]
|
/linux-6.12.1/drivers/clk/ |
D | clk-nspire.c | 40 #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()
|
/linux-6.12.1/certs/ |
D | Makefile | 26 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
|
/linux-6.12.1/arch/alpha/kernel/ |
D | err_marvel.c | 115 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 …]
|
D | err_titan.c | 46 nxs = EXTRACT(c_misc, TITAN__CCHIP_MISC__NXS); in titan_parse_c_misc() 123 serror_src[EXTRACT(serror, TITAN__PCHIP_SERROR__SRC)], in titan_parse_p_serror() 124 serror_cmd[EXTRACT(serror, TITAN__PCHIP_SERROR__CMD)], in titan_parse_p_serror() 125 (unsigned)EXTRACT(serror, TITAN__PCHIP_SERROR__SYN), in titan_parse_p_serror() 126 EXTRACT(serror, TITAN__PCHIP_SERROR__ADDR)); in titan_parse_p_serror() 192 cmd = EXTRACT(perror, TITAN__PCHIP_PERROR__CMD); in titan_parse_p_perror() 193 addr = EXTRACT(perror, TITAN__PCHIP_PERROR__ADDR) << 2; in titan_parse_p_perror() 321 cmd = EXTRACT(agperror, TITAN__PCHIP_AGPERROR__CMD); in titan_parse_p_agperror() 322 addr = EXTRACT(agperror, TITAN__PCHIP_AGPERROR__ADDR) << 3; in titan_parse_p_agperror() 323 len = EXTRACT(agperror, TITAN__PCHIP_AGPERROR__LEN); in titan_parse_p_agperror()
|
/linux-6.12.1/fs/crypto/ |
D | hkdf.c | 3 * 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.
|
/linux-6.12.1/arch/powerpc/xmon/ |
D | ppc-dis.c | 23 /* 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()
|
/linux-6.12.1/scripts/ |
D | get_dvb_firmware | 97 extract("$tmpdir/software/OEM/PCI/App/ttlcdacc.dll", 0x37ef9, 30555, "$tmpdir/fwtmp"); 115 …extract("$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 …]
|
D | extract-vmlinux | 4 # extract-vmlinux - Extract uncompressed vmlinux from a kernel image 6 # Inspired from extract-ikconfig
|
D | extract-module-sig.pl | 4 # extract-mod-sig <part> <module-file> 46 # Check for the magic number and extract the information block 72 # Extract the three pieces of info data
|
/linux-6.12.1/include/net/caif/ |
D | cfpkt.h | 26 * 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
|
/linux-6.12.1/fs/afs/ |
D | vlclient.c | 189 /* Extract the returned uuid, uniquifier, nentries and in afs_deliver_vl_get_addrs_u() 216 fallthrough; /* and extract entries */ in afs_deliver_vl_get_addrs_u() 330 fallthrough; /* and extract the capabilities word count */ in afs_deliver_vl_get_capabilities() 343 fallthrough; /* and extract capabilities words */ in afs_deliver_vl_get_capabilities() 445 /* Extract the returned uuid, uniquifier, fsEndpoints count and in afs_deliver_yfsvl_get_endpoints() 487 fallthrough; /* and extract fsEndpoints[] entries */ in afs_deliver_yfsvl_get_endpoints() 528 /* Extract the list of volEndpoints. */ in afs_deliver_yfsvl_get_endpoints() 538 /* Extract the type of volEndpoints[0]. Normally we would in afs_deliver_yfsvl_get_endpoints() 539 * extract the type of the next endpoint when we extract the in afs_deliver_yfsvl_get_endpoints() 568 fallthrough; /* and extract volEndpoints[] entries */ in afs_deliver_yfsvl_get_endpoints() [all …]
|
D | cmservice.c | 246 /* extract the FID array and its count in two steps */ in afs_deliver_cb_callback() 249 _debug("extract FID count"); in afs_deliver_cb_callback() 268 _debug("extract FID array"); in afs_deliver_cb_callback() 291 /* extract the callback array and its count in two steps */ in afs_deliver_cb_callback() 294 _debug("extract CB count"); in afs_deliver_cb_callback() 309 _debug("extract discard %zu/%u", in afs_deliver_cb_callback() 390 _debug("extract UUID"); in afs_deliver_cb_init_call_back_state3() 503 _debug("extract UUID"); in afs_deliver_cb_probe_uuid() 616 /* extract the FID array and its count in two steps */ in afs_deliver_yfs_cb_callback() 619 _debug("extract FID count"); in afs_deliver_yfs_cb_callback() [all …]
|
D | yfsclient.c | 372 /* Extract the returned data length into ->actual_len. This in yfs_deliver_fs_fetch_data64() 377 _debug("extract data length"); in yfs_deliver_fs_fetch_data64() 393 /* extract the returned data */ in yfs_deliver_fs_fetch_data64() 396 _debug("extract data %zu/%llu", count_before, req->actual_len); in yfs_deliver_fs_fetch_data64() 416 _debug("extract discard %zu/%llu", in yfs_deliver_fs_fetch_data64() 431 /* extract the metadata */ in yfs_deliver_fs_fetch_data64() 1242 /* extract the returned status record */ in yfs_deliver_fs_get_volume_status() 1244 _debug("extract status"); in yfs_deliver_fs_get_volume_status() 1255 /* extract the volume name length */ in yfs_deliver_fs_get_volume_status() 1270 /* extract the volume name */ in yfs_deliver_fs_get_volume_status() [all …]
|
D | fsclient.c | 326 /* Extract the returned data length into in afs_deliver_fs_fetch_data() 331 _debug("extract data length"); in afs_deliver_fs_fetch_data() 347 /* extract the returned data */ in afs_deliver_fs_fetch_data() 350 _debug("extract data %zu/%llu", count_before, req->actual_len); in afs_deliver_fs_fetch_data() 370 _debug("extract discard %zu/%llu", in afs_deliver_fs_fetch_data() 382 /* extract the metadata */ in afs_deliver_fs_fetch_data() 1329 /* extract the returned status record */ in afs_deliver_fs_get_volume_status() 1331 _debug("extract status"); in afs_deliver_fs_get_volume_status() 1342 /* extract the volume name length */ in afs_deliver_fs_get_volume_status() 1357 /* extract the volume name */ in afs_deliver_fs_get_volume_status() [all …]
|
/linux-6.12.1/sound/pci/asihpi/ |
D | hpi_version.h | 26 /** Extract major version from hpi version number */ 28 /** Extract minor version from hpi version number */ 30 /** Extract release from hpi version number */
|
/linux-6.12.1/lib/pldmfw/ |
D | pldmfw.c | 105 * pldm_parse_header - Validate and extract details about the PLDM header 116 * * Extract the total header_size and verify that the image is large enough 118 * * Extract the size of the component bitmap length 119 * * Extract a pointer to the start of the record area 172 /* extract a pointer to the record area, which just follows the main in pldm_parse_header() 253 * From the current offset, read and extract the descriptor TLVs, updating the 395 * Extract the record count, and loop through each record, searching for the 413 /* Extract a pointer to the component area, which just follows the in pldm_parse_records() 433 * Extract the component count, and find the pointer to the component area. 437 * Extract the package header CRC and save it for verification. [all …]
|
/linux-6.12.1/arch/powerpc/kernel/ |
D | 85xx_entry_mapping.S | 7 rlwinm r4,r7,27,31,31 /* extract MSR[IS] */ 18 rlwinm r7,r7,21,28,31 /* extract MMUCFG[NPIDS] */ 38 rlwinm r3,r7,16,20,31 /* Extract MAS0(Entry) */ 82 mfspr r6,SPRN_MAS1 /* extract MAS1[SIZE] */ 134 rlwinm r7,r7,21,28,31 /* extract MMUCFG[NPIDS] */
|
/linux-6.12.1/drivers/media/dvb-frontends/ |
D | as102_fe.c | 196 /* extract constellation */ in as102_fe_get_frontend() 209 /* extract hierarchy */ in as102_fe_get_frontend() 225 /* extract code rate HP */ in as102_fe_get_frontend() 244 /* extract code rate LP */ in as102_fe_get_frontend() 263 /* extract guard interval */ in as102_fe_get_frontend() 279 /* extract transmission mode */ in as102_fe_get_frontend()
|
/linux-6.12.1/lib/test_fortify/ |
D | test_fortify.sh | 8 # Extract just the filename for error messages below. 10 # Extract the function name for error messages below. 14 # Extract the symbol to test for in build/symbol test below.
|
/linux-6.12.1/drivers/gpu/drm/etnaviv/ |
D | etnaviv_cmd_parser.c | 13 #define EXTRACT(val, field) (((val) & field##__MASK) >> field##__SHIFT) macro 169 n = EXTRACT(cmd, VIV_FE_LOAD_STATE_HEADER_COUNT); in etnaviv_cmd_validate_one() 174 off = EXTRACT(cmd, VIV_FE_LOAD_STATE_HEADER_OFFSET); in etnaviv_cmd_validate_one() 181 n = EXTRACT(cmd, VIV_FE_DRAW_2D_HEADER_COUNT); in etnaviv_cmd_validate_one()
|
/linux-6.12.1/drivers/gpu/drm/i915/ |
D | i915_reg_defs.h | 123 * REG_FIELD_GET() - Extract a u32 bitfield value 125 * @__val: value to extract the bitfield value from 135 * REG_FIELD_GET64() - Extract a u64 bitfield value 137 * @__val: value to extract the bitfield value from 252 * REG_FIELD_GET8() - Extract a u8 bitfield value 254 * @__val: value to extract the bitfield value from
|
/linux-6.12.1/scripts/kconfig/ |
D | streamline_config.pl | 77 "exec" => "scripts/extract-ikconfig", 78 "test" => "scripts/extract-ikconfig", 82 "exec" => "scripts/extract-ikconfig", 83 "test" => "scripts/extract-ikconfig", 87 "exec" => "scripts/extract-ikconfig", 88 "test" => "scripts/extract-ikconfig", 92 "exec" => "scripts/extract-ikconfig", 93 "test" => "scripts/extract-ikconfig", 97 "exec" => "scripts/extract-ikconfig", 98 "test" => "scripts/extract-ikconfig",
|
/linux-6.12.1/arch/mips/loongson64/ |
D | dma.c | 10 /* We extract 2bit node id (bit 44~47, only bit 44~45 used now) from in phys_to_dma() 19 /* We extract 2bit node id (bit 44~47, only bit 44~45 used now) from in dma_to_phys()
|
/linux-6.12.1/Documentation/arch/sparc/oradax/ |
D | dax-hv-api.txt | 56 • Extract 90 • Extract 149 0x01 Extract 400 36.2.1.2. Extract command 416 The extract CCB is a 64-byte “short format” CCB. 418 …The extract CCB command format can be specified by the following packed C structure for a big-endi… 681 8 8 Completion (same fields as Section 36.2.1.2, “Extract command”) 682 16 8 Primary Input (same fields as Section 36.2.1.2, “Extract command”) 683 24 8 Data Access Control (same fields as Section 36.2.1.2, “Extract command”) 692 “Extract command” [all …]
|