| /qemu/scripts/coccinelle/ |
| A D | use-g_new-etc.cocci | 3 type T; 8 type T; 13 type T; 18 type T; 23 type T; 29 type T; 35 type T; 41 type T; 62 -(T *)g_new(T, n) 68 -(T *)g_new0(T, n) [all …]
|
| A D | exec_rw_const.cocci | 40 type T; 41 const T *V; 45 - address_space_rw(E1, E2, E3, (T *)V, E4, 1) 80 type T; 86 - address_space_read(E1, E2, E3, (T *)(E4), E5) 89 - address_space_write(E1, E2, E3, (T *)(E4), E5) 96 - cpu_physical_memory_rw(E1, (T *)(E2), E3, E4) 99 - cpu_physical_memory_read(E1, (T *)(E2), E3) 102 - cpu_physical_memory_write(E1, (T *)(E2), E3) 106 - dma_memory_read(E1, E2, (T *)(E3), E4) [all …]
|
| A D | typecast.cocci | 3 type T; 4 T v; 6 - (T *)&v
|
| A D | return_directly.cocci | 5 type T; 8 T F(...) 11 - T VAR;
|
| A D | use-error_fatal.cocci | 2 type T; 8 - T RET = FUN(ARGS, &ERR); 9 + T RET = FUN(ARGS, &error_fatal);
|
| A D | timer-del-timer-free.cocci | 15 expression T; 17 -timer_del(T); 18 timer_free(T);
|
| /qemu/tests/unit/ |
| A D | test-smp-parse.c | 303 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, T, 1, F, 0), 309 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, F, 0, T, 16), 315 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, F, 0, T, 2, T, 16), 321 .config = SMP_CONFIG_GENERIC(T, 8, F, 0, T, 4, T, 2, T, 16), 333 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, T, 2, T, 16), 376 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, T, 2, T, 8), 383 .config = SMP_CONFIG_GENERIC(T, 18, T, 2, T, 4, T, 2, T, 16), 455 .config = SMP_CONFIG_WITH_MODS_DIES(T, 200, T, 3, T, 5, T, 466 .config = SMP_CONFIG_WITH_MODS_DIES(T, 242, T, 3, T, 5, T, 479 .config = SMP_CONFIG_WITH_CLUSTERS(T, 16, T, 2, T, 2, T, 4, T, 2, T, 16), [all …]
|
| A D | test-crypto-xts.c | 343 uint8_t out[512], Torg[16], T[16]; in test_xts() local 357 memcpy(T, Torg, sizeof(T)); in test_xts() 365 memcpy(T, Torg, sizeof(T)); in test_xts() 393 memcpy(T, Torg, sizeof(T)); in test_xts_split() 405 memcpy(T, Torg, sizeof(T)); in test_xts_split() 439 memcpy(T + BAD_ALIGN, Torg, 16); in test_xts_unaligned() 449 memcpy(T, Torg, 16); in test_xts_unaligned() 459 memcpy(T, Torg, 16); in test_xts_unaligned() 470 memcpy(T + BAD_ALIGN, Torg, 16); in test_xts_unaligned() 480 memcpy(T, Torg, 16); in test_xts_unaligned() [all …]
|
| /qemu/pc-bios/ |
| A D | qemu_vga.ndrv | 13 …TF>T�>T�>T>H���<`ps8up|A��@�@<`in8tf|A��@�<`de8vt|A�`H�<`lp8wr|A�… 14 …|�����N� |�������!��|~x;�D8b�8�tK����N(@�8`��H�(|4T�~�8`�H8!@|… 15 …qT~>���`��x8�8�8H�`8b ���x��xK����|�8|@A�8`��HH�T|@@��h|@A��… 18 …T>K��yT}>���`��x8�8�8H�`�8|@A�8`��HX�`|@@��T|@@��h|@A�(… 21 …@@�8`��H�,�@�8`��H�8c��8�@8�<H %`,A�8`��H��T>K��5T>�}8c����x8�… 23 |��8K��a@8T��|��8�}��}��}��}��}��}�<`H8��}���}��… 31 …��!��;�D8bDK���8�N�*(A�H1`8bTK���H@8b|K���K��E|`4T�>�D�D�((A�… 33 …8`�8�?K���8`�8�?K���8�D��p�H8!@|�����N� 8����8�H$T�>T`>|@@��eN� … 35 …`H�a<8|��<��x8��8�8K���|yA�܀8T�88�H�|��T�A���eW@>|@@�…
|
| /qemu/tests/tcg/alpha/ |
| A D | test-cvttq.c | 53 } T[] = { in main() local 68 for (i = 0; i < sizeof(T)/sizeof(T[0]); i++) { in main() 69 long e, r = test_cvttq(&e, T[i].d); in main() 71 if (r != T[i].r || e != T[i].e) { in main() 73 T[i].d, T[i].r, T[i].e >> 48, r, e >> 48); in main()
|
| /qemu/qga/vss-win32/ |
| A D | vss-common.h | 76 template <class T> 78 COMPointer(const COMPointer<T> &p) { } /* no copy */ in COMPointer() 79 T *p; 81 COMPointer &operator=(T *new_p) 91 T **replace(void) in replace() 97 operator T*() { return p; } 98 T *operator->(void) { return p; } 99 T &operator*(void) { return *p; } 102 COMPointer(T *p = NULL) : p(p) { } in p()
|
| /qemu/scripts/codeconverter/codeconverter/ |
| A D | utils.py | 16 T = TypeVar('T') variable 17 def opt_compare(a: T, b: T) -> bool: argument 21 def merge(a: T, b: T) -> T: argument 68 def not_optional(arg: Optional[T]) -> T: argument
|
| A D | patching.py | 26 T = TypeVar('T') variable 272 def matches_of_type(self, t: Type[T]) -> List[T]: argument 277 def find_matches(self, t: Type[T], name: str, group: str='name') -> List[T]: argument 281 r: List[T] = [] 289 def find_match(self, t: Type[T], name: str, group: str='name') -> Optional[T]: argument 336 def find_match(self, t: Type[T], name: str, group: str='name') -> Optional[T]: argument
|
| /qemu/crypto/ |
| A D | xts.c | 111 xts_uint128 PP, CC, T; in xts_decrypt() local 128 encfunc(tweakctx, XTS_BLOCK_SIZE, T.b, iv); in xts_decrypt() 135 xts_tweak_encdec(datactx, decfunc, S, D, &T); in xts_decrypt() 152 memcpy(&CC, &T, XTS_BLOCK_SIZE); in xts_decrypt() 169 xts_tweak_encdec(datactx, decfunc, &CC, &D, &T); in xts_decrypt() 174 decfunc(tweakctx, XTS_BLOCK_SIZE, iv, T.b); in xts_decrypt() 187 xts_uint128 PP, CC, T; in xts_encrypt() local 204 encfunc(tweakctx, XTS_BLOCK_SIZE, T.b, iv); in xts_encrypt() 231 xts_tweak_encdec(datactx, encfunc, &S, &CC, &T); in xts_encrypt() 244 xts_tweak_encdec(datactx, encfunc, &PP, &D, &T); in xts_encrypt() [all …]
|
| /qemu/python/qemu/qmp/ |
| A D | util.py | 25 T = TypeVar('T') variable 56 def upper_half(func: T) -> T: argument 66 def bottom_half(func: T) -> T: argument 87 def create_task(coro: Coroutine[Any, Any, T], argument 152 def asyncio_run(coro: Coroutine[Any, Any, T], *, debug: bool = False) -> T: argument
|
| A D | protocol.py | 49 T = TypeVar('T') variable 167 class AsyncProtocol(Generic[T]): 227 self._outgoing: asyncio.Queue[T] 917 def _cb_outbound(self, msg: T) -> T: argument 934 def _cb_inbound(self, msg: T) -> T: argument 983 async def _do_recv(self) -> T: 993 async def _recv(self) -> T: 1014 def _do_send(self, msg: T) -> None: argument 1024 async def _send(self, msg: T) -> None: argument 1044 async def _on_message(self, msg: T) -> None: argument
|
| /qemu/include/user/ |
| A D | thunk.h | 206 #define target_to_host_bitmask(M, T) \ argument 207 target_to_host_bitmask_len(M, T, ARRAY_SIZE(T)) 208 #define host_to_target_bitmask(M, T) \ argument 209 host_to_target_bitmask_len(M, T, ARRAY_SIZE(T))
|
| /qemu/tests/qemu-iotests/sample_images/ |
| A D | iotest-dirtylog-10G-4M.vhdx.bz2 | |
| /qemu/tests/tcg/ppc64/ |
| A D | bcdsub.c | 19 #define BCDSUB(T, A, B, PS) \ argument 20 ".long 4 << 26 | (" #T ") << 21 | (" #A ") << 16 | (" #B ") << 11" \ 23 #define BCDSUB(T, A, B, PS) "bcdsub. " #T ", " #A ", " #B ", " #PS "\n\t" argument
|
| /qemu/include/standard-headers/linux/ |
| A D | const.h | 18 #define _AT(T,X) X argument 22 #define _AT(T,X) ((T)(X)) argument
|
| /qemu/linux-headers/linux/ |
| A D | const.h | 18 #define _AT(T,X) X argument 22 #define _AT(T,X) ((T)(X)) argument
|
| A D | stddef.h | 34 #define __DECLARE_FLEX_ARRAY(T, member) \ argument 35 T member[0]
|
| /qemu/ |
| A D | qemu-img-cmds.hx | 33 …"check [--object objectdef] [--image-opts] [-q] [-f fmt] [--output=ofmt] [-r [leaks | all]] [-T sr… 35 …BJECTDEF] [--image-opts] [-q] [-f FMT] [--output=OFMT] [-r [leaks | all]] [-T SRC_CACHE] [-U] FILE… 45 …"compare [--object objectdef] [--image-opts] [-f fmt] [-F fmt] [-T src_cache] [-p] [-q] [-s] [-U] … 47 .. option:: compare [--object OBJECTDEF] [--image-opts] [-f FMT] [-F FMT] [-T SRC_CACHE] [-p] [-q] … 51 …et-is-zero] [--bitmaps] [-U] [-C] [-c] [-p] [-q] [-n] [-f fmt] [-t cache] [-T src_cache] [-O outpu… 53 …et-is-zero] [--bitmaps] [-U] [-C] [-c] [-p] [-q] [-n] [-f FMT] [-t CACHE] [-T SRC_CACHE] [-O OUTPU… 93 …"rebase [--object objectdef] [--image-opts] [-U] [-q] [-f fmt] [-t cache] [-T src_cache] [-p] [-u]… 95 .. option:: rebase [--object OBJECTDEF] [--image-opts] [-U] [-q] [-f FMT] [-t CACHE] [-T SRC_CACHE]…
|
| /qemu/scripts/qapi/ |
| A D | source.py | 34 T = TypeVar('T', bound='QAPISourceInfo') variable in QAPISourceInfo 50 def next_line(self: T) -> T: argument
|
| /qemu/tests/qemu-iotests/ |
| A D | 220 | 49 _require_large_file 513T 51 _make_test_img -o 'cluster_size=2M,refcount_bits=1' 513T
|