Displaying 4 results from an estimated 4 matches for "0x8000000000000000ull".
Did you mean:
0x8000000000000000ul
2016 Sep 10
0
[PATCH] gm107: separate out sched decoding from regular ops
...mpromise between printing most scheds, and not disasm'ing other unknowns as sched */
- { 0x0000000000000000ull, 0xf000000000000000ull, OP8B, N( "sched"), SCHED0, SCHED1, SCHED2 },
{ 0, 0, OP8B, OOPS },
};
+static struct insn tabsched[] = {
+ { 0x0000000000000000ull, 0x8000000000000000ull, OP8B, N( "sched"), SCHED0, SCHED1, SCHED2 },
+ { 0, 0, OP8B, OOPS },
+};
+
+static struct insn tabrootas[] = {
+ /* HACK: envyas does not seem to properly interpret sched ops
+ * when the mask is set to what's in tabsched.
+ */
+ { 0x0000000000000000ull, 0xf0000000000...
2013 Oct 03
1
[LLVMdev] Help with a Microblaze code generation problem.
Sorry if this is a duplicate: I tried to send it last night and it
didn't go through. I'm trimming some text to see if it helps.
I have a simple program that fails on the Microblaze:
int main()
{
unsigned long long x, y;
x = 100;
y = 0x8000000000000000ULL;
return !(x > y);
}
As you can see, the test case compares two unsigned long long values. To
try to track the problem down I tried compiling it for the Mips (which
works, of course) for both unsigned long long and signed long long with
the following results:
unsigned long long:
main:...
2007 Jan 18
13
[PATCH 0/5] dump-core take 2:
The following dump-core patches changes its format into ELF,
adds PFN-GMFN table, HVM support, and adds experimental IA64 support.
- ELF format
Program header and note section are adopted.
- HVM domain support
To know the memory area to dump, XENMEM_set_memory_map is added.
XENMEM_memory_map hypercall is for current domain, so new one is created.
and hvm domain builder tell xen its
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...ffffffffffe00ULL) >> 9;
+ dest->br_startblock = (((xfs_fsblock_t)l0 & 0x00000000000001ffULL) << 43) |
+ (((xfs_fsblock_t)l1) >> 21);
+ dest->br_blockcount = (xfs_filblks_t)(l1 & 0x00000000001fffffULL);
+ dest->br_state = (l0 & 0x8000000000000000ULL) ?
+ XFS_EXT_UNWRITTEN : XFS_EXT_NORM;
+}
+
+typedef struct xfs_timestamp {
+ int32_t t_sec;
+ int32_t t_nsec;
+} __attribute__((__packed__)) xfs_timestamp_t;
+
+/*
+ * Fork identifiers.
+ */
+#define XFS_DATA_FORK 0
+#define xFS_ATTR_FORK 1
+
+typedef enum xfs_dinode_fmt {
+ XFS_DINOD...