Home
last modified time | relevance | path

Searched refs:d (Results 1 – 19 of 19) sorted by relevance

/DragonStub/lib/loongarch64/
H A Dsetjmp.S29 st.d $ra, $a0, 0x0
30 st.d $sp, $a0, 0x8
31 st.d $fp, $a0, 0x10
32 st.d $s0, $a0, 0x18
33 st.d $s1, $a0, 0x20
34 st.d $s2, $a0, 0x28
35 st.d $s3, $a0, 0x30
36 st.d $s4, $a0, 0x38
37 st.d $s5, $a0, 0x40
38 st.d $s6, $a0, 0x48
[all …]
/DragonStub/lib/mips64el/
H A Dsetjmp.S43 s.d $f24, 0x60($a0)
44 s.d $f25, 0x68($a0)
45 s.d $f26, 0x70($a0)
46 s.d $f27, 0x78($a0)
47 s.d $f28, 0x80($a0)
48 s.d $f29, 0x88($a0)
49 s.d $f30, 0x90($a0)
50 s.d $f31, 0x98($a0)
79 l.d $f24, 0x60($a0)
80 l.d $f25, 0x68($a0)
[all …]
/DragonStub/lib/runtime/
H A Defirtlib.c71 CHAR8 *d = (CHAR8*)Dest; in RtCopyMem() local
74 if (d == NULL || s == NULL || s == d) in RtCopyMem()
80 if ((d > s) && (d < s + len)) { in RtCopyMem()
81 for (d += len, s += len; len--; ) in RtCopyMem()
82 *--d = *--s; in RtCopyMem()
85 *d++ = *s++; in RtCopyMem()
100 CONST CHAR8 *d = Dest, *s = Src; in RtCompareMem() local
102 if (*d != *s) { in RtCompareMem()
103 return *d - *s; in RtCompareMem()
106 d += 1; in RtCompareMem()
/DragonStub/inc/dragonstub/linux/
H A Dmath.h36 #define DIV_ROUND_DOWN_ULL(ll, d) \ argument
39 do_div(_tmp, d); \
43 #define DIV_ROUND_UP_ULL(ll, d) \ argument
44 DIV_ROUND_DOWN_ULL((unsigned long long)(ll) + (d)-1, (d))
47 #define DIV_ROUND_UP_SECTOR_T(ll, d) DIV_ROUND_UP_ULL(ll, d) argument
49 #define DIV_ROUND_UP_SECTOR_T(ll, d) DIV_ROUND_UP(ll, d) argument
H A Dconst.h35 #define __KERNEL_DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d)) argument
H A Dstdarg.h20 #define va_copy(d, s) __builtin_va_copy(d, s) argument
/DragonStub/gnuefi/
H A Dcrt0-efi-loongarch64.S142 addi.d $sp, $sp, -24
143 st.d $ra, $sp, 0
144 st.d $a0, $sp, 8
145 st.d $a1, $sp, 16
154 ld.d $a0, $sp, 8
155 ld.d $a1, $sp, 16
158 0: ld.d $ra, $sp, 0
159 addi.d $sp, $sp, 24
H A Delf_ia64_efi.lds43 *(.gnu.linkonce.d*)
91 *(.rela.gnu.linkonce.d*)
/DragonStub/inc/
H A Defistdarg.h28 # define va_copy(d,s) __builtin_va_copy(d,s) argument
H A Defi_pxe.h28 #define PXE_BUSTYPE(a,b,c,d) \ argument
29 ((((PXE_UINT32)(d) & 0xFF) << 24) | \
/DragonStub/lib/ia64/
H A Dpalproc.S76 srlz.d;; // Needs data serailization.
93 srlz.d;; // Needs data serailization.
137 srlz.d;; // Needs data serailization.
152 srlz.d;; // Needs data serailization.
/DragonStub/
H A DMakefile119 @set -e ; for d in $(SUBDIRS); do \
120 if [ -d $(OBJDIR)/$$d ]; then \
121 $(MAKE) -C $(OBJDIR)/$$d -f $(SRCDIR)/$$d/Makefile SRCDIR=$(SRCDIR)/$$d clean; \
H A DMake.defaults79 HOSTARCH ?= $(shell $(HOSTCC) -dumpmachine | cut -f1 -d- | sed -e s,i[3456789]86,ia32, -e 's,ar…
80 ARCH ?= $(shell $(HOSTCC) -dumpmachine | cut -f1 -d- | sed -e s,i[3456789]86,ia32, -e 's,ar…
84 …override ARCH := $(shell $(CC) -dumpmachine | cut -f1 -d-| sed -e s,i[3456789]86,ia32, -e 's,armv[…
92 GCCVERSION := $(shell $(CC) -dumpversion | cut -f1 -d.)
93 GCCMINOR := $(shell $(CC) -dumpversion | cut -f2 -d.)
H A DChangeLog84 Since we're keeping this in git, it'd be nice not to see a bunch
1129 * release 3.0d to support x86_64 from Chandramouli Narayanan
/DragonStub/inc/dragonstub/
H A Dlinux-efi.h21 #define MAKE_EFI_GUID(a, b, c, d...) \
26 d \
12 MAKE_EFI_GUID(a,b,c,d...) global() argument
H A Dlinux-efi.h21 #define MAKE_EFI_GUID(a, b, c, d...) \
26 d \
15 MAKE_EFI_GUID(a,b,c,d...) global() argument
H A Dlinux-efi.h21 #define MAKE_EFI_GUID(a, b, c, d...) \ argument
26 d \
/DragonStub/docs/
H A DREADME.elilo14 gnu-efi-3.0d.
/DragonStub/inc/dragonstub/linux/arch/riscv/asm/
H A Dasm.h25 #define REG_SC __REG_SEL(sc.d, sc.w)
26 #define REG_AMOSWAP_AQ __REG_SEL(amoswap.d.aq, amoswap.w.aq)