| /src/external/gpl3/gdb.old/dist/gdb/ |
| glibc-tdep.c | 41 entry points to "_dl_runtime_resolve", which calls "fixup" to 44 We look for the symbol `_dl_runtime_resolve', and find `fixup' in 45 the same objfile. If we are at the entry point of `fixup', then 61 bound_minimal_symbol fixup local 66 if (! fixup.minsym) 67 fixup = lookup_minimal_symbol (current_program_space, "fixup", 70 if (fixup.minsym && fixup.value_address () == pc)
|
| /src/external/gpl3/gdb/dist/gdb/ |
| glibc-tdep.c | 41 entry points to "_dl_runtime_resolve", which calls "fixup" to 44 We look for the symbol `_dl_runtime_resolve', and find `fixup' in 45 the same objfile. If we are at the entry point of `fixup', then 61 bound_minimal_symbol fixup local 66 if (! fixup.minsym) 67 fixup = lookup_minimal_symbol (current_program_space, "fixup", 70 if (fixup.minsym && fixup.value_address () == pc)
|
| /src/external/gpl3/gdb.old/dist/gdb/arch/ |
| arm-get-next-pcs.h | 38 CORE_ADDR (*fixup) (struct arm_get_next_pcs *self, CORE_ADDR pc); member in struct:arm_get_next_pcs_ops
|
| /src/external/gpl3/gdb/dist/gdb/arch/ |
| arm-get-next-pcs.h | 38 CORE_ADDR (*fixup) (struct arm_get_next_pcs *self, CORE_ADDR pc); member in struct:arm_get_next_pcs_ops
|
| /src/sys/arch/powerpc/powerpc/ |
| fixup.c | 1 /* $NetBSD: fixup.c,v 1.13 2022/01/01 01:15:11 macallan Exp $ */ 38 __KERNEL_RCSID(0, "$NetBSD: fixup.c,v 1.13 2022/01/01 01:15:11 macallan Exp $"); 97 struct powerpc_jump_fixup_info fixup; local 109 fixup.jfi_stub = fixup_addr2offset(stub); 110 fixup.jfi_real = 0; 121 for (; stub < stub_end && fixup.jfi_real == 0; stub++) { 209 fixup.jfi_real = fixup_addr2offset(ctr); 223 KASSERT(fixup.jfi_real != 0); 230 __func__, insnp, fixup.jfi_stub << 2, fixup.jfi_real << 2) [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/pa/ |
| fptr.c | 36 The first "bl" branch instruction found MUST be a call to fixup. See 81 fixup_t fixup; local 119 call to _dl_fixup or a magic branch to fixup at the beginning of the 120 trampoline template. The fixup function does the actual runtime 141 fixup_plabel[0] = (unsigned int) iptr + 8; /* address of fixup */ 142 fixup_plabel[1] = got[-1]; /* ltp for fixup */ 143 fixup = (fixup_t) ((int) fixup_plabel | 2); 145 /* Call fixup to resolve the function address. got[1] contains the 147 fixup ((struct link_map *) got[1], reloc_offset);
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/pa/ |
| fptr.c | 36 The first "bl" branch instruction found MUST be a call to fixup. See 81 fixup_t fixup; local 119 call to _dl_fixup or a magic branch to fixup at the beginning of the 120 trampoline template. The fixup function does the actual runtime 141 fixup_plabel[0] = (unsigned int) iptr + 8; /* address of fixup */ 142 fixup_plabel[1] = got[-1]; /* ltp for fixup */ 143 fixup = (fixup_t) ((int) fixup_plabel | 2); 145 /* Call fixup to resolve the function address. got[1] contains the 147 fixup ((struct link_map *) got[1], reloc_offset);
|
| /src/sys/dev/isa/ |
| boca.c | 67 callout_t fixup; member in struct:boca_softc 191 callout_init(&sc->fixup, 0); 192 callout_reset(&sc->fixup, hz/10, boca_fixup, sc); 245 callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
|
| /src/sys/arch/sparc/sparc/ |
| timer.c | 120 u_int cnt, res, fixup, offset; local 148 fixup = cntr.limit; 150 fixup = cntr.limit; 152 fixup = 0; 161 res += fixup + offset;
|
| /src/tests/fs/puffs/ |
| t_fuzz.c | 151 fixup(int nfix, struct puffs_kargs *kargs) function 232 fixup(nfix, &kargs);
|
| /src/sys/arch/mips/mips/ |
| mips_fixup.c | 519 struct mips_jump_fixup_info fixup = { local 524 fixup_mips_jump(insnp, &fixup); 541 printf("%s: %zu fixup%s done in %u cycles\n", __func__,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/ |
| AVRAsmBackend.cpp | 38 std::string Description, const MCFixup &Fixup, 50 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic); 58 std::string Description, const MCFixup &Fixup, 69 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic); 76 /// Adjusts the value of a branch target before fixup application. 77 static void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, 81 unsigned_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx); 87 /// Adjusts the value of a relative branch target before fixup application. 88 static void adjustRelativeBranch(unsigned Size, const MCFixup &Fixup, 92 signed_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx) 202 static void fixup(unsigned Size, const MCFixup &Fixup, uint64_t &Value, function in namespace:adjust::ldi [all...] |
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_srtm.c | 228 SRTM_ITEM *cur = head, **fixup = new_head; local 233 fixup = &cur->next_by_seq_num; 237 item->next_by_seq_num = *fixup; 238 *fixup = item; 249 SRTM_ITEM *cur = head, **fixup = new_head; local 254 fixup = &cur->next_by_srt_blinded; 258 item->next_by_srt_blinded = *fixup; 259 *fixup = item;
|
| quic_ackm.c | 678 OSSL_ACKM_TX_PKT *acked_pkts = NULL, **fixup = &acked_pkts, *pkt, *pprev; local 721 *fixup = pkt; 722 fixup = &pkt->anext; 723 *fixup = NULL; 754 OSSL_ACKM_TX_PKT *lost_pkts = NULL, **fixup = &lost_pkts, *pkt, *pnext; local 800 *fixup = pkt; 801 fixup = &pkt->lnext; 802 *fixup = NULL;
|
| /src/external/gpl3/binutils/dist/gas/ |
| cgen.c | 72 an `expressionS' is and what a `fixup' is out of CGEN which for the time 78 struct fixup struct 87 static struct fixup fixups[GAS_CGEN_MAX_FIXUPS]; 99 /* Queue a fixup. */ 104 /* We need to generate a fixup for this expression. */ 113 /* The following functions allow fixup chains to be stored, retrieved, 115 for storing, restoring and swapping fixup chains that was used by 117 instead of only being able to store a single fixup chain, an entire 118 array of fixup chains can be stored. It is the user's responsibility 119 to keep track of how many fixup chains have been stored and whic [all...] |
| /src/external/gpl3/binutils.old/dist/gas/ |
| cgen.c | 72 an `expressionS' is and what a `fixup' is out of CGEN which for the time 78 struct fixup struct 87 static struct fixup fixups[GAS_CGEN_MAX_FIXUPS]; 99 /* Queue a fixup. */ 104 /* We need to generate a fixup for this expression. */ 113 /* The following functions allow fixup chains to be stored, retrieved, 115 for storing, restoring and swapping fixup chains that was used by 117 instead of only being able to store a single fixup chain, an entire 118 array of fixup chains can be stored. It is the user's responsibility 119 to keep track of how many fixup chains have been stored and whic [all...] |
| /src/sys/fs/ntfs/ |
| ntfs_subr.c | 1656 * Process fixup routine on given buffer. 1665 u_int16_t fixup; local 1686 fixup = *fxp++; 1688 if (*cfxp != fixup) { 1689 printf("%s: fixup %d doesn't match\n", __func__, i);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| read-rtl-function.cc | 49 class fixup; 133 auto_vec<fixup *> m_fixups; 146 class fixup class 149 /* Constructor for a fixup at LOC affecting X. */ 150 fixup (file_location loc, rtx x) function in class:fixup 153 virtual ~fixup () {} 162 /* An abstract subclass of fixup for post-processing steps that 165 class operand_fixup : public fixup 168 /* Constructor for a fixup at LOC affecting INSN's operand 171 : fixup (loc, insn), m_operand_idx (operand_idx [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| read-rtl-function.cc | 49 class fixup; 133 auto_vec<fixup *> m_fixups; 146 class fixup class 149 /* Constructor for a fixup at LOC affecting X. */ 150 fixup (file_location loc, rtx x) function in class:fixup 153 virtual ~fixup () {} 162 /* An abstract subclass of fixup for post-processing steps that 165 class operand_fixup : public fixup 168 /* Constructor for a fixup at LOC affecting INSN's operand 171 : fixup (loc, insn), m_operand_idx (operand_idx [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| ctrl_params_translate.c | 319 * we end up with |translation == NULL|, which is fine. The fixup 363 * determined by a fixup function. 422 * special fixup function. 1509 * a post-ctrl OSSL_ACTION_GET fixup. They all get NULL ctx, ctrl_cmd, ctrl_str, 2082 * fixup function has to handle this... 2182 * both for setting and getting. The fixup function has to handle this... 2223 * both for setting and getting. The fixup function has to handle this... 2706 fixup_args_fn *fixup = default_fixup_args; local 2726 fixup = translation->fixup_args; 2734 ret = fixup(PRE_CTRL_TO_PARAMS, translation, &ctx) 2780 fixup_args_fn *fixup = default_fixup_args; local 2847 fixup_args_fn *fixup = default_fixup_args; local 2923 fixup_args_fn *fixup = default_fixup_args; local [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| ctrl_params_translate.c | 311 * we end up with |translation == NULL|, which is fine. The fixup 355 * determined by a fixup function. 411 * special fixup function. 1509 * a post-ctrl GET fixup. They all get NULL ctx, ctrl_cmd, ctrl_str, 2041 * fixup function has to handle this... 2141 * both for setting and getting. The fixup function has to handle this... 2182 * both for setting and getting. The fixup function has to handle this... 2648 fixup_args_fn *fixup = default_fixup_args; local 2668 fixup = translation->fixup_args; 2676 ret = fixup(PRE_CTRL_TO_PARAMS, translation, &ctx) 2718 fixup_args_fn *fixup = default_fixup_args; local 2781 fixup_args_fn *fixup = default_fixup_args; local 2849 fixup_args_fn *fixup = default_fixup_args; local [all...] |
| /src/external/gpl3/binutils/dist/gas/config/ |
| tc-mn10300.c | 522 /* Create a fixup for the reversed conditional branch. */ 528 /* Now create the unconditional branch + fixup to the 579 /* Create a fixup for the reversed conditional branch. */ 585 /* Now create the unconditional branch + fixup to the 625 /* Create a fixup for the reversed conditional branch. */ 631 /* Now create the unconditional branch + fixup to the 661 /* Create a fixup for the reversed conditional branch. */ 667 /* Now create the unconditional branch + fixup to the 815 /* Create a fixup for the reversed conditional branch. */ 821 /* Now create the unconditional branch + fixup to th 1018 struct mn10300_fixup fixup; local [all...] |
| tc-nds32.h | 120 /* Using to chain fixup with previous fixup. */ 187 /* To Save previous label fixup if existence. */ 188 struct fix *fixup; member in struct:nds32_frag_type
|
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| tc-mn10300.c | 522 /* Create a fixup for the reversed conditional branch. */ 528 /* Now create the unconditional branch + fixup to the 579 /* Create a fixup for the reversed conditional branch. */ 585 /* Now create the unconditional branch + fixup to the 625 /* Create a fixup for the reversed conditional branch. */ 631 /* Now create the unconditional branch + fixup to the 661 /* Create a fixup for the reversed conditional branch. */ 667 /* Now create the unconditional branch + fixup to the 815 /* Create a fixup for the reversed conditional branch. */ 821 /* Now create the unconditional branch + fixup to th 1018 struct mn10300_fixup fixup; local [all...] |
| tc-nds32.h | 120 /* Using to chain fixup with previous fixup. */ 187 /* To Save previous label fixup if existence. */ 188 struct fix *fixup; member in struct:nds32_frag_type
|