/linux-6.12.1/lib/kunit/ |
D | executor_test.c | 49 struct kunit_suite_set got; in filter_suites_test() local 56 got = kunit_filter_suites(&suite_set, "suite2", NULL, NULL, &err); in filter_suites_test() 57 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, got.start); in filter_suites_test() 59 free_suite_set_at_end(test, &got); in filter_suites_test() 62 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, got.start[0]); in filter_suites_test() 63 KUNIT_EXPECT_STREQ(test, (const char *)got.start[0]->name, "suite2"); in filter_suites_test() 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 82 got = kunit_filter_suites(&suite_set, "suite2.test2", NULL, NULL, &err); in filter_suites_test_glob_test() 83 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, got.start); in filter_suites_test_glob_test() [all …]
|
/linux-6.12.1/arch/riscv/kernel/ |
D | module-sections.c | 15 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry() 17 struct got_entry *got = get_got_entry(val, got_sec); in module_emit_got_entry() local 19 if (got) in module_emit_got_entry() 20 return (unsigned long)got; in module_emit_got_entry() 23 got = (struct got_entry *)got_sec->shdr->sh_addr; 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() [all …]
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | test_strncmp.c | 30 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()
|
D | flow_dissector.c | 16 #define CHECK_FLOW_KEYS(desc, got, expected) \ argument 17 _CHECK(memcmp(&got, &expected, sizeof(got)) != 0, \ 31 got.nhoff, expected.nhoff, \ 32 got.thoff, expected.thoff, \ 33 got.addr_proto, expected.addr_proto, \ 34 got.is_frag, expected.is_frag, \ 35 got.is_first_frag, expected.is_first_frag, \ 36 got.is_encap, expected.is_encap, \ 37 got.ip_proto, expected.ip_proto, \ 38 got.n_proto, expected.n_proto, \ [all …]
|
/linux-6.12.1/arch/x86/boot/compressed/ |
D | vmlinux.lds.S | 86 .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!")
|
/linux-6.12.1/arch/x86/lib/ |
D | insn.c | 131 if (prefixes->got) in insn_get_prefixes() 197 insn->rex_prefix.got = 1; in insn_get_prefixes() 201 insn->rex_prefix.got = 1; in insn_get_prefixes() 249 insn->vex_prefix.got = 1; in insn_get_prefixes() 251 prefixes->got = 1; in insn_get_prefixes() 279 if (opcode->got) in insn_get_opcode() 341 opcode->got = 1; in insn_get_opcode() 366 if (modrm->got) in insn_get_modrm() 391 modrm->got = 1; in insn_get_modrm() 440 if (insn->sib.got) in insn_get_sib() [all …]
|
/linux-6.12.1/tools/arch/x86/lib/ |
D | insn.c | 131 if (prefixes->got) in insn_get_prefixes() 197 insn->rex_prefix.got = 1; in insn_get_prefixes() 201 insn->rex_prefix.got = 1; in insn_get_prefixes() 249 insn->vex_prefix.got = 1; in insn_get_prefixes() 251 prefixes->got = 1; in insn_get_prefixes() 279 if (opcode->got) in insn_get_opcode() 341 opcode->got = 1; in insn_get_opcode() 366 if (modrm->got) in insn_get_modrm() 391 modrm->got = 1; in insn_get_modrm() 440 if (insn->sib.got) in insn_get_sib() [all …]
|
/linux-6.12.1/drivers/infiniband/hw/qib/ |
D | qib_user_pages.c | 98 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()
|
/linux-6.12.1/fs/xfs/libxfs/ |
D | xfs_bmap.c | 1252 struct xfs_bmbt_irec got; in xfs_bmap_first_unused() local 1270 for_each_xfs_iext(ifp, &icur, &got) { in xfs_bmap_first_unused() 1274 if (got.br_startoff >= lowest + len && in xfs_bmap_first_unused() 1275 got.br_startoff - max >= len) in xfs_bmap_first_unused() 1277 lastaddr = got.br_startoff + got.br_blockcount; in xfs_bmap_first_unused() 1299 struct xfs_bmbt_irec got; in xfs_bmap_last_before() local 1320 if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got)) in xfs_bmap_last_before() 1436 struct xfs_bmbt_irec *new = &bma->got; in xfs_bmap_add_extent_delay_real() 3212 if (!isnullstartblock(ap->got.br_startblock)) { in xfs_bmap_adjacent() 3216 adjust = gotdiff = ap->got.br_startoff - ap->offset; in xfs_bmap_adjacent() [all …]
|
/linux-6.12.1/arch/loongarch/kernel/ |
D | module-sections.c | 14 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry() 16 struct got_entry *got = get_got_entry(val, sechdrs, got_sec); in module_emit_got_entry() local 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() [all …]
|
/linux-6.12.1/arch/alpha/kernel/ |
D | module.c | 69 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 149 got = sechdrs[me->arch.gotsecindex].sh_addr; in apply_relocate_add() [all …]
|
/linux-6.12.1/fs/xfs/scrub/ |
D | cow_repair.c | 365 struct xfs_bmbt_irec *got) in xrep_cow_find_mapping() argument 370 if (!xfs_iext_lookup_extent(ip, ifp, startoff, icur, got)) in xrep_cow_find_mapping() 373 if (got->br_startoff > startoff) in xrep_cow_find_mapping() 376 if (got->br_blockcount == 0) in xrep_cow_find_mapping() 379 if (isnullstartblock(got->br_startblock)) in xrep_cow_find_mapping() 382 if (xfs_bmap_is_written_extent(got)) in xrep_cow_find_mapping() 402 const struct xfs_bmbt_irec *got, in xrep_cow_replace_mapping() argument 405 struct xfs_bmbt_irec new = *got; /* struct copy */ in xrep_cow_replace_mapping() 408 ASSERT(!isnullstartblock(got->br_startblock)); in xrep_cow_replace_mapping() 410 trace_xrep_cow_replace_mapping(ip, got, repl->fsbno, repl->len); in xrep_cow_replace_mapping() [all …]
|
/linux-6.12.1/arch/s390/boot/ |
D | vmlinux.lds.S | 43 .got : { 44 *(.got) 146 .got.plt : { 147 *(.got.plt) 149 ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0x18, "Unexpected GOT/PLT entries detected!")
|
/linux-6.12.1/fs/xfs/ |
D | xfs_reflink.c | 252 struct xfs_bmbt_irec got; in xfs_reflink_convert_cow_locked() local 257 if (!xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &got)) in xfs_reflink_convert_cow_locked() 261 if (got.br_startoff >= offset_fsb + count_fsb) in xfs_reflink_convert_cow_locked() 263 if (got.br_state == XFS_EXT_NORM) in xfs_reflink_convert_cow_locked() 265 if (WARN_ON_ONCE(isnullstartblock(got.br_startblock))) in xfs_reflink_convert_cow_locked() 268 xfs_trim_extent(&got, offset_fsb, count_fsb); in xfs_reflink_convert_cow_locked() 269 if (!got.br_blockcount) in xfs_reflink_convert_cow_locked() 272 got.br_state = XFS_EXT_NORM; in xfs_reflink_convert_cow_locked() 274 XFS_COW_FORK, &icur, &dummy_cur, &got, in xfs_reflink_convert_cow_locked() 278 } while (xfs_iext_next_extent(ip->i_cowfp, &icur, &got)); in xfs_reflink_convert_cow_locked() [all …]
|
D | xfs_bmap_util.c | 86 struct xfs_bmbt_irec got; in xfs_bmap_count_leaves() local 89 for_each_xfs_iext(ifp, &icur, &got) { in xfs_bmap_count_leaves() 90 if (!isnullstartblock(got.br_startblock)) { in xfs_bmap_count_leaves() 91 *count += got.br_blockcount; in xfs_bmap_count_leaves() 157 struct xfs_bmbt_irec *got) in xfs_getbmap_report_one() argument 163 error = xfs_reflink_trim_around_shared(ip, got, &shared); in xfs_getbmap_report_one() 167 if (isnullstartblock(got->br_startblock) || in xfs_getbmap_report_one() 168 got->br_startblock == DELAYSTARTBLOCK) { in xfs_getbmap_report_one() 181 p->bmv_block = xfs_fsb_to_db(ip, got->br_startblock); in xfs_getbmap_report_one() 184 if (got->br_state == XFS_EXT_UNWRITTEN && in xfs_getbmap_report_one() [all …]
|
/linux-6.12.1/arch/arm/boot/compressed/ |
D | vmlinux.lds.S | 71 .got.plt : { *(.got.plt) } 74 .got : { *(.got) } 86 *(.got)
|
/linux-6.12.1/scripts/dtc/ |
D | of_unittest_expect | 30 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]+//;
|
/linux-6.12.1/arch/um/kernel/ |
D | dyn.lds.S | 53 .rel.got : { *(.rel.got) } 54 .rela.got : { *(.rela.got) } 157 .got : { *(.got.plt) *(.got) }
|
/linux-6.12.1/arch/s390/kernel/ |
D | vmlinux.lds.S | 78 .got : { 80 *(.got) argument 245 .got.plt : { 246 *(.got.plt) 248 ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0x18, "Unexpected GOT/PLT entries detected!")
|
/linux-6.12.1/sound/pci/emu10k1/ |
D | voice.c | 91 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()
|
/linux-6.12.1/arch/powerpc/platforms/512x/ |
D | mpc512x_shared.c | 60 unsigned long offset, want, got, delta; in mpc512x_set_pixel_clock() local 126 got = clk_get_rate(clk_diu); in mpc512x_set_pixel_clock() 127 delta = abs(pixclock - got); in mpc512x_set_pixel_clock() 135 got = clk_get_rate(clk_diu); in mpc512x_set_pixel_clock() 136 delta = abs(pixclock - got); in mpc512x_set_pixel_clock() 143 pixclock, got, delta, epsilon); in mpc512x_set_pixel_clock() 156 got = clk_get_rate(clk_diu); in mpc512x_set_pixel_clock() 157 delta = abs(pixclock - got); in mpc512x_set_pixel_clock() 159 pixclock, got, delta, epsilon); in mpc512x_set_pixel_clock()
|
/linux-6.12.1/arch/x86/kernel/ |
D | vmlinux.lds.S | 454 .got.plt (INFO) : { *(.got.plt) } 455 ASSERT(SIZEOF(.got.plt) == 0 || 457 SIZEOF(.got.plt) == 0x18, 459 SIZEOF(.got.plt) == 0xc, 467 .got : { 468 *(.got) *(.igot.*) 470 ASSERT(SIZEOF(.got) == 0, "Unexpected GOT entries detected!")
|
/linux-6.12.1/arch/nios2/boot/compressed/ |
D | vmlinux.lds.S | 27 .got : { 28 *(.got.plt) 30 *(.got)
|
/linux-6.12.1/tools/testing/selftests/powerpc/primitives/ |
D | load_unaligned_zeropad.c | 105 unsigned long got; in do_one_test() local 111 got = load_unaligned_zeropad(p); in do_one_test() 113 if (should != got) { in do_one_test() 114 …printf("offset %u load_unaligned_zeropad returned 0x%lx, should be 0x%lx\n", page_offset, got, sho… in do_one_test()
|
/linux-6.12.1/arch/nios2/kernel/ |
D | vmlinux.lds.S | 34 .got : { 35 *(.got.plt) 37 *(.got)
|