/hafnium-2.8-rc0/ |
A D | Makefile | 87 @find src/ -name \*.c -o -name \*.cc -o -name \*.h | xargs -r clang-format -style file -i 88 @find inc/ -name \*.c -o -name \*.cc -o -name \*.h | xargs -r clang-format -style file -i 89 @find test/ -name \*.c -o -name \*.cc -o -name \*.h | xargs -r clang-format -style file -i 90 @find project/ -name \*.c -o -name \*.cc -o -name \*.h | xargs -r clang-format -style file -i 91 @find vmlib/ -name \*.c -o -name \*.cc -o -name \*.h | xargs -r clang-format -style file -i 121 …@find build/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h -o -name \*.dts -o -name \*.ld … 122 …@find inc/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h -o -name \*.dts | xargs -n1 pytho… 123 …@find src/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h -o -name \*.dts | xargs -n1 pytho… 124 …@find test/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h -o -name \*.dts | xargs -n1 pyth… 125 …@find vmlib/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h -o -name \*.dts | xargs -n1 pyt… [all …]
|
A D | LICENSE | 13 * Neither the name of the copyright holder nor the names of its
|
A D | CONTRIBUTING.md | 25 line, using your real name and email address. The names in the
|
/hafnium-2.8-rc0/src/ |
A D | cpio.c | 36 static bool cpio_next(struct memiter *iter, const char **name, in cpio_next() argument 48 *name = lit.next; in cpio_next() 67 if (!strncmp(*name, trailer, sizeof(trailer))) { in cpio_next() 81 bool cpio_get_file(const struct memiter *cpio, const struct string *name, in cpio_get_file() argument 90 if (!strncmp(fname, string_data(name), STRING_MAX_SIZE)) { in cpio_get_file()
|
A D | fdt.c | 132 bool fdt_read_property(const struct fdt_node *node, const char *name, in fdt_read_property() argument 138 ptr = fdt_getprop(fdt_base(&node->fdt), node->offset, name, &lenp); in fdt_read_property() 153 bool fdt_read_number(const struct fdt_node *node, const char *name, in fdt_read_number() argument 158 return fdt_read_property(node, name, &data) && in fdt_read_number() 238 bool fdt_find_child(struct fdt_node *node, const struct string *name) in fdt_find_child() argument 260 if (string_eq(name, &it)) { in fdt_find_child()
|
A D | manifest_test.cc | 149 dts_ << name << " {" << std::endl; in StartChild() 223 dts_ << name << " = " << value << ";" << std::endl; in Property() 227 ManifestDtBuilder &Label(const std::string_view &name) in Label() argument 229 dts_ << name << ": "; in Label() 259 const std::string_view &name, in StringListProperty() argument 264 dts_ << name << " = "; in StringListProperty() 280 dts_ << name << " = <" << value << ">;" << std::endl; in IntegerProperty() 289 dts_ << name << " = <" << high << " " << low << ">;" in Integer64Property() 295 const std::string_view &name, in IntegerListProperty() argument 298 dts_ << name << " = < "; in IntegerListProperty() [all …]
|
A D | manifest.c | 469 &mem_regions[i].name)); in parse_ffa_memory_region_node() 471 string_data(&mem_regions[i].name)); in parse_ffa_memory_region_node() 564 &dev_regions[i].name)); in parse_ffa_device_region_node() 566 string_data(&dev_regions[i].name)); in parse_ffa_device_region_node()
|
/hafnium-2.8-rc0/build/image/ |
A D | generate_initrd.py | 37 for name, path in args.file: 38 shutil.copyfile(path, os.path.join(args.staging, name)) 39 assert name not in staged_files 40 staged_files.append(name)
|
A D | image.gni | 157 # - Source file: the target will have the same name as the source file. 343 # - Target file name in the RAM disk 345 # - File name to use as source (generated as output of the build) 427 package_dir = get_label_info(sp[2], "name") 445 package_dir = get_label_info(vm[2], "name")
|
A D | image.ld | 81 * means they are stored sorted by the name of the test suite and then
|
/hafnium-2.8-rc0/src/arch/aarch64/ |
A D | msr.h | 28 #define read_msr(name) \ argument 31 __asm__ volatile("mrs %0, " str(name) : "=r"(__v)); \ 38 #define write_msr(name, value) \ argument 40 __asm__ volatile("msr " str(name) ", %x0" \
|
/hafnium-2.8-rc0/inc/hf/ |
A D | fdt.h | 51 bool fdt_find_child(struct fdt_node *node, const struct string *name); 53 bool fdt_read_property(const struct fdt_node *node, const char *name, 55 bool fdt_read_number(const struct fdt_node *node, const char *name,
|
A D | cpio.h | 16 bool cpio_get_file(const struct memiter *cpio, const struct string *name,
|
A D | manifest.h | 64 struct string name; member 95 struct string name; member
|
/hafnium-2.8-rc0/src/arch/aarch64/hftest/ |
A D | registers.c | 11 #define read_fp_register(name) \ argument 14 __asm__ volatile("fmov %0, " #name : "=r"(__v)); \ 18 #define write_fp_register(name, value) \ argument 20 __asm__ volatile("fmov " #name ", %0" \ 23 : #name); \
|
/hafnium-2.8-rc0/test/linux/ |
A D | linux.c | 32 static int delete_module(const char *name, int flags) in delete_module() argument 34 return (int)syscall(SYS_delete_module, name, flags); in delete_module()
|
/hafnium-2.8-rc0/inc/vmapi/hf/ |
A D | ffa.h | 265 #define ATTR_FUNCTION_SET(name, container_type, offset, mask) \ argument 266 static inline void ffa_set_##name##_attr(container_type *attr, \ 267 const enum ffa_##name perm) \ 272 #define ATTR_FUNCTION_GET(name, container_type, offset, mask) \ argument 273 static inline enum ffa_##name ffa_get_##name##_attr( \ 276 return (enum ffa_##name)((attr & mask) >> offset); \ 523 char name[FFA_BOOT_INFO_NAME_LEN]; member
|
/hafnium-2.8-rc0/docs/ |
A D | Manifest.md | 19 debug_name = "name"; 25 debug_name = "name";
|
A D | HafniumRamDisk.md | 8 * initrd of the primary VM, whose name is described in the manifest (optional)
|
A D | Testing.md | 73 Test declarations name the test and the suite that the test is part of. 76 contains. The linker sorts the descriptors by their symbol name which is how
|
/hafnium-2.8-rc0/test/hftest/ |
A D | common.c | 105 HFTEST_LOG(" \"name\": \"%s\",", test->name); in hftest_json() 191 if (memiter_iseq(&test_name, test->name)) { in hftest_run()
|
A D | service_common.c | 59 memiter_iseq(&service_name, test->name)) { in find_service()
|
/hafnium-2.8-rc0/test/inc/test/ |
A D | hftest_impl.h | 105 .name = #test_name, \ 122 .name = #service_name, \ 161 const char *name; member
|
/hafnium-2.8-rc0/build/toolchain/ |
A D | platform.gni | 9 # The name of the platform.
|
/hafnium-2.8-rc0/build/ |
A D | BUILDCONFIG.gn | 9 # The name of the project being built.
|