Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 1489) sorted by relevance

12345678910>>...60

/openbmc/linux/arch/arm/kernel/
H A Datags_compat.c83 tag = tag_next(tag); in memtag()
84 tag->hdr.tag = ATAG_MEM; in memtag()
125 tag = tag_next(tag); in build_tag_list()
133 tag = tag_next(tag); in build_tag_list()
139 tag = tag_next(tag); in build_tag_list()
145 tag = tag_next(tag); in build_tag_list()
162 tag = tag_next(tag); in build_tag_list()
171 tag = tag_next(tag); in build_tag_list()
187 tag = tag_next(tag); in build_tag_list()
196 tag = tag_next(tag); in build_tag_list()
[all …]
H A Datags_parse.c53 static int __init parse_tag_core(const struct tag *tag) in parse_tag_core() argument
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()
91 static int __init parse_tag_ramdisk(const struct tag *tag) in parse_tag_ramdisk() argument
143 static int __init parse_tag(const struct tag *tag) in parse_tag() argument
149 if (tag->hdr.tag == t->tag) { in parse_tag()
169 static void __init squash_mem_tags(struct tag *tag) in squash_mem_tags() argument
171 for (; tag->hdr.size; tag = tag_next(tag)) in squash_mem_tags()
172 if (tag->hdr.tag == ATAG_MEM) in squash_mem_tags()
173 tag->hdr.tag = ATAG_NONE; in squash_mem_tags()
[all …]
H A Datags_proc.c28 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 Danalyse-9p-simpletrace.py84 def v9fs_rerror(self, tag, id, err): argument
87 def v9fs_version(self, tag, id, msize, version): argument
99 def v9fs_stat(self, tag, id, fid): argument
117 def v9fs_open(self, tag, id, fid, mode): argument
129 def v9fs_fsync(self, tag, id, fid, datasync): argument
132 def v9fs_clunk(self, tag, id, fid): argument
138 def v9fs_read_return(self, tag, id, count, err): argument
165 def v9fs_flush(self, tag, id, flush_tag): argument
171 def v9fs_remove(self, tag, id, fid): argument
183 def v9fs_lock_return(self, tag, id, status): argument
[all …]
/openbmc/qemu/target/hexagon/
H A Dhex_common.py79 def is_cond_jump(tag): argument
87 def is_cond_call(tag): argument
116 for tag in tags:
124 for tag in tags:
131 for tag in tags:
132 if is_cond_jump(tag) or is_cond_call(tag):
204 compute_func = lambda tag: compute_tag_regs(tag, full) argument
251 def need_slot(tag): argument
263 def need_part1(tag): argument
267 def need_ea(tag): argument
[all …]
H A Dgen_idef_parser_funcs.py55 for tag in hex_common.tags:
74 if tag in {
89 if tag in {
100 if tag == "S2_cabacdecbin" or tag == "A5_ACS":
102 if tag.startswith("Y"):
104 if tag.startswith("V6_"):
107 tag not in {
124 if ( tag == 'S2_insert' or
127 tag == 'A2_swiz' ):
130 regs = tagregs[tag]
[all …]
H A Ddectree.py27 tag: "".join(reversed(iset.iset[tag]["enc"].replace(" ", "")))
28 for tag in iset.tags
32 enc_classes = set([iset.iset[tag]["enc_class"] for tag in encs.keys()])
58 for tag in encs.keys():
65 encs[tag] = encs[tag] + "0" * (32 - len(encs[tag]))
87 faketags.add(tag)
110 opcode_bit_for_all[i] and all([encs[tag][i] == "0" for tag in tags])
125 bitset = set([encs[tag][lsb : lsb + width] for tag in tags])
160 [tag for tag in tags if encs[tag][best_lsb : best_lsb + best_width] == bits]
176 for tag in faketags:
[all …]
H A Dgen_helper_protos.py65 regs = tagregs[tag]
66 imms = tagimms[tag]
95 if hex_common.need_PC(tag):
114 if hex_common.need_PC(tag):
169 if hex_common.need_PC(tag):
173 if hex_common.need_slot(tag):
175 if hex_common.need_part1(tag):
203 for tag in hex_common.tags:
211 if tag == "Y6_diag":
213 if tag == "Y6_diag0":
[all …]
H A Dgen_tcg_funcs.py29 def gen_decl_ea_tcg(f, tag): argument
501 if hex_common.need_ea(tag):
502 gen_decl_ea_tcg(f, tag)
560 if hex_common.need_PC(tag):
604 if hex_common.need_PC(tag):
623 regs = tagregs[tag]
624 imms = tagimms[tag]
657 for tag in hex_common.tags:
665 if tag == "Y6_diag":
667 if tag == "Y6_diag0":
[all …]
H A Dgen_analyze_funcs.py29 def is_predicated(tag): argument
33 def analyze_opn_old(f, tag, regtype, regid, regno): argument
89 if hex_common.is_new_result(tag):
91 elif hex_common.is_tmp_result(tag):
168 def analyze_opn(f, tag, regtype, regid, i): argument
197 def gen_analyze_func(f, tag, regs, imms): argument
206 analyze_opn(f, tag, regtype, regid, i)
210 tag
215 "A_CVI" in hex_common.attribdict[tag]):
246 for tag in hex_common.tags:
[all …]
/openbmc/qemu/hw/9pfs/
H A Dtrace-events4 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…
10 v9fs_stat(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
21 v9fs_clunk(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
32 v9fs_flush(uint16_t tag, uint8_t id, int16_t flush_tag) "tag %d id %d flush_tag %d"
34 v9fs_remove(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
39 v9fs_lock_return(uint16_t tag, uint8_t id, int8_t status) "tag %d id %d status %d"
47 v9fs_readlink(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
48 v9fs_readlink_return(uint16_t tag, uint8_t id, char* target) "tag %d id %d name %s"
[all …]
/openbmc/linux/arch/sparc/include/asm/
H A Dspitfire.h135 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
173 return tag; in spitfire_get_itlb_tag()
260 unsigned long tag; in cheetah_get_ldtlb_tag() local
267 return tag; in cheetah_get_ldtlb_tag()
272 unsigned long tag; in cheetah_get_litlb_tag() local
279 return tag; in cheetah_get_litlb_tag()
321 return tag; in cheetah_get_dtlb_tag()
[all …]
/openbmc/qemu/hw/misc/
H A Dmips_itu.c96 if (tag->saar) { in itc_reconfigure()
205 if (c->tag.FIFO) { in view_bypass_read()
214 if (c->tag.FIFO && (c->tag.FIFOPtr > 0)) { in view_bypass_write()
240 if (c->tag.E) { in view_control_write()
251 if (!c->tag.FIFO) { in view_ef_common_read()
255 c->tag.F = 0; in view_ef_common_read()
272 c->tag.E = 1; in view_ef_common_read()
295 c->tag.E = 0; in view_ef_common_write()
312 c->tag.F = 1; in view_ef_common_write()
332 if (c->tag.FIFO) { in view_pv_common_read()
[all …]
/openbmc/linux/drivers/net/ethernet/netronome/nfp/
H A Dccm.c54 if (msg_tag == tag) { in __nfp_ccm_reply()
55 nfp_ccm_free_tag(ccm, tag); in __nfp_ccm_reply()
84 nfp_ccm_free_tag(ccm, tag); in nfp_ccm_reply_drop_tag()
106 tag), in nfp_ccm_wait_reply()
133 int reply_type, tag; in nfp_ccm_communicate() local
137 if (tag < 0) { in nfp_ccm_communicate()
140 return ERR_PTR(tag); in nfp_ccm_communicate()
146 hdr->tag = cpu_to_be16(tag); in nfp_ccm_communicate()
178 unsigned int tag; in nfp_ccm_rx() local
187 tag = nfp_ccm_get_tag(skb); in nfp_ccm_rx()
[all …]
/openbmc/linux/arch/x86/math-emu/
H A Dreg_divide.c34 int tag, deststnr; in FPU_div() local
83 if (tag < 0) in FPU_div()
84 return tag; in FPU_div()
87 return tag; in FPU_div()
104 if (tag < 0) in FPU_div()
105 return tag; in FPU_div()
108 return tag; in FPU_div()
137 int tag; in FPU_div() local
138 tag = FPU_gettag0(); in FPU_div()
144 int tag; in FPU_div() local
[all …]
H A Dfpu_tags.c39 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()
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()
107 void FPU_copy_to_reg0(FPU_REG const *r, u_char tag) in FPU_copy_to_reg0() argument
[all …]
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/vlc/vlc/
H A Dtaglib-2.patch19 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) )
40 + if( tag->itemMap().contains(keyName) ) \
43 + list = tag->itemMap()[keyName]; \
51 - if( tag->itemListMap().contains("covr") )
52 + if( tag->itemMap().contains("covr") )
55 + MP4::CoverArtList list = tag->itemMap()["covr"].toCoverArtList();
61 WriteMetaToId3v2( riff_aiff->tag(), p_item );
[all …]
/openbmc/qemu/crypto/
H A Dder.c26 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()
319 node->tag = tag; in qcrypto_der_encode_prim()
345 node->tag = tag; in qcrypto_der_encode_cons_begin()
368 qcrypto_der_encode_cons_begin(ctx, tag); in qcrypto_der_encode_seq_begin()
399 qcrypto_der_encode_prim(ctx, tag, NULL, 0); in qcrypto_der_encode_null()
416 qcrypto_der_encode_cons_begin(ctx, tag); in qcrypto_der_encode_octet_str_begin()
[all …]
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/
H A Ddr_ste_v0.c738 u8 *tag) in dr_ste_v0_build_eth_l2_src_dst_tag() argument
794 u8 *tag) in dr_ste_v0_build_eth_l3_ipv6_dst_tag() argument
820 u8 *tag) in dr_ste_v0_build_eth_l3_ipv6_src_tag() argument
846 u8 *tag) in dr_ste_v0_build_eth_l3_ipv4_5_tuple_tag() argument
1176 u8 *tag) in dr_ste_v0_build_eth_ipv6_l3_l4_tag() argument
1218 u8 *tag) in dr_ste_v0_build_mpls_tag() argument
1244 u8 *tag) in dr_ste_v0_build_tnl_gre_tag() argument
1275 u8 *tag) in dr_ste_v0_build_tnl_mpls_tag() argument
1406 u8 *tag) in dr_ste_v0_build_icmp_tag() argument
1496 u8 *tag) in dr_ste_v0_build_eth_l4_misc_tag() argument
[all …]
H A Ddr_ste_v1.c1376 u8 *tag) in dr_ste_v1_build_eth_l2_src_tag() argument
1409 u8 *tag) in dr_ste_v1_build_eth_l2_dst_tag() argument
1459 u8 *tag) in dr_ste_v1_build_eth_l2_tnl_tag() argument
1511 u8 *tag) in dr_ste_v1_build_eth_l3_ipv4_misc_tag() argument
1573 u8 *tag) in dr_ste_v1_build_mpls_tag() argument
1624 u8 *tag) in dr_ste_v1_build_tnl_mpls_tag() argument
1669 u8 *tag) in dr_ste_v1_build_tnl_mpls_over_udp_tag() argument
1710 u8 *tag) in dr_ste_v1_build_tnl_mpls_over_gre_tag() argument
1751 u8 *tag) in dr_ste_v1_build_icmp_tag() argument
1921 u8 *tag) in dr_ste_v1_build_register_0_tag() argument
[all …]
/openbmc/linux/drivers/staging/media/atomisp/pci/hive_isp_css_shared/host/
H A Dtag.c49 sh_css_encode_tag_descr(struct sh_css_tag_descr *tag) in sh_css_encode_tag_descr() argument
59 assert(tag); in sh_css_encode_tag_descr()
61 if (tag->num_captures < 0) { in sh_css_encode_tag_descr()
62 num_captures = -tag->num_captures; in sh_css_encode_tag_descr()
65 num_captures = tag->num_captures; in sh_css_encode_tag_descr()
68 skip = tag->skip; in sh_css_encode_tag_descr()
69 if (tag->offset < 0) { in sh_css_encode_tag_descr()
70 offset = -tag->offset; in sh_css_encode_tag_descr()
73 offset = tag->offset; in sh_css_encode_tag_descr()
76 exp_id = tag->exp_id; in sh_css_encode_tag_descr()
/openbmc/u-boot/drivers/tpm/
H A Dtpm2_tis_sandbox.c78 if (tag != TPM2_ST_NO_SESSIONS) { in sandbox_tpm2_check_session()
91 if (tag != TPM2_ST_SESSIONS) { in sandbox_tpm2_check_session()
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()
389 tag, rc); in sandbox_tpm2_xfer()
397 tag, rc); in sandbox_tpm2_xfer()
409 recv += sizeof(tag); in sandbox_tpm2_xfer()
[all …]
/openbmc/linux/drivers/ata/
H A Dsata_dwc_460ex.c295 u8 tag = 0; in dma_dwc_xfer_done() local
313 tag, hsdevp->dma_pending[tag]); in dma_dwc_xfer_done()
431 hsdevp->dma_pending[tag], hsdevp->cmd_issued[tag]); in sata_dwc_error_intr()
528 tag = 0; in sata_dwc_isr()
615 tag = 0; in sata_dwc_isr()
618 tag++; in sata_dwc_isr()
704 __func__, tag, hsdevp->dma_pending[tag], dmacr); in sata_dwc_clear_dmacr()
951 tag = 0; in sata_dwc_bmdma_setup()
975 __func__, hsdevp->cmd_issued[tag], tag); in sata_dwc_bmdma_start_by_tag()
1004 tag = 0; in sata_dwc_bmdma_start()
[all …]
/openbmc/linux/arch/mips/cavium-octeon/executive/
H A Dcvmx-l2c.c332 if (l2c_tadx_tag.s.valid && l2c_tadx_tag.s.tag == tag) in cvmx_l2c_lock_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()
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()
652 union cvmx_l2c_tag tag; in cvmx_l2c_get_tag() local
654 tag.u64 = 0; in cvmx_l2c_get_tag()
657 return tag; in cvmx_l2c_get_tag()
662 return tag; in cvmx_l2c_get_tag()
683 tag.s.addr = l2c_tadx_tag.s.tag; in cvmx_l2c_get_tag()
[all …]
/openbmc/u-boot/arch/x86/include/asm/
H A Dcoreboot_tables.h26 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 …]

12345678910>>...60