/xen-4.10.0-shim-comet/xen/include/xen/ |
A D | ctype.h | 22 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument 23 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument 24 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument 25 #define isdigit(c) ((__ismask(c)&(_D)) != 0) argument 27 #define islower(c) ((__ismask(c)&(_L)) != 0) argument 29 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument 30 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument 31 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument 35 #define toascii(c) (((unsigned char)(c))&0x7f) argument 51 #define tolower(c) __tolower(c) argument [all …]
|
/xen-4.10.0-shim-comet/xen/arch/x86/cpu/ |
A D | common.c | 261 if (ptr->b == b && ptr->c == c && ptr->d == d) { in get_cpu_vendor() 319 c->x86 = get_cpu_family(eax, &c->x86_model, &c->x86_mask); in early_cpu_detect() 331 this_cpu->c_vendor, c->x86, c->x86, in early_cpu_detect() 332 c->x86_model, c->x86_model, c->x86_mask, eax); in early_cpu_detect() 367 c->x86 = get_cpu_family(eax, &c->x86_model, &c->x86_mask); in generic_identify() 369 c->phys_proc_id = c->apicid; in generic_identify() 426 c->x86_model = c->x86_mask = 0; /* So far unknown... */ in identify_cpu() 435 memset(&c->x86_capability, 0, sizeof c->x86_capability); in identify_cpu() 478 snprintf(c->x86_model_id, sizeof(c->x86_model_id), in identify_cpu() 479 "%02x/%02x", c->x86_vendor, c->x86_model); in identify_cpu() [all …]
|
A D | intel.c | 53 if (c->x86 != 6) in probe_masking_msrs() 56 switch (c->x86_model) { in probe_masking_msrs() 107 "got (%#x/%#x/%#x)\n", c->x86, c->x86_model, in probe_masking_msrs() 233 if (c->x86 == 15 && c->x86_cache_alignment == 64) in early_init_intel() 237 if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) { in early_init_intel() 281 if ((c->x86 == 15) && (c->x86_model == 1) && (c->x86_mask == 1)) { in Intel_errata_workarounds() 292 (c->x86_model == 29 || c->x86_model == 46 || c->x86_model == 47)) in Intel_errata_workarounds() 333 c->x86_max_cores = num_cpu_cores(c); in init_intel() 334 detect_ht(c); in init_intel() 340 if ((c->x86 == 0xf && c->x86_model >= 0x03) || in init_intel() [all …]
|
A D | amd.c | 166 if (c->x86 == 0x11) in probe_masking_msrs() 178 if (c->x86 == 0x15 && c->cpuid_level >= 6 && cpuid_ecx(6)) in probe_masking_msrs() 195 c->x86, c->x86_model, c->cpuid_level); in probe_masking_msrs() 499 c->cpu_core_id = c->phys_proc_id & ((1<<bits)-1); in amd_get_topology() 513 cpu, c->x86_max_cores, c->phys_proc_id, in amd_get_topology() 540 if (c->x86 == 15) { in init_amd() 553 if (c->x86 == 0xf && c->x86_model < 0x14 in init_amd() 568 switch(c->x86) in init_amd() 595 (c->x86_model >= 0x10) && (c->x86_model <= 0x1f) && in init_amd() 612 if (c->x86 == 0x15 && c->x86_model >= 0x02 && c->x86_model < 0x20 && in init_amd() [all …]
|
A D | centaur.c | 17 static void init_c3(struct cpuinfo_x86 *c) in init_c3() argument 42 if (c->x86 == 0x6 && c->x86_model >= 0xf) { in init_c3() 43 c->x86_cache_alignment = c->x86_clflush_size * 2; in init_c3() 44 __set_bit(X86_FEATURE_CONSTANT_TSC, c->x86_capability); in init_c3() 47 get_model_name(c); in init_c3() 48 display_cacheinfo(c); in init_c3() 51 static void init_centaur(struct cpuinfo_x86 *c) in init_centaur() argument 53 if (c->x86 == 6) in init_centaur() 54 init_c3(c); in init_centaur()
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | cpupool.c | 45 if ( !c || !zalloc_cpumask_var(&c->cpu_valid) ) in alloc_cpupool_struct() 47 xfree(c); in alloc_cpupool_struct() 48 c = NULL; in alloc_cpupool_struct() 57 return c; in alloc_cpupool_struct() 62 if ( c ) in free_cpupool_struct() 67 xfree(c); in free_cpupool_struct() 102 return c; in __cpupool_get_by_id() 183 *q = c; in cpupool_create() 188 c->cpupool_id, c->sched->name, c->sched->opt_name); in cpupool_create() 191 return c; in cpupool_create() [all …]
|
A D | sort.c | 57 for ( r = i; r * 2 + size < n; r = c ) in sort() 59 c = r * 2 + size; in sort() 60 if ( (c < n - size) && (cmp(base + c, base + c + size) < 0) ) in sort() 61 c += size; in sort() 62 if ( cmp(base + r, base + c) >= 0 ) in sort() 64 swap(base + r, base + c, size); in sort() 72 for ( r = 0; r * 2 + size < i; r = c ) in sort() 74 c = r * 2 + size; in sort() 75 if ( (c < i - size) && (cmp(base + c, base + c + size) < 0) ) in sort() 76 c += size; in sort() [all …]
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/arm64/ |
A D | io.h | 101 #define readb_relaxed(c) ({ u8 __v = __raw_readb(c); __v; }) argument 106 #define writeb_relaxed(v,c) ((void)__raw_writeb((v),(c))) argument 121 #define writeb(v,c) ({ __iowmb(); writeb_relaxed((v),(c)); }) argument 122 #define writew(v,c) ({ __iowmb(); writew_relaxed((v),(c)); }) argument 123 #define writel(v,c) ({ __iowmb(); writel_relaxed((v),(c)); }) argument 140 #define inb(c) ( emulate_read(c) ) argument 141 #define inw(c) ( emulate_read(c) ) argument 142 #define inl(c) ( emulate_read(c) ) argument 144 #define outb(v, c) ( emulate_write(c) ) argument 145 #define outw(v, c) ( emulate_write(c) ) argument [all …]
|
/xen-4.10.0-shim-comet/xen/arch/arm/ |
A D | cpu.c | 19 void identify_cpu(struct cpuinfo_arm *c) in identify_cpu() argument 21 c->midr.bits = READ_SYSREG32(MIDR_EL1); in identify_cpu() 22 c->mpidr.bits = READ_SYSREG(MPIDR_EL1); in identify_cpu() 41 c->pfr32.bits[0] = READ_SYSREG32(ID_PFR0_EL1); in identify_cpu() 42 c->pfr32.bits[1] = READ_SYSREG32(ID_PFR1_EL1); in identify_cpu() 44 c->dbg32.bits[0] = READ_SYSREG32(ID_DFR0_EL1); in identify_cpu() 46 c->aux32.bits[0] = READ_SYSREG32(ID_AFR0_EL1); in identify_cpu() 48 c->mm32.bits[0] = READ_SYSREG32(ID_MMFR0_EL1); in identify_cpu() 49 c->mm32.bits[1] = READ_SYSREG32(ID_MMFR1_EL1); in identify_cpu() 50 c->mm32.bits[2] = READ_SYSREG32(ID_MMFR2_EL1); in identify_cpu() [all …]
|
/xen-4.10.0-shim-comet/tools/firmware/hvmloader/ |
A D | ctype.h | 17 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument 18 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument 19 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument 20 #define isdigit(c) ((__ismask(c)&(_D)) != 0) argument 21 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) argument 22 #define islower(c) ((__ismask(c)&(_L)) != 0) argument 23 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) argument 24 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument 25 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument 26 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument [all …]
|
/xen-4.10.0-shim-comet/tools/libxc/ |
A D | Makefile | 13 CTRL_SRCS-y += xc_altp2m.c 14 CTRL_SRCS-y += xc_core.c 21 CTRL_SRCS-y += xc_misc.c 28 CTRL_SRCS-y += xc_rt.c 29 CTRL_SRCS-y += xc_tbuf.c 30 CTRL_SRCS-y += xc_pm.c 56 GUEST_SRCS-y += xg_private.c xc_suspend.c 67 GUEST_SRCS-y += xc_offline_page.c xc_compression.c 75 ELF_SRCS-y += libelf-tools.c libelf-loader.c 84 GUEST_SRCS-y += xc_dom_core.c xc_dom_boot.c [all …]
|
/xen-4.10.0-shim-comet/stubdom/grub/ |
A D | Makefile | 4 vpath %.c ../grub-upstream 23 …E2_SOURCES=builtins.c char_io.c cmdline.c common.c console.c disk_io.c graphics.c gunzip.c md5.c s… 25 NETBOOT_SOURCES=fsys_tftp.c main.c misc.c 31 STAGE2_SOURCES+=fsys_fat.c 34 STAGE2_SOURCES+=fsys_ffs.c 40 STAGE2_SOURCES+=fsys_jfs.c 43 STAGE2_SOURCES+=fsys_minix.c 49 STAGE2_SOURCES+=fsys_ufs2.c 55 STAGE2_SOURCES+=fsys_xfs.c 63 PV_GRUB_SOURCES = kexec.c mini-os.c [all …]
|
/xen-4.10.0-shim-comet/tools/misc/ |
A D | xen-hvmctx.c | 136 READ(c); in dump_cpu() 182 c.cs_sel, (unsigned long long) c.cs_base, c.cs_limit, c.cs_arbytes, in dump_cpu() 183 c.ds_sel, (unsigned long long) c.ds_base, c.ds_limit, c.ds_arbytes, in dump_cpu() 184 c.es_sel, (unsigned long long) c.es_base, c.es_limit, c.es_arbytes, in dump_cpu() 185 c.fs_sel, (unsigned long long) c.fs_base, c.fs_limit, c.fs_arbytes, in dump_cpu() 186 c.gs_sel, (unsigned long long) c.gs_base, c.gs_limit, c.gs_arbytes, in dump_cpu() 187 c.ss_sel, (unsigned long long) c.ss_base, c.ss_limit, c.ss_arbytes, in dump_cpu() 188 c.tr_sel, (unsigned long long) c.tr_base, c.tr_limit, c.tr_arbytes, in dump_cpu() 189 c.ldtr_sel, (unsigned long long) c.ldtr_base, in dump_cpu() 190 c.ldtr_limit, c.ldtr_arbytes, in dump_cpu() [all …]
|
/xen-4.10.0-shim-comet/xen/drivers/passthrough/vtd/ |
A D | iommu.h | 74 #define cap_sps_2mb(c) ((c >> 34) & 1) argument 81 #define cap_isoch(c) (((c) >> 23) & 1) argument 82 #define cap_qos(c) (((c) >> 22) & 1) argument 86 #define cap_phmr(c) (((c) >> 6) & 1) argument 87 #define cap_plmr(c) (((c) >> 5) & 1) argument 88 #define cap_rwbf(c) (((c) >> 4) & 1) argument 89 #define cap_afl(c) (((c) >> 3) & 1) argument 183 #define dma_frcd_fault_reason(c) (c & 0xff) argument 184 #define dma_frcd_source_id(c) (c & 0xffff) argument 208 #define context_present(c) ((c).lo & 1) argument [all …]
|
/xen-4.10.0-shim-comet/stubdom/ |
A D | newlib-chk.patch | 28 flags.c \ 29 fopen.c \ 30 fprintf.c \ 32 fputc.c \ 33 fputs.c \ 34 fread.c \ 38 sprintf.c \ 40 sscanf.c \ 41 stdio.c \ 42 tmpfile.c \ [all …]
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/arm32/ |
A D | io.h | 78 #define readb_relaxed(c) ({ u8 __r = __raw_readb(c); __r; }) argument 80 __raw_readw(c)); __r; }) 84 #define writeb_relaxed(v,c) __raw_writeb(v,c) argument 85 #define writew_relaxed(v,c) __raw_writew((__force u16) cpu_to_le16(v),c) argument 86 #define writel_relaxed(v,c) __raw_writel((__force u32) cpu_to_le32(v),c) argument 88 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(); __v; }) argument 89 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(); __v; }) argument 90 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(); __v; }) argument 92 #define writeb(v,c) ({ __iowmb(); writeb_relaxed(v,c); }) argument 93 #define writew(v,c) ({ __iowmb(); writew_relaxed(v,c); }) argument [all …]
|
/xen-4.10.0-shim-comet/tools/blktap2/drivers/ |
A D | md5.c | 199 register uint32_t a, b, c, d; in MD5Transform() local 203 c = buf[2]; in MD5Transform() 206 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform() 210 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform() 214 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7); in MD5Transform() 223 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform() 224 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform() 227 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform() 231 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform() 236 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9); in MD5Transform() [all …]
|
/xen-4.10.0-shim-comet/xen/xsm/flask/ss/ |
A D | services.c | 1491 c = c->next; in security_irq_sid() 1531 c = c->next; in security_iomem_sid() 1564 c = c->next; in security_iterate_iomem_sids() 1591 c = c->next; in security_iterate_iomem_sids() 1619 c = c->next; in security_ioport_sid() 1652 c = c->next; in security_iterate_ioport_sids() 1679 c = c->next; in security_iterate_ioport_sids() 2128 c; before_c = c, c = c->next ) in security_ocontext_del() 2153 c; before_c = c, c = c->next ) in security_ocontext_del() 2179 c; before_c = c, c = c->next ) in security_ocontext_del() [all …]
|
/xen-4.10.0-shim-comet/stubdom/grub.patches/ |
A D | 50fs_fulldisk.diff | 1 diff -urN grub-0.97.orig/stage2/fsys_ext2fs.c grub-0.97/stage2/fsys_ext2fs.c 2 --- grub-0.97.orig/stage2/fsys_ext2fs.c 2004-08-08 18:19:18.000000000 +0000 3 +++ grub-0.97/stage2/fsys_ext2fs.c 2008-09-16 19:31:15.000000000 +0000 13 diff -urN grub-0.97.orig/stage2/fsys_fat.c grub-0.97/stage2/fsys_fat.c 14 --- grub-0.97.orig/stage2/fsys_fat.c 2005-03-15 16:52:00.000000000 +0000 15 +++ grub-0.97/stage2/fsys_fat.c 2008-09-16 19:31:26.000000000 +0000 25 diff -urN grub-0.97.orig/stage2/fsys_ffs.c grub-0.97/stage2/fsys_ffs.c 27 +++ grub-0.97/stage2/fsys_ffs.c 2008-09-16 19:31:32.000000000 +0000 37 diff -urN grub-0.97.orig/stage2/fsys_minix.c grub-0.97/stage2/fsys_minix.c 49 diff -urN grub-0.97.orig/stage2/fsys_ufs2.c grub-0.97/stage2/fsys_ufs2.c [all …]
|
/xen-4.10.0-shim-comet/xen/arch/x86/boot/ |
A D | cmdline.c | 86 for ( ; *s != (char)c; ++s ) in strchr() 216 const char *c; in edd_parse() local 220 if ( !c ) in edd_parse() 231 const char *c; in edid_parse() local 235 if ( !c ) in edid_parse() 276 const char *c; in vga_parse() local 281 if ( !c ) in vga_parse() 290 c += strlen("text-80x"); in vga_parse() 295 vesa_width = strtoui(c + strlen("gfx-"), "x", &c); in vga_parse() 305 ++c; in vga_parse() [all …]
|
/xen-4.10.0-shim-comet/ |
A D | .rootkeys | 31 3f815144r7AHj8GPvc3Nl1L9OSsWIg extras/mini-os/events.c 40 3f815145vwnmxhCwN7dMRWv_XFtXbg extras/mini-os/kernel.c 47 3f815145CB8XdPUqsmhAjSDFuwOoqA extras/mini-os/mm.c 48 3f815145vGYx1WY79voKkZB9yKwJKQ extras/mini-os/time.c 49 3f815145xlKBAQmal9oces3G_Mvxqw extras/mini-os/traps.c 654 42c3a871n2v9J47-sowMlC1x4DSwQQ tools/ioemu/aes.c 766 428d0d8bgAojEQcAcTV2gj2E_eG4Lw tools/ioemu/vl.c 1097 423d82c7ZKf2bDOxRcR4Nc1kN5StNQ tools/xcs/dump.c 1100 41d58ba6x9KO1CQBT7kKOKq_pJYC3g tools/xcs/xcs.c 1382 40f2b4a27xPOh3R6zD4M_aabz-TDyg xen/common/elf.c [all …]
|
/xen-4.10.0-shim-comet/tools/firmware/rombios/32bit/ |
A D | util.c | 24 static void putchar(char c); 25 #define isdigit(c) ((c) >= '0' && (c) <= '9') argument 310 c = *++fmt; in _doprint() 311 if ( (c == '-') || isdigit(c) ) in _doprint() 319 for ( pad = 0; isdigit(c); c = *++fmt ) in _doprint() 325 c = *++fmt; in _doprint() 327 if ( (c == 'd') || (c == 'u') || (c == 'o') || (c == 'x') ) in _doprint() 335 c == 'o' ? 8 : (c == 'x' ? 16 : 10)); in _doprint() 338 else if ( (c == 'O') || (c == 'D') || (c == 'X') ) in _doprint() 343 c == 'O' ? 8 : (c == 'X' ? 16 : 10)); in _doprint() [all …]
|
/xen-4.10.0-shim-comet/xen/tools/kconfig/ |
A D | POTFILES.in | 1 scripts/kconfig/lxdialog/checklist.c 2 scripts/kconfig/lxdialog/inputbox.c 3 scripts/kconfig/lxdialog/menubox.c 4 scripts/kconfig/lxdialog/textbox.c 5 scripts/kconfig/lxdialog/util.c 6 scripts/kconfig/lxdialog/yesno.c 7 scripts/kconfig/mconf.c 8 scripts/kconfig/conf.c 9 scripts/kconfig/confdata.c 10 scripts/kconfig/gconf.c
|
/xen-4.10.0-shim-comet/tools/blktap2/control/ |
A D | tap-ctl.c | 118 switch (c) { in tap_cli_list() 187 switch (c) { in tap_cli_allocate() 219 int c, minor; in tap_cli_free() local 225 switch (c) { in tap_cli_free() 256 int c, err; in tap_cli_create() local 264 switch (c) { in tap_cli_create() 309 switch (c) { in tap_cli_destroy() 343 int c; in tap_cli_spawn() local 348 switch (c) { in tap_cli_spawn() 387 switch (c) { in tap_cli_attach() [all …]
|
/xen-4.10.0-shim-comet/xen/common/libfdt/ |
A D | Makefile.libfdt | 9 LIBFDT_SRCS = fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c fdt_empty_tree.c 10 LIBFDT_OBJS = $(LIBFDT_SRCS:%.c=%.o)
|