Searched refs:saved (Results 51 - 75 of 82) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DItaniumMangle.cpp262 void pop(FunctionTypeDepthState saved) { argument
263 assert(getDepth() == saved.getDepth() + 1);
264 Bits = saved.Bits;
2862 FunctionTypeDepthState saved = FunctionTypeDepth.push(); local
2868 FunctionTypeDepth.pop(saved);
2877 FunctionTypeDepthState saved = FunctionTypeDepth.push(); local
2903 FunctionTypeDepth.pop(saved);
2930 FunctionTypeDepth.pop(saved);
4904 FunctionTypeDepthState saved = TrackReturnTypeTags.FunctionTypeDepth.push();
4908 TrackReturnTypeTags.FunctionTypeDepth.pop(saved);
[all...]
/freebsd-11-stable/usr.sbin/syslogd/
H A Dsyslogd.c100 #define MAXSVLINE MAXLINE /* maximum saved line length */
1542 char saved[MAXSVLINE]; local
1593 savedlen = snprintf(saved, sizeof(saved),
1654 strcmp(saved, f->f_prevline) == 0) {
1677 static_assert(sizeof(f->f_prevline) == sizeof(saved),
1678 "Space to store saved line incorrect");
1679 (void)strcpy(f->f_prevline, saved);
/freebsd-11-stable/contrib/gcc/
H A Dunwind-dw2.c157 /* Get the value of register INDEX as saved in CONTEXT. */
178 /* This will segfault if the register hasn't been saved. */
194 /* Get the value of the CFA as saved in CONTEXT. */
202 /* Overwrite the saved value for register INDEX in CONTEXT with VAL. */
231 /* Get the pointer to a register INDEX as saved in CONTEXT. */
242 /* Set the pointer to a register INDEX as saved in CONTEXT. */
253 /* Overwrite the saved value for register INDEX in CONTEXT with VAL. */
930 register was saved somewhere. */
1174 char saved[PRE_GCC3_DWARF_FRAME_REGISTERS+1];
1204 state_in->saved[re
1168 char saved[PRE_GCC3_DWARF_FRAME_REGISTERS+1]; member in struct:frame_state
[all...]
H A Dc-common.c681 tree saved = NULL_TREE;
689 saved = tree_cons (decl, build_int_cst (NULL_TREE, ix), saved);
693 if (saved || saved_function_name_decls)
696 saved_function_name_decls = tree_cons (saved, NULL_TREE,
731 /* We had saved values, restore them. */ local
732 tree saved;
734 for (saved = TREE_PURPOSE (stack); saved; saved
680 tree saved = NULL_TREE; local
[all...]
H A Ddwarf2out.c846 If SREG is -1, the register is saved at OFFSET from the CFA;
847 otherwise it is saved in SREG. */
897 ??? Perhaps we should note in the CIE where windows are saved (instead of
1189 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
1195 /* A list of registers saved in other registers.
1205 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1206 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1272 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1274 said that some other register is saved in, and for which we now
1320 /* What register, if any, is currently saved i
7731 int *saved; local
[all...]
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dexception.S1132 saved
1142 saved
1777 saved
1787 saved
1797 saved
1810 saved
1820 saved
1830 saved
1923 saved
2249 * Setup %tstate for return, change the saved cw
[all...]
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwn_phy_g.c2846 * Restore saved RF/PHY registers
2916 uint16_t saved = 0xffff; local
2956 if (nrssi < 31 && saved == 0xffff)
2957 saved = i;
2959 if (saved == 0xffff)
2960 saved = 4;
2998 if (nrssi > -31 && saved == 0xffff)
2999 saved = i;
3001 if (saved == 0xffff)
3002 saved
[all...]
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dsol2-c1.asm83 ! now conveniently saved on the stack as the argument to pass to
H A Dsol2-gc1.asm86 ! now conveniently saved on the stack as the argument to pass to
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Ddirectives.c1272 _cpp_restore_pragma_names (cpp_reader *pfile, char **saved) argument
1274 (void) restore_registered_pragmas (pfile, pfile->pragmas, saved);
1275 free (saved);
/freebsd-11-stable/stand/i386/boot0/
H A Dboot0.S442 * Set %dl with the drive number saved in byte 0.
447 movb (%si),%dl # Drive number, saved above
/freebsd-11-stable/stand/pc98/btx/btx/
H A Dbtx.S405 popl %ds # saved
669 cmpl $0,MEM_ESPR-0x08 # Leave saved regs unchanged
690 * For V86 calls, copy the saved seg regs on the real mode stack back
692 * saved eflags on the kernel stack based on the flags from the user.
1010 xchg %ax,4(%bp) # Swap saved %ax,%bx with
/freebsd-11-stable/stand/pc98/cdboot/
H A Dcdboot.S525 pop %eax # Restore saved entry point
652 ff.match: add $2,%sp # Discard saved %si
/freebsd-11-stable/stand/i386/btx/btx/
H A Dbtx.S379 popl %ds # saved
643 cmpl $0,MEM_ESPR-0x08 # Leave saved regs unchanged
664 * For V86 calls, copy the saved seg regs on the real mode stack back
666 * saved eflags on the kernel stack based on the flags from the user.
988 xchg %ax,4(%bp) # Swap saved %ax,%bx with
/freebsd-11-stable/contrib/gcc/config/arm/
H A Darm.c836 callee-saved registers, there is no need to tell the compiler
1431 never return, and many memory cycles can be saved by not storing
1513 is saved on the stack, we can use a pre-incrementing stack load. */
1552 /* ... and that there are no call-saved registers in r0-r2
1578 /* If there are saved registers but the LR isn't saved, then we need
3382 /* Before going on to check the call-saved registers we can try a couple
3412 /* Otherwise look for a call-saved register that is going to be pushed. */
9332 which are call saved and which are used by this function. */
9372 saved o
9488 int saved; local
10493 int saved; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cg.c1228 uintmax_t saved = dnp->dn_args->dn_value; local
1256 dnp->dn_args->dn_value = prp->pr_mapping[saved];
1260 dnp->dn_args->dn_value = saved;
1312 * simply generate code for the parse tree saved in the identifier's din_root,
1979 * has already had code generated for it and saved in di_id.
H A Ddt_printf.c411 dtrace_optval_t saved = dtp->dt_options[DTRACEOPT_STACKINDENT]; local
451 dtp->dt_options[DTRACEOPT_STACKINDENT] = saved;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1332 AbstractState saved) {
1333 Abstract = saved.OldValue;
1335 assert(saved.OldPlaceholdersSize == PlaceholderAddresses.size() &&
1331 validateAndPopAbstract(llvm::Constant *C, AbstractState saved) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc184 // On OS X the executable path is saved to the stack by dyld. Reading it
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersSave.S769 @ Instead, VFP registers are demand saved by logic external to __unw_getcontext.
/freebsd-11-stable/contrib/sendmail/src/
H A Dparseaddr.c288 char saved = *addr; local
293 *addr = saved;
471 ** pvpbuf -- place to put the saved text -- note that
986 ** matched is saved away in the match vector (pointed to by 'mvp').
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdbarch.sh1202 be saved in a local static variable.
/freebsd-11-stable/contrib/gperf/
H A Dconfigure207 echo positional parameters were not saved.
322 echo positional parameters were not saved.
411 echo positional parameters were not saved.
1537 # Check that the precious variables saved in the cache have kept the same
/freebsd-11-stable/contrib/gperf/doc/
H A Dconfigure207 echo positional parameters were not saved.
322 echo positional parameters were not saved.
411 echo positional parameters were not saved.
1540 # Check that the precious variables saved in the cache have kept the same
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp2556 // that will be saved into the buffer at the parametrised offset. Return value
2558 // saved to the file as the ElementHeader struct followed by offsets to the
4780 bool saved = runtime->SaveAllocation(result.GetOutputStream(), id, path, local
4783 if (saved)

Completed in 769 milliseconds

1234