/openbmc/linux/arch/arm/kernel/ |
H A D | atags_compat.c | 81 static struct tag * __init memtag(struct tag *tag, unsigned long start, unsigned long size) in memtag() argument 83 tag = tag_next(tag); in memtag() 84 tag->hdr.tag = ATAG_MEM; in memtag() 85 tag->hdr.size = tag_size(tag_mem32); in memtag() 86 tag->u.mem.size = size; in memtag() 87 tag->u.mem.start = start; in memtag() 89 return tag; in memtag() 94 struct tag *tag = taglist; in build_tag_list() local 119 tag->hdr.tag = ATAG_CORE; in build_tag_list() 120 tag->hdr.size = tag_size(tag_core); in build_tag_list() [all …]
|
H A D | atags_parse.c | 53 static int __init parse_tag_core(const struct tag *tag) in parse_tag_core() argument 55 if (tag->hdr.size > 2) { in parse_tag_core() 56 if ((tag->u.core.flags & 1) == 0) in parse_tag_core() 58 ROOT_DEV = old_decode_dev(tag->u.core.rootdev); in parse_tag_core() 65 static int __init parse_tag_mem32(const struct tag *tag) in parse_tag_mem32() argument 67 return arm_add_memory(tag->u.mem.start, tag->u.mem.size); in parse_tag_mem32() 73 static int __init parse_tag_videotext(const struct tag *tag) in parse_tag_videotext() argument 75 screen_info.orig_x = tag->u.videotext.x; in parse_tag_videotext() 76 screen_info.orig_y = tag->u.videotext.y; in parse_tag_videotext() 77 screen_info.orig_video_page = tag->u.videotext.video_page; in parse_tag_videotext() [all …]
|
H A D | atags_proc.c | 28 void __init save_atags(const struct tag *tags) in save_atags() 40 struct tag *tag = (struct tag *)atags_copy; in init_atags_procfs() local 44 if (tag->hdr.tag != ATAG_CORE) { in init_atags_procfs() 49 for (; tag->hdr.size; tag = tag_next(tag)) in init_atags_procfs() 53 size = (char *)tag - atags_copy + sizeof(struct tag_header); in init_atags_procfs() 55 WARN_ON(tag->hdr.tag != ATAG_NONE); in init_atags_procfs()
|
/openbmc/qemu/scripts/ |
H A D | analyse-9p-simpletrace.py | 84 def v9fs_rerror(self, tag, id, err): argument 85 … print("RERROR (tag =", tag, ", id =", symbol_9p[id], ", err = \"", os.strerror(err), "\")") 87 def v9fs_version(self, tag, id, msize, version): argument 88 print("TVERSION (tag =", tag, ", msize =", msize, ", version =", version, ")") 90 def v9fs_version_return(self, tag, id, msize, version): argument 91 print("RVERSION (tag =", tag, ", msize =", msize, ", version =", version, ")") 93 def v9fs_attach(self, tag, id, fid, afid, uname, aname): argument 94 …print("TATTACH (tag =", tag, ", fid =", fid, ", afid =", afid, ", uname =", uname, ", aname =", an… 96 def v9fs_attach_return(self, tag, id, type, version, path): argument 97 …print("RATTACH (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "})") [all …]
|
/openbmc/qemu/target/hexagon/ |
H A D | hex_common.py | 78 def is_cond_jump(tag): argument 79 if tag == "J2_rte": 81 if "A_HWLOOP0_END" in attribdict[tag] or "A_HWLOOP1_END" in attribdict[tag]: 83 return re.compile(r"(if.*fBRANCH)|(if.*fJUMPR)").search(semdict[tag]) != None 86 def is_cond_call(tag): argument 87 return re.compile(r"(if.*fCALL)").search(semdict[tag]) != None 112 for tag in tags: 113 for macname in allmacros_re.findall(semdict[tag]): 117 attribdict[tag] |= set(macro.attribs) 120 for tag in tags: [all …]
|
H A D | gen_idef_parser_funcs.py | 55 for tag in hex_common.tags: 57 if "A_PRIV" in hex_common.attribdict[tag]: 60 if "A_GUEST" in hex_common.attribdict[tag]: 63 if tag in {"S2_asr_r_r_sat", "S2_asl_r_r_sat"}: 66 if tag in {"S4_vrcrotate_acc", "S4_vrcrotate"}: 69 if tag in {"J2_trap0", "J2_trap1"}: 72 if tag in {"A7_croundd_ri", "A7_croundd_rr"}: 74 if tag in { 86 if tag in {"S2_interleave", "S2_deinterleave"}: 89 if tag in { [all …]
|
H A D | gen_helper_funcs.py | 37 def gen_helper_function(f, tag, tagregs, tagimms): argument 38 regs = tagregs[tag] 39 imms = tagimms[tag] 41 ret_type = hex_common.helper_ret_type(tag, regs).func_arg 44 for arg in hex_common.helper_args(tag, regs, imms): 50 if hex_common.need_ea(tag): 55 if not hex_common.is_predicated(tag): 57 reg = hex_common.get_register(tag, regtype, regid) 65 reg = hex_common.get_register(tag, regtype, regid) 69 if hex_common.need_slot(tag): [all …]
|
H A D | gen_tcg_funcs.py | 47 def gen_tcg_func(f, tag, regs, imms): argument 53 if hex_common.need_ea(tag): 59 reg = hex_common.get_register(tag, regtype, regid) 60 reg.decl_tcg(f, tag, i) 66 if hex_common.is_idef_parser_enabled(tag): 70 reg = hex_common.get_register(tag, regtype, regid) 79 elif hex_common.skip_qemu_helper(tag): 84 ret_type = hex_common.helper_ret_type(tag, regs).call_arg 88 for arg in hex_common.helper_args(tag, regs, imms): 96 reg = hex_common.get_register(tag, regtype, regid) [all …]
|
H A D | gen_helper_protos.py | 31 def gen_helper_prototype(f, tag, tagregs, tagimms): argument 32 regs = tagregs[tag] 33 imms = tagimms[tag] 36 ret_type = hex_common.helper_ret_type(tag, regs).proto_arg 39 for arg in hex_common.helper_args(tag, regs, imms): 47 if hex_common.need_env(tag) or hex_common.is_hvx_insn(tag): 61 for tag in hex_common.tags: 63 if "A_PRIV" in hex_common.attribdict[tag]: 66 if "A_GUEST" in hex_common.attribdict[tag]: 69 if tag == "Y6_diag": [all …]
|
/openbmc/qemu/hw/9pfs/ |
H A D | trace-events | 4 v9fs_rcancel(uint16_t tag, uint8_t id) "tag %d id %d" 5 v9fs_rerror(uint16_t tag, uint8_t id, int err) "tag %d id %d err %d" 6 v9fs_version(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d version… 7 v9fs_version_return(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d … 8 v9fs_attach(uint16_t tag, uint8_t id, int32_t fid, int32_t afid, char* uname, char* aname) "tag %u … 9 v9fs_attach_return(uint16_t tag, uint8_t id, uint8_t type, uint32_t version, uint64_t path) "tag %u… 10 v9fs_stat(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d" 11 v9fs_stat_return(uint16_t tag, uint8_t id, int32_t mode, int32_t atime, int32_t mtime, int64_t leng… 12 v9fs_getattr(uint16_t tag, uint8_t id, int32_t fid, uint64_t request_mask) "tag %d id %d fid %d req… 13 v9fs_getattr_return(uint16_t tag, uint8_t id, uint64_t result_mask, uint32_t mode, uint32_t uid, ui… [all …]
|
/openbmc/linux/arch/sparc/include/asm/ |
H A D | spitfire.h | 97 static inline void spitfire_put_dcache_tag(unsigned long addr, unsigned long tag) in spitfire_put_dcache_tag() argument 102 : "r" (tag), "r" (addr), "i" (ASI_DCACHE_TAG)); in spitfire_put_dcache_tag() 111 static inline void spitfire_put_icache_tag(unsigned long addr, unsigned long tag) in spitfire_put_icache_tag() argument 116 : "r" (tag), "r" (addr), "i" (ASI_IC_TAG)); in spitfire_put_icache_tag() 135 unsigned long tag; in spitfire_get_dtlb_tag() local 138 : "=r" (tag) in spitfire_get_dtlb_tag() 140 return tag; in spitfire_get_dtlb_tag() 168 unsigned long tag; in spitfire_get_itlb_tag() local 171 : "=r" (tag) in spitfire_get_itlb_tag() 173 return tag; in spitfire_get_itlb_tag() [all …]
|
/openbmc/qemu/hw/misc/ |
H A D | mips_itu.c | 78 MIPSITUState *tag = (MIPSITUState *)opaque; in itc_tag_read() local 86 return tag->ITCAddressMap[index]; in itc_tag_read() 89 static void itc_reconfigure(MIPSITUState *tag) in itc_reconfigure() argument 91 uint64_t *am = &tag->ITCAddressMap[0]; in itc_reconfigure() 92 MemoryRegion *mr = &tag->storage_io; in itc_reconfigure() 109 MIPSITUState *tag = (MIPSITUState *)opaque; in itc_tag_write() local 110 uint64_t *am = &tag->ITCAddressMap[0]; in itc_tag_write() 129 itc_reconfigure(tag); in itc_tag_write() 195 if (c->tag.FIFO) { in view_bypass_read() 204 if (c->tag.FIFO && (c->tag.FIFOPtr > 0)) { in view_bypass_write() [all …]
|
/openbmc/linux/drivers/net/ethernet/netronome/nfp/ |
H A D | ccm.c | 38 static void nfp_ccm_free_tag(struct nfp_ccm *ccm, u16 tag) in nfp_ccm_free_tag() argument 40 WARN_ON(!__test_and_clear_bit(tag, ccm->tag_allocator)); in nfp_ccm_free_tag() 47 static struct sk_buff *__nfp_ccm_reply(struct nfp_ccm *ccm, u16 tag) in __nfp_ccm_reply() argument 54 if (msg_tag == tag) { in __nfp_ccm_reply() 55 nfp_ccm_free_tag(ccm, tag); in __nfp_ccm_reply() 65 nfp_ccm_reply(struct nfp_ccm *ccm, struct nfp_app *app, u16 tag) in nfp_ccm_reply() argument 70 skb = __nfp_ccm_reply(ccm, tag); in nfp_ccm_reply() 77 nfp_ccm_reply_drop_tag(struct nfp_ccm *ccm, struct nfp_app *app, u16 tag) in nfp_ccm_reply_drop_tag() argument 82 skb = __nfp_ccm_reply(ccm, tag); in nfp_ccm_reply_drop_tag() 84 nfp_ccm_free_tag(ccm, tag); in nfp_ccm_reply_drop_tag() [all …]
|
/openbmc/linux/arch/x86/math-emu/ |
H A D | reg_divide.c | 34 int tag, deststnr; in FPU_div() local 81 tag = FPU_u_div(&x, &y, dest, control_w, sign); in FPU_div() 83 if (tag < 0) in FPU_div() 84 return tag; in FPU_div() 86 FPU_settagi(deststnr, tag); in FPU_div() 87 return tag; in FPU_div() 103 tag = FPU_u_div(&x, &y, dest, control_w, sign); in FPU_div() 104 if (tag < 0) in FPU_div() 105 return tag; in FPU_div() 107 FPU_settagi(deststnr, tag); in FPU_div() [all …]
|
H A D | fpu_tags.c | 39 void FPU_settag0(int tag) in FPU_settag0() argument 44 fpu_tag_word |= (tag & 3) << (regnr * 2); in FPU_settag0() 47 void FPU_settagi(int stnr, int tag) in FPU_settagi() argument 52 fpu_tag_word |= (tag & 3) << (regnr * 2); in FPU_settagi() 55 void FPU_settag(int regnr, int tag) in FPU_settag() argument 59 fpu_tag_word |= (tag & 3) << (regnr * 2); in FPU_settag() 95 void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr) in FPU_copy_to_regi() argument 98 FPU_settagi(stnr, tag); in FPU_copy_to_regi() 101 void FPU_copy_to_reg1(FPU_REG const *r, u_char tag) in FPU_copy_to_reg1() argument 104 FPU_settagi(1, tag); in FPU_copy_to_reg1() [all …]
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/ |
H A D | dr_ste_v0.c | 738 u8 *tag) in dr_ste_v0_build_eth_l2_src_dst_tag() argument 742 DR_STE_SET_TAG(eth_l2_src_dst, tag, dmac_47_16, spec, dmac_47_16); in dr_ste_v0_build_eth_l2_src_dst_tag() 743 DR_STE_SET_TAG(eth_l2_src_dst, tag, dmac_15_0, spec, dmac_15_0); in dr_ste_v0_build_eth_l2_src_dst_tag() 746 MLX5_SET(ste_eth_l2_src_dst, tag, smac_47_32, in dr_ste_v0_build_eth_l2_src_dst_tag() 748 MLX5_SET(ste_eth_l2_src_dst, tag, smac_31_0, in dr_ste_v0_build_eth_l2_src_dst_tag() 756 MLX5_SET(ste_eth_l2_src_dst, tag, l3_type, STE_IPV4); in dr_ste_v0_build_eth_l2_src_dst_tag() 759 MLX5_SET(ste_eth_l2_src_dst, tag, l3_type, STE_IPV6); in dr_ste_v0_build_eth_l2_src_dst_tag() 766 DR_STE_SET_TAG(eth_l2_src_dst, tag, first_vlan_id, spec, first_vid); in dr_ste_v0_build_eth_l2_src_dst_tag() 767 DR_STE_SET_TAG(eth_l2_src_dst, tag, first_cfi, spec, first_cfi); in dr_ste_v0_build_eth_l2_src_dst_tag() 768 DR_STE_SET_TAG(eth_l2_src_dst, tag, first_priority, spec, first_prio); in dr_ste_v0_build_eth_l2_src_dst_tag() [all …]
|
H A D | dr_ste_v1.c | 353 u8 *tag = hw_ste_p + DR_STE_SIZE_CTRL; in dr_ste_v1_prepare_for_postsend() local 354 u8 *mask = tag + DR_STE_SIZE_TAG; in dr_ste_v1_prepare_for_postsend() 363 memcpy(tmp_tag, tag, DR_STE_SIZE_TAG); in dr_ste_v1_prepare_for_postsend() 366 memcpy(tag, mask, DR_STE_SIZE_MASK); in dr_ste_v1_prepare_for_postsend() 1128 u8 *tag) in dr_ste_v1_build_eth_l2_src_dst_tag() argument 1132 DR_STE_SET_TAG(eth_l2_src_dst_v1, tag, dmac_47_16, spec, dmac_47_16); in dr_ste_v1_build_eth_l2_src_dst_tag() 1133 DR_STE_SET_TAG(eth_l2_src_dst_v1, tag, dmac_15_0, spec, dmac_15_0); in dr_ste_v1_build_eth_l2_src_dst_tag() 1135 DR_STE_SET_TAG(eth_l2_src_dst_v1, tag, smac_47_16, spec, smac_47_16); in dr_ste_v1_build_eth_l2_src_dst_tag() 1136 DR_STE_SET_TAG(eth_l2_src_dst_v1, tag, smac_15_0, spec, smac_15_0); in dr_ste_v1_build_eth_l2_src_dst_tag() 1139 MLX5_SET(ste_eth_l2_src_dst_v1, tag, l3_type, STE_IPV4); in dr_ste_v1_build_eth_l2_src_dst_tag() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/vlc/vlc/ |
H A D | taglib-2.patch | 19 static void ReadMetaFromBasicTag(const Tag* tag, vlc_meta_t *dest) 22 - if( !tag->accessor().isNull() && !tag->accessor().isEmpty() ) \ 23 + if( !tag->accessor().isEmpty() ) \ 24 vlc_meta_Set##meta( dest, tag->accessor().toCString(true) ) 26 if( tag->accessor() ) \ 31 - if( tag->itemListMap().contains(keyName) ) \ 32 + if( tag->itemMap().contains(keyName) ) \ 34 - list = tag->itemListMap()[keyName]; \ 35 + list = tag->itemMap()[keyName]; \ 39 - if( tag->itemListMap().contains(keyName) ) \ [all …]
|
/openbmc/qemu/crypto/ |
H A D | der.c | 26 uint8_t tag; member 233 uint8_t tag; in qcrypto_der_decode_tlv() local 240 tag = qcrypto_der_cut_byte(data, dlen); in qcrypto_der_decode_tlv() 241 if (tag != expected_tag) { in qcrypto_der_decode_tlv() 243 expected_tag, tag); in qcrypto_der_decode_tlv() 262 const uint8_t tag = QCRYPTO_DER_TAG(QCRYPTO_DER_TAG_CLASS_UNIV, in qcrypto_der_decode_int() local 265 return qcrypto_der_decode_tlv(tag, data, dlen, cb, ctx, errp); in qcrypto_der_decode_int() 271 uint8_t tag = QCRYPTO_DER_TAG(QCRYPTO_DER_TAG_CLASS_UNIV, in qcrypto_der_decode_seq() local 274 return qcrypto_der_decode_tlv(tag, data, dlen, cb, ctx, errp); in qcrypto_der_decode_seq() 280 uint8_t tag = QCRYPTO_DER_TAG(QCRYPTO_DER_TAG_CLASS_UNIV, in qcrypto_der_decode_octet_str() local [all …]
|
/openbmc/linux/drivers/ata/ |
H A D | sata_dwc_460ex.c | 175 static void sata_dwc_bmdma_start_by_tag(struct ata_queued_cmd *qc, u8 tag); 178 static void sata_dwc_clear_dmacr(struct sata_dwc_device_port *hsdevp, u8 tag); 295 u8 tag = 0; in dma_dwc_xfer_done() local 301 tag = ap->link.active_tag; in dma_dwc_xfer_done() 309 sata_dwc_clear_dmacr(hsdevp, tag); in dma_dwc_xfer_done() 311 if (hsdevp->dma_pending[tag] == SATA_DWC_DMA_PENDING_NONE) { in dma_dwc_xfer_done() 313 tag, hsdevp->dma_pending[tag]); in dma_dwc_xfer_done() 405 static u32 qcmd_tag_to_mask(u8 tag) in qcmd_tag_to_mask() argument 407 return 0x00000001 << (tag & 0x1f); in qcmd_tag_to_mask() 419 u8 status, tag; in sata_dwc_error_intr() local [all …]
|
/openbmc/u-boot/drivers/tpm/ |
H A D | tpm2_tis_sandbox.c | 64 static int sandbox_tpm2_check_session(struct udevice *dev, u32 command, u16 tag, in sandbox_tpm2_check_session() argument 78 if (tag != TPM2_ST_NO_SESSIONS) { in sandbox_tpm2_check_session() 91 if (tag != TPM2_ST_SESSIONS) { in sandbox_tpm2_check_session() 214 static int sandbox_tpm2_fill_buf(u8 *recv, size_t *recv_len, u16 tag, u32 rc) in sandbox_tpm2_fill_buf() argument 216 *recv_len = sizeof(tag) + sizeof(u32) + sizeof(rc); in sandbox_tpm2_fill_buf() 219 put_unaligned_be16(tag, recv); in sandbox_tpm2_fill_buf() 220 recv += sizeof(tag); in sandbox_tpm2_fill_buf() 263 u16 tag, mode, new_pw_sz; in sandbox_tpm2_xfer() local 277 tag = get_unaligned_be16(sent); in sandbox_tpm2_xfer() 278 sent += sizeof(tag); in sandbox_tpm2_xfer() [all …]
|
/openbmc/linux/arch/mips/cavium-octeon/executive/ |
H A D | cvmx-l2c.c | 319 uint64_t tag = addr >> shift; in cvmx_l2c_lock_line() local 332 if (l2c_tadx_tag.s.valid && l2c_tadx_tag.s.tag == tag) in cvmx_l2c_lock_line() 465 union cvmx_l2c_tag tag; in cvmx_l2c_unlock_line() local 478 tag = cvmx_l2c_get_tag(assoc, index); in cvmx_l2c_unlock_line() 480 if (tag.s.V && (tag.s.addr == tag_addr)) { in cvmx_l2c_unlock_line() 482 return tag.s.L; in cvmx_l2c_unlock_line() 487 union cvmx_l2c_tag tag; in cvmx_l2c_unlock_line() local 495 tag = cvmx_l2c_get_tag(assoc, index); in cvmx_l2c_unlock_line() 497 if (tag.s.V && (tag.s.addr == tag_addr)) { in cvmx_l2c_unlock_line() 499 return tag.s.L; in cvmx_l2c_unlock_line() [all …]
|
/openbmc/linux/lib/ |
H A D | radix-tree.c | 100 static inline void tag_set(struct radix_tree_node *node, unsigned int tag, in tag_set() argument 103 __set_bit(offset, node->tags[tag]); in tag_set() 106 static inline void tag_clear(struct radix_tree_node *node, unsigned int tag, in tag_clear() argument 109 __clear_bit(offset, node->tags[tag]); in tag_clear() 112 static inline int tag_get(const struct radix_tree_node *node, unsigned int tag, in tag_get() argument 115 return test_bit(offset, node->tags[tag]); in tag_get() 118 static inline void root_tag_set(struct radix_tree_root *root, unsigned tag) in root_tag_set() argument 120 root->xa_flags |= (__force gfp_t)(1 << (tag + ROOT_TAG_SHIFT)); in root_tag_set() 123 static inline void root_tag_clear(struct radix_tree_root *root, unsigned tag) in root_tag_clear() argument 125 root->xa_flags &= (__force gfp_t)~(1 << (tag + ROOT_TAG_SHIFT)); in root_tag_clear() [all …]
|
/openbmc/entity-manager/ |
H A D | Doxyfile | 20 # This tag specifies the encoding used for all characters in the configuration 22 # text before the first occurrence of this tag. Doxygen uses libiconv (or the 29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This 43 # Using the PROJECT_BRIEF tag one can provide an optional one line description 49 # With the PROJECT_LOGO tag one can specify a logo or an icon that is included 56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all [all …]
|
/openbmc/u-boot/arch/x86/include/asm/ |
H A D | coreboot_tables.h | 26 u32 tag; member 48 u32 tag; member 56 u32 tag; member 64 u32 tag; member 83 u32 tag; member 91 u32 tag; member 103 u32 tag; member 118 u32 tag; member 126 u32 tag; member 154 u32 tag; member [all …]
|