Home
last modified time | relevance | path

Searched full:declared (Results 1 – 25 of 52) sorted by relevance

123

/qemu/target/hexagon/
H A Dgen_helper_protos.py35 declared = []
37 declared.append(ret_type)
40 declared.append(arg.proto_arg)
42 arguments = ", ".join(declared)
48 f.write(f"DEF_HELPER_{len(declared) - 1}({tag}, {arguments})\n")
50 f.write(f"DEF_HELPER_FLAGS_{len(declared) - 1}({tag}, "
H A Dgen_tcg_funcs.py67 declared = []
71 reg.idef_arg(declared)
74 declared.append(hex_common.imm_name(immlett))
76 arguments = ", ".join(["ctx", "ctx->insn", "ctx->pkt"] + declared)
83 declared = []
86 declared.append(ret_type)
89 declared.append(arg.call_arg)
91 arguments = ", ".join(declared)
H A Dgen_helper_funcs.py43 declared = []
45 declared.append(arg.func_arg)
47 arguments = ", ".join(declared)
H A Dhex_common.py344 def idef_arg(self, declared): argument
345 declared.append(self.reg_tcg())
559 def idef_arg(self, declared): argument
560 declared.append(self.reg_tcg())
561 declared.append("CS")
/qemu/target/hexagon/idef-parser/
H A Didef-parser.h134 * Semantic record of the VARID token, identifying declared variables
142 * Data structure uniquely identifying a declared VARID variable, used for
143 * keeping track of declared variable, so that any variable is declared only
171 HexVar var; /**< rvalue of declared variable type */
210 unsigned tmp_count; /**< Index of the last declared TCGv temp */
211 unsigned qemu_tmp_count; /**< Index of the last declared int temp */
212 unsigned if_count; /**< Index of the last declared if label */
H A DREADME.rst59 - Keep track of which registers, among the declared one, have been
76 declared by the declaration statements. In this case all the three registers
77 will be declared, ``RsV`` and ``RtV`` will also be read and ``RdV`` will be
94 registers, storing the result in the just declared temporary.
157 declared anywhere, but rather a symbol which is easy to match in
283 Similarly to C, variables in the input code must be explicitly declared, such as
295 which are later automatically freed at the end of the function they're declared
296 in. Contrary to C, we only allow variables to be declared with an integer type
331 name, size, and bit width of the newly declared variable. In addition, this
332 function also ensures that variables aren't declared multiple times, and prints
/qemu/scripts/codeconverter/codeconverter/
H A Dqom_type_info.py350 # self.info("No type checkers declared for %s", uppercase)
352 …# self.warn("Can't find where type checkers for %s (%s) are declared. We will need them to…
405 # self.warn("Can't find where parent type %s is declared", parent_typename)
514 d.warn("instance type checker for %s already declared", uppercase)
576 d.warn("instance type declared here (%s)", d.instancetype)
581 d.warn("class type declared here (%s)", d.classtype)
641 self.warn("class type declared for %s", uppercase)
661 d.warn("instance type declared here (%s)", d.instancetype)
666 d.warn("class type declared here")
746 parent.info("parent type declared here")
[all …]
H A Dqom_macros.py643 """Add DECLARE_*_TYPE(..., void) when there's no declared type"""
684 self.info("type name for %s already declared", uppercase)
/qemu/docs/devel/
H A Dqom.rst313 A type is declared using the OBJECT_DECLARE macro family. In types
344 The 'struct MyDevice' needs to be declared separately.
345 If the type requires virtual functions to be declared in the class
352 own virtual functions (i.e. which was declared with OBJECT_DECLARE_SIMPLE_TYPE)
H A Dstyle.rst149 Public functions from a file or subsystem (declared in headers) tend
334 If a variable is counting something, it should be declared with an
634 * Variables declared with g_auto* MUST always be initialized,
637 * If a variable declared with g_auto* holds a value which must
H A Dcontrol-flow-integrity.rst19 function pointer declared in the source code.
H A Drust.rst46 A target for ``rustfmt`` is also declared in ``rust/meson.build``:
299 the wrapper to be declared thread-safe::
H A Ddecodetree.rst103 to have been already declared, typically via a second decoder.
H A Dreset.rst6 The reset of qemu objects is handled using the resettable interface declared
/qemu/rust/qemu-api/src/
H A Dqom.rs141 /// no checking whatsoever of what is declared. It is the caller's
155 // declared above.
343 // SAFETY: soundness is declared via IsA<U>, which is an unsafe trait; in upcast()
364 // SAFETY: soundness is declared via IsA<U>, which is an unsafe trait; in upcast_mut()
432 /// For classes declared in C:
437 /// to the superclass, as declared in the `TypeInfo`
442 /// For classes declared in Rust and implementing [`ObjectImpl`]:
497 /// right now, interfaces can only be declared in C.
589 // SAFETY: soundness is declared via IsA<U>, which is an unsafe trait in upcast()
/qemu/qga/vss-win32/
H A Dvss-common.h107 * COM initializer; this should declared before COMPointer to uninitialize COM
/qemu/include/system/
H A Dramblock.h16 * The functions declared here will be removed soon.
H A Dos-win32.h65 * These functions are not declared in setjmp.h because __aarch64__ defines
H A Dram_addr.h16 * The functions declared here will be removed soon.
/qemu/include/qemu/
H A Dcoroutine-tls.h102 * Define a variable in Thread Local Storage that was previously declared from
/qemu/tests/functional/qemu_test/
H A Dasset.py29 # Instances of this class must be declared as class level variables
/qemu/scripts/
H A Dblock-coroutine-wrapper.py124 # Match wrappers declared with a co_wrapper mark
H A Dsimpletrace.py113 f'{e} event is logged but is not declared in the trace events'
/qemu/scripts/tracetool/
H A D__init__.py106 "declared as 'void *'" % name)
/qemu/include/qom/
H A Dobject.h232 * The object struct and class struct need to be declared manually.
249 * declared.
252 * virtual methods declared.
425 * no requirement for a class struct. If you declared your type with

123