/xen/xen/include/asm-arm/ |
A D | cpregs.h | 81 #define DBGBVR1 p14,0,c0,c1,4 /* Breakpoint Value 1 */ 82 #define DBGBCR1 p14,0,c0,c1,5 /* Breakpoint Control 1 */ 83 #define DBGOSLAR p14,0,c1,c0,4 /* OS Lock Access */ 84 #define DBGOSLSR p14,0,c1,c1,4 /* OS Lock Status Register */ 85 #define DBGOSDLR p14,0,c1,c3,4 /* OS Double Lock */ 133 #define SCR p15,0,c1,c1,0 /* Secure Configuration Register */ 134 #define NSACR p15,0,c1,c1,2 /* Non-Secure Access Control Register */ 136 #define HCR p15,4,c1,c1,0 /* Hyp. Configuration Register */ 137 #define HDCR p15,4,c1,c1,1 /* Hyp. Debug Configuration Register */ 138 #define HCPTR p15,4,c1,c1,2 /* Hyp. Coprocessor Trap Register */ [all …]
|
/xen/xen/common/ |
A D | string.c | 21 unsigned char c1, c2; in strnicmp() local 23 c1 = 0; c2 = 0; in strnicmp() 26 c1 = *s1; c2 = *s2; in strnicmp() 28 if (!c1) in strnicmp() 32 if (c1 == c2) in strnicmp() 34 c1 = tolower(c1); in strnicmp() 36 if (c1 != c2) in strnicmp() 40 return (int)c1 - (int)c2; in strnicmp() 47 int c1, c2; variable 53 } while ( c1 == c2 && c1 != 0 ); [all …]
|
/xen/xen/xsm/flask/ss/ |
A D | context.h | 84 static inline int mls_context_cmp(struct context *c1, struct context *c2) in mls_context_cmp() argument 89 return ((c1->range.level[0].sens == c2->range.level[0].sens) && in mls_context_cmp() 90 ebitmap_cmp(&c1->range.level[0].cat,&c2->range.level[0].cat) && in mls_context_cmp() 91 (c1->range.level[1].sens == c2->range.level[1].sens) && in mls_context_cmp() 92 ebitmap_cmp(&c1->range.level[1].cat,&c2->range.level[1].cat)); in mls_context_cmp() 124 static inline int context_cmp(struct context *c1, struct context *c2) in context_cmp() argument 126 return ((c1->user == c2->user) && in context_cmp() 127 (c1->role == c2->role) && in context_cmp() 128 (c1->type == c2->type) && in context_cmp() 129 mls_context_cmp(c1, c2)); in context_cmp()
|
/xen/xen/include/asm-arm/arm64/ |
A D | hsr.h | 44 #define HSR_SYSREG_MDRAR_EL1 HSR_SYSREG(2,0,c1,c0,0) 45 #define HSR_SYSREG_OSLAR_EL1 HSR_SYSREG(2,0,c1,c0,4) 46 #define HSR_SYSREG_OSLSR_EL1 HSR_SYSREG(2,0,c1,c1,4) 47 #define HSR_SYSREG_OSDLR_EL1 HSR_SYSREG(2,0,c1,c3,4) 48 #define HSR_SYSREG_DBGPRCR_EL1 HSR_SYSREG(2,0,c1,c4,4) 49 #define HSR_SYSREG_MDCCSR_EL0 HSR_SYSREG(2,3,c0,c1,0) 73 #define HSR_SYSREG_SCTLR_EL1 HSR_SYSREG(3,0,c1, c0,0) 74 #define HSR_SYSREG_ACTLR_EL1 HSR_SYSREG(3,0,c1, c0,1) 78 #define HSR_SYSREG_AFSR0_EL1 HSR_SYSREG(3,0,c5, c1,0) 79 #define HSR_SYSREG_AFSR1_EL1 HSR_SYSREG(3,0,c5, c1,1)
|
/xen/xen/arch/x86/boot/ |
A D | cmdline.c | 71 unsigned char c1, c2; in strncmp() local 75 c1 = *cs++; in strncmp() 77 if ( c1 != c2 ) in strncmp() 78 return c1 < c2 ? -1 : 1; in strncmp() 79 if ( !c1 ) in strncmp()
|
/xen/tools/libfsimage/iso9660/ |
A D | iso9660.h | 211 #define RRMAGIC(c1, c2) ((c1)|(c2) << 8) argument 213 #define CHECK2(ptr, c1, c2) \ argument 214 (*(unsigned short *)(ptr) == (((c1) | (c2) << 8) & 0xFFFF))
|
/xen/tools/debugger/gdbsx/gx/ |
A D | gx_comm.c | 190 unsigned char csum, c1, c2; in gx_getpkt() local 219 c1 = gx_fromhex(readchar()); in gx_getpkt() 222 if (csum == (c1 << 4) + c2) in gx_getpkt() 226 (c1 << 4) + c2, csum, buf); in gx_getpkt()
|
/xen/tools/ocaml/xenstored/ |
A D | perms.ml | 121 | c1, Some c2 -> [ fst c1; fst c2 ] 122 | c1, None -> [ fst c1 ]
|
/xen/tools/libxl/ |
A D | libxl_dom.c | 132 static int numa_cmpf(const libxl__numa_candidate *c1, in numa_cmpf() argument 135 if (c1->nr_vcpus != c2->nr_vcpus) in numa_cmpf() 136 return c1->nr_vcpus - c2->nr_vcpus; in numa_cmpf() 138 return c2->free_memkb - c1->free_memkb; in numa_cmpf()
|
A D | libxl_internal.h | 4456 typedef int (*libxl__numa_candidate_cmpf)(const libxl__numa_candidate *c1,
|
/xen/ |
A D | config.guess | 787 echo c1-convex-bsd
|