Home
last modified time | relevance | path

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

12345678910>>...24

/openbmc/qemu/scripts/
H A Danalyse-9p-simpletrace.py84 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 Dgen_idef_parser_funcs.py62 for tag in hex_common.tags:
64 if "A_PRIV" in hex_common.attribdict[tag]:
67 if "A_GUEST" in hex_common.attribdict[tag]:
70 if tag in {"S2_asr_r_r_sat", "S2_asl_r_r_sat"}:
73 if tag in {"S4_vrcrotate_acc", "S4_vrcrotate"}:
76 if tag in {"J2_trap0", "J2_trap1"}:
79 if tag in {"A7_croundd_ri", "A7_croundd_rr"}:
81 if tag in {
93 if tag in {"S2_interleave", "S2_deinterleave"}:
96 if tag in {
[all …]
H A Dhex_common.py79 def is_cond_jump(tag): argument
80 if tag == "J2_rte":
82 if "A_HWLOOP0_END" in attribdict[tag] or "A_HWLOOP1_END" in attribdict[tag]:
84 return re.compile(r"(if.*fBRANCH)|(if.*fJUMPR)").search(semdict[tag]) != None
87 def is_cond_call(tag): argument
88 return re.compile(r"(if.*fCALL)").search(semdict[tag]) != None
113 for tag in tags:
114 for macname in allmacros_re.findall(semdict[tag]):
118 attribdict[tag] |= set(macro.attribs)
121 for tag in tags:
[all …]
H A Dgen_helper_funcs.py37 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 Dgen_helper_protos.py31 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):
62 for tag in hex_common.tags:
64 if "A_PRIV" in hex_common.attribdict[tag]:
67 if "A_GUEST" in hex_common.attribdict[tag]:
70 if tag == "Y6_diag":
[all …]
H A Dgen_tcg_funcs.py47 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 Dgen_analyze_funcs.py41 def gen_analyze_func(f, tag, regs, imms): argument
46 if (hex_common.is_hvx_insn(tag)):
47 if hex_common.has_hvx_helper(tag):
60 reg = hex_common.get_register(tag, reg_type, reg_id)
66 reg = hex_common.get_register(tag, reg_type, reg_id)
73 reg = hex_common.get_register(tag, reg_type, reg_id)
75 reg.analyze_write(f, tag, regno)
91 for tag in hex_common.tags:
92 gen_analyze_func(f, tag, tagregs[tag], tagimms[tag])
H A Dgen_decodetree.py30 tag: "".join(reversed(iset.iset[tag]["enc"].replace(" ", "")))
31 for tag in iset.tags
32 if iset.iset[tag]["enc"] != "MISSING ENCODING"
84 def skip_tag(tag, class_to_decode): argument
85 enc_class = iset.iset[tag]["enc_class"]
104 for tag in sorted(encs.keys(), key=iset.tags.index):
105 if skip_tag(tag, class_to_decode):
108 enc = encs[tag]
109 enc_str = "".join(reversed(encs[tag]))
119 regs = ordered_unique(regre.findall(iset.iset[tag]["syntax"]))
[all …]
H A Dgen_trans_funcs.py30 tag: "".join(reversed(iset.iset[tag]["enc"].replace(" ", "")))
31 for tag in iset.tags
32 if iset.iset[tag]["enc"] != "MISSING ENCODING"
50 def mark_which_imm_extended(f, tag): argument
52 imm = immre.findall(hex_common.semdict[tag])
80 for tag in sorted(encs.keys(), key=iset.tags.index):
81 regs = ordered_unique(regre.findall(iset.iset[tag]["syntax"]))
82 imms = ordered_unique(immre.findall(iset.iset[tag]["syntax"]))
96 reg = hex_common.get_register(tag, reg_type, reg_id)
111 mark_which_imm_extended(f, tag)
H A Dgen_tcg_func_table.py44 for tag in hex_common.tags:
46 if "A_PRIV" in hex_common.attribdict[tag]:
49 if "A_GUEST" in hex_common.attribdict[tag]:
52 if tag == "Y6_diag":
54 if tag == "Y6_diag0":
56 if tag == "Y6_diag1":
/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…
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/qemu/hw/misc/
H A Dmips_itu.c78 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/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) )
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 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()
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/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 …]
/openbmc/u-boot/drivers/tpm/
H A Dtpm2_tis_sandbox.c64 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/libpldm/src/msgbuf/
H A Dplatform.h40 enum pldm_sensor_readings_data_type tag, in pldm_msgbuf_extract_sensor_data() argument
43 switch (tag) { in pldm_msgbuf_extract_sensor_data()
68 enum pldm_sensor_readings_data_type tag, in pldm_msgbuf_extract_sensor_value() argument
71 switch (tag) { in pldm_msgbuf_extract_sensor_value()
89 #define pldm_msgbuf_extract_range_field_format(ctx, tag, dst) \ argument
92 dst, ctx, tag, (void *)&(dst))
94 struct pldm_msgbuf_ro *ctx, enum pldm_range_field_format tag, void *rff) in pldm__msgbuf_extract_range_field_format() argument
96 switch (tag) { in pldm__msgbuf_extract_range_field_format()
133 enum pldm_effecter_data_size tag, void *dst) in pldm_msgbuf_extract_effecter_value() argument
135 switch (tag) { in pldm_msgbuf_extract_effecter_value()
[all …]
/openbmc/u-boot/common/
H A Dbloblist.c39 static struct bloblist_rec *bloblist_findrec(uint tag) in bloblist_findrec() argument
48 if (rec->tag == tag) in bloblist_findrec()
55 static int bloblist_addrec(uint tag, int size, struct bloblist_rec **recp) in bloblist_addrec() argument
72 rec->tag = tag; in bloblist_addrec()
81 static int bloblist_ensurerec(uint tag, struct bloblist_rec **recp, int size) in bloblist_ensurerec() argument
85 rec = bloblist_findrec(tag); in bloblist_ensurerec()
92 ret = bloblist_addrec(tag, size, &rec); in bloblist_ensurerec()
101 void *bloblist_find(uint tag, int size) in bloblist_find() argument
105 rec = bloblist_findrec(tag); in bloblist_find()
114 void *bloblist_add(uint tag, int size) in bloblist_add() argument
[all …]
/openbmc/entity-manager/
H A DDoxyfile20 # 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/openbmc/poky/bitbake/lib/bs4/
H A Dcss.py20 def __init__(self, tag, api=soupsieve): argument
39 self.tag = tag
59 ns = self.tag._namespaces
123 select, self.tag, self._ns(namespaces, select), flags, **kwargs
157 select, self.tag, self._ns(namespaces, select), limit, flags,
189 select, self.tag, self._ns(namespaces, select), limit, flags, **kwargs
217 select, self.tag, self._ns(namespaces, select), flags, **kwargs
244 select, self.tag, self._ns(namespaces, select), flags, **kwargs
272 select, self.tag, self._ns(namespaces, select), flags, **kwargs
/openbmc/u-boot/arch/arm/mach-bcm283x/
H A Dmbox.c105 struct bcm2835_mbox_tag_hdr *tag; in bcm2835_mbox_call_prop() local
146 tag = (void *)(buffer + 1); in bcm2835_mbox_call_prop()
148 while (tag->tag) { in bcm2835_mbox_call_prop()
149 if (!(tag->val_len & BCM2835_MBOX_TAG_VAL_LEN_RESPONSE)) { in bcm2835_mbox_call_prop()
158 tag->val_len &= ~BCM2835_MBOX_TAG_VAL_LEN_RESPONSE; in bcm2835_mbox_call_prop()
159 tag = (void *)(((u8 *)tag) + sizeof(*tag) + tag->val_buf_size); in bcm2835_mbox_call_prop()
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dacl.py83 tag = acl_tag_t()
84 ret = libacl.acl_get_tag_type(entry_d, ctypes.byref(tag))
88 return tag.value
128 def __init__(self, tag, qualifier, mode): argument
129 self.tag = tag
136 if self.tag == ACL_USER:
139 elif self.tag == ACL_GROUP:
142 elif self.tag == ACL_USER_OBJ:
144 elif self.tag == ACL_GROUP_OBJ:
146 elif self.tag == ACL_MASK:
[all …]
/openbmc/u-boot/arch/nds32/include/asm/
H A Dsetup.h23 u32 tag; member
126 struct tag { struct
142 u32 tag; argument
143 int (*parse)(const struct tag *);
146 #define tag_member_present(tag, member) \ argument
147 ((unsigned long)(&((struct tag *)0L)->member + 1) \
148 <= (tag)->hdr.size * 4)
150 #define tag_next(t) ((struct tag *)((u32 *)(t) + (t)->hdr.size))
159 #define __tagtable(tag, fn) \ argument
160 static struct tagtable __tagtable_##fn __tag = { tag, fn }
/openbmc/u-boot/board/toradex/common/
H A Dtdx-cfg-block.c203 struct toradex_tag *tag; in read_tdx_cfg_block() local
229 tag = (struct toradex_tag *)config_block; in read_tdx_cfg_block()
230 if (tag->flags != TAG_FLAG_VALID || tag->id != TAG_VALID) { in read_tdx_cfg_block()
239 tag = (struct toradex_tag *)(config_block + offset); in read_tdx_cfg_block()
241 if (tag->id == TAG_INVALID) in read_tdx_cfg_block()
244 if (tag->flags == TAG_FLAG_VALID) { in read_tdx_cfg_block()
245 switch (tag->id) { in read_tdx_cfg_block()
260 offset += tag->len * 4; in read_tdx_cfg_block()
416 struct toradex_tag *tag; in do_cfgblock_create() local
479 tag = (struct toradex_tag *)config_block; in do_cfgblock_create()
[all …]
/openbmc/u-boot/arch/arm/include/asm/
H A Dsetup.h88 u32 tag; member
208 struct tag { struct
234 u32 tag; argument
235 int (*parse)(const struct tag *);
239 #define __tagtable(tag, fn) \ argument
240 static struct tagtable __tagtable_##fn __tag = { tag, fn }
242 #define tag_member_present(tag,member) \ argument
243 ((unsigned long)(&((struct tag *)0L)->member + 1) \
244 <= (tag)->hdr.size * 4)
246 #define tag_next(t) ((struct tag *)((u32 *)(t) + (t)->hdr.size))
[all …]

12345678910>>...24