Lines Matching refs:flags
77 uint64_t flags = partition->flags & XBL_FLAGS_CPU_MASK; in get_xbl_cpu() local
79 flags >>= XBL_FLAGS_CPU_SHIFT; in get_xbl_cpu()
81 return (uint32_t)flags; in get_xbl_cpu()
93 uint64_t flags = partition->flags & XBL_FLAGS_EL_MASK; in get_xbl_el() local
95 flags >>= XBL_FLAGS_EL_SHIFT; in get_xbl_el()
97 return (uint32_t)flags; in get_xbl_el()
109 uint64_t flags = partition->flags & XBL_FLAGS_TZ_MASK; in get_xbl_ss() local
111 flags >>= XBL_FLAGS_TZ_SHIFT; in get_xbl_ss()
113 return (uint32_t)flags; in get_xbl_ss()
125 uint64_t flags = partition->flags & XBL_FLAGS_ENDIAN_MASK; in get_xbl_endian() local
128 flags >>= XBL_FLAGS_ENDIAN_SHIFT; in get_xbl_endian()
130 if (flags == XBL_FLAGS_ENDIAN_BE) { in get_xbl_endian()
148 uint64_t flags = partition->flags & XBL_FLAGS_ESTATE_MASK; in get_xbl_estate() local
150 flags >>= XBL_FLAGS_ESTATE_SHIFT; in get_xbl_estate()
152 return (uint32_t)flags; in get_xbl_estate()
164 uint64_t flags = partition->flags & XBL_FLAGS_CLUSTER_MASK; in get_xbl_cluster() local
166 return (flags >> XBL_FLAGS_CLUSTER_SHIFT); in get_xbl_cluster()
227 HandoffParams->partition[i].flags); in xbl_handover()