Home
last modified time | relevance | path

Searched refs:got (Results 1 – 25 of 152) sorted by relevance

1234567

/openbmc/qemu/crypto/
H A Drandom-platform.c81 ssize_t got = getrandom(buf, buflen, 0); in qcrypto_random_bytes()
82 if (likely(got == buflen)) { in qcrypto_random_bytes()
85 if (got >= 0) { in qcrypto_random_bytes()
86 buflen -= got; in qcrypto_random_bytes()
87 buf += got; in qcrypto_random_bytes()
97 ssize_t got = read(fd, buf, buflen); in qcrypto_random_bytes()
98 if (likely(got == buflen)) { in qcrypto_random_bytes()
101 if (got > 0) { in qcrypto_random_bytes()
102 buflen -= got; in qcrypto_random_bytes()
103 buf += got; in qcrypto_random_bytes()
[all …]
/openbmc/qemu/hw/core/
H A Deif.c92 size_t got; in read_eif_header() local
95 got = fread(header, 1, header_size, f); in read_eif_header()
96 if (got != header_size) { in read_eif_header()
136 size_t got; in read_eif_section_header() local
139 got = fread(section_header, 1, section_header_size, f); in read_eif_section_header()
140 if (got != section_header_size) { in read_eif_section_header()
193 size_t got; in read_eif_kernel() local
213 got = fread(kernel, 1, size, f); in read_eif_kernel()
214 if ((uint64_t) got != size) { in read_eif_kernel()
219 got = fwrite(kernel, 1, size, tmp_file); in read_eif_kernel()
[all …]
/openbmc/u-boot/arch/x86/lib/
H A Delf_ia32_efi.lds25 *(.got.plt)
26 *(.got)
40 *(.got.plt)
41 *(.got)
66 *(.rel.got)
H A Delf_x86_64_efi.lds38 *(.got.plt)
39 *(.got)
64 *(.rela.got)
/openbmc/qemu/scripts/
H A Dcpu-x86-uarch-abi.py100 got = {} variable
103 got[feature] = True
110 "features": got,
129 got = set(models[name]["features"]) variable
131 missing = want - got
/openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/
H A D0004-linux-syslinux-add-ext_file_read-and-ext_file_write.patch30 + unsigned int got = 0;
41 + retval = ext2fs_file_read(e2_file, ptr, count, &got);
47 + count -= got;
48 + ptr += got;
49 + done += got;
50 + if (got == 0 || count == 0)
/openbmc/u-boot/arch/arm/lib/
H A Delf_arm_efi.lds32 *(.got.plt)
33 *(.got)
53 .rel.got : { *(.rel.got) }
H A Delf_aarch64_efi.lds32 *(.got.plt)
33 *(.got)
53 .rela.got : { *(.rela.got) }
/openbmc/qemu/pc-bios/vof/
H A Dvof.lds41 __toc_start = DEFINED (.TOC.) ? .TOC. : ADDR (.got) + 0x8000;
42 .got :
44 *(.toc .got)
/openbmc/u-boot/arch/riscv/lib/
H A Delf_riscv32_efi.lds34 *(.got.plt)
35 *(.got)
55 .rela.got : { *(.rela.got) }
H A Delf_riscv64_efi.lds34 *(.got.plt)
35 *(.got)
55 .rela.got : { *(.rela.got) }
/openbmc/qemu/gdbstub/
H A Dtrace-events25 gdbstub_err_invalid_repeat(uint8_t ch) "got invalid RLE count: 0x%02x"
26 gdbstub_err_invalid_rle(void) "got invalid RLE sequence"
27 gdbstub_err_checksum_invalid(uint8_t ch) "got invalid command checksum digit: 0x%02x"
28 gdbstub_err_checksum_incorrect(uint8_t expected, uint8_t got) "got command packet with incorrect ch…
/openbmc/u-boot/arch/nds32/cpu/n1213/
H A Du-boot.lds31 .got : {
33 *(.got.plt) *(.got) argument
/openbmc/u-boot/arch/riscv/cpu/
H A Du-boot.lds40 .got : {
42 *(.got.plt) *(.got) argument
/openbmc/u-boot/arch/m68k/
H A DMakefile27 ldflags-$(CONFIG_MCF5441x) := --got=single
28 ldflags-$(CONFIG_MCF5445x) := --got=single
29 ldflags-$(CONFIG_MCF547x_8x) := --got=single
/openbmc/qemu/tests/tcg/alpha/system/
H A Dkernel.ld18 .got : {
19 *(.got)
/openbmc/qemu/tests/tcg/loongarch64/system/
H A Dkernel.ld18 .got : {
19 *(.got)
/openbmc/u-boot/lib/
H A Dfdtdec_test.c145 int got = ' '; in run_test() local
149 got = name[3] + 'a' - '0'; in run_test()
151 if (got != want) { in run_test()
153 i, want, got, name); in run_test()
/openbmc/u-boot/arch/sh/cpu/
H A Du-boot.lds65 .got :
67 *(.got.plt) *(.got)
/openbmc/u-boot/examples/standalone/
H A Dnds32.lds24 .got : {
26 *(.got) argument
/openbmc/u-boot/arch/arm/
H A Dconfig.mk136 -j .u_boot_list -j .rela.dyn -j .got -j .got.plt \
140 -j .data -j .got -j .got.plt -j .u_boot_list -j .rel.dyn \
/openbmc/u-boot/arch/microblaze/cpu/
H A Du-boot.lds35 .got ALIGN(4):
38 *(.got*)
/openbmc/u-boot/arch/x86/cpu/
H A Du-boot-64.lds59 .got : { *(.got*) }
H A Du-boot.lds59 .got : { *(.got*) }
/openbmc/qemu/linux-user/x86_64/
H A Dvdso.ld55 *(.got.plt) *(.got)

1234567