/src/sys/arch/evbarm/stand/gzboot/ |
gzboot.h | 42 extern const uint32_t md_root_size;
|
image.S | 48 .global _C_LABEL(md_root_size) 49 _C_LABEL(md_root_size):
|
gzboot.c | 136 * If md_root_size is 0, then it means that we are simply 143 if (md_root_size != 0) 144 printf(">> Image size: %u\n", md_root_size); 147 gzcopy((void *) loadaddr, compressed_image, md_root_size);
|
/src/sys/arch/acorn32/dev/ |
md_hooks.c | 51 size_t md_root_size = ROOTBYTES; variable in typeref:typename:size_t 56 size_t md_root_size = 0; /* set by machdep.c */ variable in typeref:typename:size_t 71 md->md_size = (size_t) md_root_size; 75 if (md_root_size == 0 && OLD_MEMORY_DISK_SIZE) 76 md_root_size = (OLD_MEMORY_DISK_SIZE << DEV_BSHIFT); 78 if (md_root_size != 0) { 79 md->md_size = round_page(md_root_size); 81 md_root_size, 0, UVM_KMF_WIRED | UVM_KMF_ZERO);
|
/src/sys/dev/ |
md_root.c | 48 size_t md_root_size; variable in typeref:typename:size_t 59 uint32_t md_root_size = sizeof(md_root_image) & ~(DEV_BSIZE - 1); variable in typeref:typename:uint32_t 72 uint32_t md_root_size = ROOTBYTES; variable in typeref:typename:uint32_t 88 md_root_size = size; 105 md->md_size = (size_t)md_root_size;
|
md.c | 143 extern size_t md_root_size;
|
/src/sys/arch/ews4800mips/stand/common/ |
local.h | 43 #define kernel_binary_size md_root_size
|
/src/usr.sbin/mdsetimage/ |
bin_nlist.c | 93 uint32_t *md_root_size, int verbose) 135 memcpy(md_root_size, &mappedfile[*md_root_size_offset], 136 sizeof(*md_root_size)); 139 nl[X_MD_ROOT_SIZE].n_name, *md_root_size);
|
mdsetimage.c | 85 const char *md_root_size = "_md_root_size"; local in function:main 96 md_root_size = optarg; 147 md_root_image, md_root_size, &md_root_image_offset, 224 fprintf(stderr, "setting md_root_size to %jd\n",
|
/src/sys/arch/arm/arm32/ |
arm32_machdep.c | 118 extern size_t md_root_size; /* Memory disc size */ 606 md_root_size = integer; 607 md_root_size *= 1024; 608 if (md_root_size < 32*1024) 609 md_root_size = 32*1024; 610 if (md_root_size > 2048*1024) 611 md_root_size = 2048*1024;
|