Searched refs:e (Results 1 – 14 of 14) sorted by relevance
/hafnium-2.8-rc0/inc/hf/ |
A D | list.h | 28 e->next = e; in list_init() 29 e->prev = e; in list_init() 34 e->next = l; in list_append() 37 e->next->prev = e; in list_append() 38 e->prev->next = e; in list_append() 44 e->prev = l; in list_prepend() 46 e->next->prev = e; in list_prepend() 47 e->prev->next = e; in list_prepend() 57 e->prev->next = e->next; in list_remove() 58 e->next->prev = e->prev; in list_remove() [all …]
|
A D | assert.h | 21 #define assert(e) \ argument 22 ((e) ? (void)0 : panic("ASSERT: %s:%d:%s\n", __FILE__, __LINE__, #e)) 24 #define assert(e) ((e) ? (void)0 : panic("ASSERT: %s:%d\n", __FILE__, __LINE__)) argument 26 #define assert(e) ((e) ? (void)0 : panic("ASSERT\n")) argument 29 #define assert(e) ((void)0) argument
|
/hafnium-2.8-rc0/src/ |
A D | mpool.c | 248 struct mpool_entry *e = ptr; in mpool_free() local 252 e->next = p->entry_list; in mpool_free() 253 p->entry_list = e; in mpool_free()
|
A D | BUILD.gn | 45 # e.g. with VM used in the VM tests have their own targets to facilitate
|
/hafnium-2.8-rc0/build/toolchain/ |
A D | offset_size_header.gni | 7 # This template auto-generate a C header file with "#define" constants, e.g. 10 # It uses a trick similar to other projects, e.g. Linux, where the integer
|
A D | host.gni | 61 soname = "{{target_output_name}}{{output_extension}}" # e.g. "libfoo.so".
|
/hafnium-2.8-rc0/docs/ |
A D | StyleGuide.md | 64 * References to code symbols use backticks, e.g. `` `my_symbol` ``. 71 e.g. [`addr.h`](../inc/hf/addr.h) 73 transformations. e.g. [`addr.h`](../inc/hf/addr.h) 118 Logging is done with the `dlog_*` macros, e.g. `dlog_info`. These accept
|
A D | Testing.md | 10 * Unit tests of core functionality, e.g. page table manipulation. 15 * Architecture-specific unit tests, e.g. MMU setup.
|
A D | HermeticBuild.md | 3 Hafnium build is not hermetic as it uses some system tools and libraries, e.g.
|
A D | Architecture.md | 174 – i.e. the IPA (intermediate physical address) is always equal to the PA 181 * An MMIO address range (i.e. a set of pages).
|
/hafnium-2.8-rc0/build/bash/ |
A D | common.inc | 8 set -e
|
/hafnium-2.8-rc0/build/image/ |
A D | image.ld | 26 * relocatable but some platforms, e.g. QEMU, load to the same address
|
A D | image.gni | 56 # Analyze the generated ELF file and check that assembly-level fixes, e.g.
|
/hafnium-2.8-rc0/test/hftest/ |
A D | hftest.py | 718 except ValueError as e: 720 raise e
|
Completed in 12 milliseconds