Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 16 of 16) sorted by relevance

/qemu/scripts/
H A Dnsis.py29 dep = line.split("DLL Name: ")[1].strip()
30 if dep in analyzed_deps:
33 dll = os.path.join(search_path, dep)
38 analyzed_deps.add(dep)
103 for dep in deps:
104 dllfile = os.path.join(dlldir, os.path.basename(dep))
107 print("Copying '%s' to '%s'" % (dep, dllfile))
108 shutil.copy(dep, dllfile)
H A Dmodinfo-generate.py70 return {dep.strip('" ') for dep in deps}
111 for dep in deps.difference(modules):
112 print("Dependency {} cannot be satisfied".format(dep),
H A Ddecodetree.py116 ordered = set(item for item, dep in data.items() if not dep)
120 data = {item: (dep - ordered)
121 for item, dep in data.items()
/qemu/docs/sphinx/
H A Ddepfile.py23 yield from ((os.path.join(env.srcdir, dep)
24 for dep in env.dependencies[x]))
/qemu/tests/docker/dockerfiles/
H A Ddebian-toolchain.docker10 # ??? The build-dep isn't working, missing a number of
26 apt build-dep -yy --arch-only gcc glibc
H A Ddebian-loongarch-cross.docker16 apt build-dep -yy qemu
H A Ddebian-legacy-test-cross.docker21 apt build-dep -yy qemu
H A Ddebian-hexagon-cross.docker31 apt build-dep -yy --arch-only qemu && \
H A Ddebian-all-test-cross.docker18 apt build-dep -yy qemu
/qemu/tests/avocado/
H A Dppc_hv_tests.py35 for dep in deps:
36 if which(dep) is None:
H A Dacpi-bits.py74 for dep in deps:
75 if which(dep) is None:
/qemu/target/s390x/
H A Dcpu_models.c428 static int dep[][2] = { in check_consistency() local
489 for (i = 0; i < ARRAY_SIZE(dep); i++) { in check_consistency()
490 if (test_bit(dep[i][0], model->features) && in check_consistency()
491 !test_bit(dep[i][1], model->features)) { in check_consistency()
493 s390_feat_def(dep[i][0])->name, in check_consistency()
494 s390_feat_def(dep[i][1])->name); in check_consistency()
/qemu/include/qemu/
H A Dmodule.h140 #define module_dep(name) modinfo(dep, name)
/qemu/tests/vm/
H A Dconf_example_aarch64.yml48 #install_cmds: "apt-get update ; apt-get build-dep -y qemu"
/qemu/tcg/ppc/
H A Dtcg-target.c.inc1029 * dep(a, b, m) -> (a & ~m) | (b & m)
1035 /* tmp = dep(tmp, rol32(src, 8), 0x0000ff00) = 000000dc */
1062 * dep(a, b, m) -> (a & ~m) | (b & m)
1068 /* tmp = dep(tmp, rol32(src, 24), 0xff000000) = 0000dcda */
1070 /* tmp = dep(tmp, rol32(src, 24), 0x0000ff00) = 0000dcba */
1092 * dep(a, b, m) -> (a & ~m) | (b & m)
1098 /* t0 = dep(t0, rol32(src, 24), 0xff000000) = 0000hghe */
1100 /* t0 = dep(t0, rol32(src, 24), 0x0000ff00) = 0000hgfe */
1108 /* t0 = dep(t0, rol32(t1, 24), 0xffffffff) = hgfebcda */
1110 /* t0 = dep(t0, rol32(t1, 24), 0xff000000) = hgfedcda */
[all …]
/qemu/qga/
H A Dcommands-posix.c1367 const gchar *dep; in get_disk_deps() local
1379 while ((dep = g_dir_read_name(dp_deps)) != NULL) { in get_disk_deps()
1384 dep_dir = g_strdup_printf("%s/%s", deps_dir, dep); in get_disk_deps()