Home
last modified time | relevance | path

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

12345678910>>...16

/openbmc/linux/lib/kunit/
H A Dexecutor_test.c49 struct kunit_suite_set got; in filter_suites_test() local
66 KUNIT_ASSERT_EQ(test, got.end - got.start, 1); in filter_suites_test()
75 struct kunit_suite_set got; in filter_suites_test_glob_test() local
90 KUNIT_ASSERT_EQ(test, got.end - got.start, 1); in filter_suites_test_glob_test()
104 struct kunit_suite_set got; in filter_suites_to_empty_test() local
114 KUNIT_EXPECT_PTR_EQ_MSG(test, got.start, got.end, in filter_suites_to_empty_test()
156 struct kunit_suite_set got; in filter_attr_test() local
180 KUNIT_ASSERT_EQ(test, got.end - got.start, 1); in filter_attr_test()
194 struct kunit_suite_set got; in filter_attr_empty_test() local
205 KUNIT_EXPECT_PTR_EQ_MSG(test, got.start, got.end, in filter_attr_empty_test()
[all …]
/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/linux/tools/arch/x86/lib/
H A Dinsn.c131 if (prefixes->got) in insn_get_prefixes()
240 prefixes->got = 1; in insn_get_prefixes()
268 if (opcode->got) in insn_get_opcode()
314 opcode->got = 1; in insn_get_opcode()
339 if (modrm->got) in insn_get_modrm()
366 modrm->got = 1; in insn_get_modrm()
533 insn->moffset1.got = insn->moffset2.got = 1; in __get_moffset()
580 insn->immediate1.got = insn->immediate2.got = 1; in __get_immv()
604 insn->immediate1.got = insn->immediate2.got = 1; in __get_immptr()
721 return insn->opcode.got && insn->modrm.got && insn->sib.got && in insn_complete()
[all …]
/openbmc/linux/arch/x86/lib/
H A Dinsn.c131 if (prefixes->got) in insn_get_prefixes()
240 prefixes->got = 1; in insn_get_prefixes()
268 if (opcode->got) in insn_get_opcode()
314 opcode->got = 1; in insn_get_opcode()
339 if (modrm->got) in insn_get_modrm()
366 modrm->got = 1; in insn_get_modrm()
533 insn->moffset1.got = insn->moffset2.got = 1; in __get_moffset()
580 insn->immediate1.got = insn->immediate2.got = 1; in __get_immv()
604 insn->immediate1.got = insn->immediate2.got = 1; in __get_immptr()
721 return insn->opcode.got && insn->modrm.got && insn->sib.got && in insn_complete()
[all …]
/openbmc/linux/arch/riscv/kernel/
H A Dmodule-sections.c15 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry()
19 if (got) in module_emit_got_entry()
20 return (unsigned long)got; in module_emit_got_entry()
24 got[i] = emit_got_entry(val); in module_emit_got_entry()
29 return (unsigned long)&got[i]; in module_emit_got_entry()
104 mod->arch.got.shdr = sechdrs + i; in module_frob_arch_sections()
113 if (!mod->arch.got.shdr) { in module_frob_arch_sections()
145 mod->arch.got.shdr->sh_type = SHT_NOBITS; in module_frob_arch_sections()
146 mod->arch.got.shdr->sh_flags = SHF_ALLOC; in module_frob_arch_sections()
149 mod->arch.got.num_entries = 0; in module_frob_arch_sections()
[all …]
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dtest_strncmp.c30 int got; in strncmp_full_str_cmp() local
37 got = trigger_strncmp(skel); in strncmp_full_str_cmp()
38 ASSERT_EQ(got, exp, name); in strncmp_full_str_cmp()
47 int err, got; in test_strncmp_ret() local
67 got = trigger_strncmp(skel); in test_strncmp_ret()
68 ASSERT_EQ(got, -1, "strncmp: empty str"); in test_strncmp_ret()
72 got = trigger_strncmp(skel); in test_strncmp_ret()
73 ASSERT_EQ(got, 0, "strncmp: same str"); in test_strncmp_ret()
78 got = trigger_strncmp(skel); in test_strncmp_ret()
79 ASSERT_EQ(got, 1, "strncmp: not-null-term str"); in test_strncmp_ret()
/openbmc/linux/arch/x86/boot/compressed/
H A Dvmlinux.lds.S86 .got.plt (INFO) : {
87 *(.got.plt)
89 ASSERT(SIZEOF(.got.plt) == 0 ||
91 SIZEOF(.got.plt) == 0x18,
93 SIZEOF(.got.plt) == 0xc,
101 .got : {
102 *(.got)
104 ASSERT(SIZEOF(.got) == 0, "Unexpected GOT entries detected!")
/openbmc/linux/drivers/infiniband/hw/qib/
H A Dqib_user_pages.c98 size_t got; in qib_get_user_pages() local
110 for (got = 0; got < num_pages; got += ret) { in qib_get_user_pages()
111 ret = pin_user_pages(start_page + got * PAGE_SIZE, in qib_get_user_pages()
112 num_pages - got, in qib_get_user_pages()
114 p + got); in qib_get_user_pages()
124 __qib_release_user_pages(p, got, 0); in qib_get_user_pages()
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_bmap.c1260 lastaddr = got.br_startoff + got.br_blockcount; in xfs_bmap_first_unused()
3776 got->br_startoff + got->br_blockcount <= obno) { in xfs_bmapi_trim_map()
3801 got->br_blockcount - (*bno - got->br_startoff)); in xfs_bmapi_trim_map()
4821 got_endoff = got->br_startoff + got->br_blockcount; in xfs_bmap_del_extent_delay()
4943 got_endoff = got->br_startoff + got->br_blockcount; in xfs_bmap_del_extent_cow()
5039 got_endoff = got.br_startoff + got.br_blockcount; in xfs_bmap_del_extent_real()
5143 old = got; in xfs_bmap_del_extent_real()
5341 got.br_startoff + got.br_blockcount - 1); in __xfs_bunmapi()
5348 del = got; in __xfs_bunmapi()
5722 got); in xfs_bmap_shift_update_extent()
[all …]
/openbmc/linux/arch/loongarch/kernel/
H A Dmodule-sections.c14 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry()
18 if (got) in module_emit_got_entry()
19 return (Elf_Addr)got; in module_emit_got_entry()
22 got = (struct got_entry *)sechdrs[got_sec->shndx].sh_addr; in module_emit_got_entry()
23 got[i] = emit_got_entry(val); in module_emit_got_entry()
35 return (Elf_Addr)&got[i]; in module_emit_got_entry()
115 mod->arch.got.shndx = i; in module_frob_arch_sections()
124 if (!mod->arch.got.shndx) { in module_frob_arch_sections()
153 got_sec = sechdrs + mod->arch.got.shndx; in module_frob_arch_sections()
158 mod->arch.got.num_entries = 0; in module_frob_arch_sections()
[all …]
/openbmc/linux/arch/alpha/kernel/
H A Dmodule.c69 Elf64_Shdr *esechdrs, *symtab, *s, *got; in module_frob_arch_sections() local
73 symtab = got = NULL; in module_frob_arch_sections()
82 got = s; in module_frob_arch_sections()
90 if (!got) { in module_frob_arch_sections()
104 got->sh_size = 0; in module_frob_arch_sections()
105 got->sh_addralign = 8; in module_frob_arch_sections()
106 got->sh_type = SHT_NOBITS; in module_frob_arch_sections()
116 &got->sh_size); in module_frob_arch_sections()
141 unsigned long got, gp; in apply_relocate_add() local
150 gp = got + 0x8000; in apply_relocate_add()
[all …]
/openbmc/linux/fs/xfs/
H A Dxfs_reflink.c251 struct xfs_bmbt_irec got; in xfs_reflink_convert_cow_locked() local
262 if (got.br_state == XFS_EXT_NORM) in xfs_reflink_convert_cow_locked()
268 if (!got.br_blockcount) in xfs_reflink_convert_cow_locked()
271 got.br_state = XFS_EXT_NORM; in xfs_reflink_convert_cow_locked()
585 struct xfs_bmbt_irec got, del; in xfs_reflink_cancel_cow_blocks() local
595 while (got.br_startoff + got.br_blockcount > offset_fsb) { in xfs_reflink_cancel_cow_blocks()
596 del = got; in xfs_reflink_cancel_cow_blocks()
609 &icur, &got, &del); in xfs_reflink_cancel_cow_blocks()
786 del = got; in xfs_reflink_end_cow_extent()
1561 struct xfs_bmbt_irec got; in xfs_reflink_inode_has_shared_extents() local
[all …]
/openbmc/linux/arch/arm/boot/compressed/
H A Dvmlinux.lds.S71 .got.plt : { *(.got.plt) }
74 .got : { *(.got) }
86 *(.got)
/openbmc/u-boot/arch/x86/lib/
H A Delf_ia32_efi.lds25 *(.got.plt)
26 *(.got)
40 *(.got.plt)
41 *(.got)
66 *(.rel.got)
/openbmc/linux/fs/xfs/scrub/
H A Ddir.c620 struct xfs_bmbt_irec got; in xchk_directory_blocks() local
657 if (got.br_startoff >= leaf_lblk) in xchk_directory_blocks()
671 for (lblk = roundup((xfs_dablk_t)got.br_startoff, in xchk_directory_blocks()
673 lblk < got.br_startoff + got.br_blockcount; in xchk_directory_blocks()
681 dabno = got.br_startoff + got.br_blockcount; in xchk_directory_blocks()
691 got.br_startoff == leaf_lblk && in xchk_directory_blocks()
692 got.br_blockcount == args.geo->fsbcount && in xchk_directory_blocks()
693 !xfs_iext_next_extent(ifp, &icur, &got)) { in xchk_directory_blocks()
715 lblk = got.br_startoff; in xchk_directory_blocks()
738 lblk < got.br_startoff + got.br_blockcount; in xchk_directory_blocks()
[all …]
/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/linux/sound/pci/emu10k1/
H A Dvoice.c91 for (int got = 0; got < channels; ) { in snd_emu10k1_voice_alloc() local
92 result = voice_alloc(emu, type, count, epcm, &rvoice[got]); in snd_emu10k1_voice_alloc()
94 got++; in snd_emu10k1_voice_alloc()
109 for (int i = 0; i < got; i++) { in snd_emu10k1_voice_alloc()
/openbmc/linux/scripts/dtc/
H A Dof_unittest_expect30 my ($expect, $got) = @_;
45 $got_next = $got;
47 $got =~ s/^$expect_next_lit//;
54 if ($got =~ /^[+-]*[0-9]+/) {
55 $got =~ s/^[+-]*[0-9]+//;
60 if ($got =~ /^(0x)*[0-9a-f]+/) {
61 $got =~ s/^(0x)*[0-9a-f]+//;
/openbmc/linux/arch/um/kernel/
H A Ddyn.lds.S53 .rel.got : { *(.rel.got) }
54 .rela.got : { *(.rela.got) }
157 .got : { *(.got.plt) *(.got) }
/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/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/linux/arch/nios2/boot/compressed/
H A Dvmlinux.lds.S27 .got : {
28 *(.got.plt)
30 *(.got)
/openbmc/u-boot/arch/riscv/lib/
H A Delf_riscv32_efi.lds34 *(.got.plt)
35 *(.got)
55 .rela.got : { *(.rela.got) }

12345678910>>...16