Home
last modified time | relevance | path

Searched refs:statics (Results 1 – 25 of 54) sorted by relevance

123

/NextBSD/contrib/top/
HDdisplay.c157 int display_updatecpus(statics) in display_updatecpus() argument
159 struct statics *statics; in display_updatecpus()
169 num_cpus = statics->ncpus;
189 int display_init(statics) in display_init() argument
191 struct statics *statics; in display_init()
199 lines = display_updatecpus(statics);
205 procstate_names = statics->procstate_names;
209 cpustate_names = statics->cpustate_names;
211 swap_names = statics->swap_names;
215 lcpustates = (int *)malloc(num_cpustates * sizeof(int) * statics->ncpus);
[all …]
HDtop.c160 struct statics statics; local
480 if (machine_init(&statics, do_unames) == -1)
489 if ((order_index = string_index(order_name, statics.order_names)) == -1)
496 pp = statics.order_names;
522 if ((max_topn = display_init(&statics)) == -1)
1074 if ((i = string_index(tempbuf2, statics.order_names)) == -1)
1152 max_topn = display_updatecpus(&statics);
HDm-template67 machine_init(statics)
69 struct statics *statics;
HDmachine.h14 struct statics struct
HDPorting54 The statics struct is filled in by machine_init. Each item is a
58 struct statics
81 _names array in the statics structure. Furthermore, if an entry in a
95 int machine_init(struct statics *)
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBBlock.cpp268 bool statics, in GetVariables() argument
293 add_variable = statics; in GetVariables()
329 bool statics) in GetVariables() argument
355 add_variable = statics; in GetVariables()
HDSBVariablesOptions.cpp173 SBVariablesOptions::SetIncludeStatics (bool statics) in SetIncludeStatics() argument
175 m_opaque_ap->SetIncludeStatics(statics); in SetIncludeStatics()
HDSBFrame.cpp1079 bool statics, in GetVariables() argument
1094 options.SetIncludeStatics(statics); in GetVariables()
1107 bool statics, in GetVariables() argument
1117 options.SetIncludeStatics(statics); in GetVariables()
1136 const bool statics = options.GetIncludeStatics(); in GetVariables() local
1146 statics, in_scope_only, in GetVariables()
1176 add_variable = statics; in GetVariables()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/API/
HDSBBlock.h76 bool statics,
83 bool statics);
HDSBFrame.h162 bool statics,
168 bool statics,
/NextBSD/usr.bin/top/
HDmachine.c299 machine_init(struct statics *statics, char do_unames) in machine_init() argument
357 statics->procstate_names = procstatenames; in machine_init()
358 statics->cpustate_names = cpustatenames; in machine_init()
359 statics->memory_names = memorynames; in machine_init()
361 statics->arc_names = arcnames; in machine_init()
363 statics->arc_names = NULL; in machine_init()
364 statics->swap_names = swapnames; in machine_init()
366 statics->order_names = ordernames; in machine_init()
396 statics->ncpus = ncpus; in machine_init()
/NextBSD/contrib/binutils/opcodes/
HDmips-dis.c1823 int amask, args, statics; in print_mips16_insn_arg() local
1836 statics = 0; in print_mips16_insn_arg()
1841 statics = 4; in print_mips16_insn_arg()
1846 statics = amask & 3; in print_mips16_insn_arg()
1895 if (statics == 1) in print_mips16_insn_arg()
1897 else if (statics > 0) in print_mips16_insn_arg()
1899 mips_gpr_names[7 - statics + 1], in print_mips16_insn_arg()
/NextBSD/contrib/pam_modules/pam_passwdqc/
HDpam_passwdqc.spec49 - Permit for stacking of more than one instance of this module (no statics).
/NextBSD/contrib/gcc/
HDc.opt746 fthreadsafe-statics
748 -fno-threadsafe-statics Do not generate thread-safe code for initializing local statics
HDconfig.in28 destructors for local statics and global objects. This is essential for
/NextBSD/contrib/binutils/binutils/
HDstabs.c2013 bfd_boolean statics; in parse_stab_struct_type() local
2025 || ! parse_stab_struct_fields (dhandle, info, pp, &fields, &statics) in parse_stab_struct_type()
2031 if (! statics in parse_stab_struct_type()
/NextBSD/contrib/binutils/gas/config/
HDtc-mips.c10519 int args = 0, statics = 0, sregs = 0; in mips16_ip() local
10577 statics |= 1 << (reg1 - 4); in mips16_ip()
10600 if (args & statics) in mips16_ip()
10605 else if (statics == 0xf) in mips16_ip()
10622 while (statics & 0x8) in mips16_ip()
10624 statics = (statics << 1) & 0xf; in mips16_ip()
10627 if (statics != 0) in mips16_ip()
/NextBSD/contrib/gcc/cp/
HDChangeLog-1997835 Lose DECL_C_STATIC and DECL_PUBLIC. Don't pretend statics are public.
1355 * decl.c (cp_finish_decl): If #p i/i, put inline statics in the
1544 * decl.c (cp_finish_decl): Only warn about user-defined statics.
1672 * method.c (hack_identifier): Convert class statics from
1790 statics undefined.
HDChangeLog-1996858 * decl2.c (finish_file): Emit any statics that weren't already.
1228 (joust): Handle comparing statics and non-statics.
3474 (finish_file): Call it to do interface handling for statics.
3478 * decl2.c (finish_file): Don't emit statics we can't generate.
HDChangeLog-19991202 local statics ...
1222 local statics if we don't really have them.
2073 statics actually occur.
5931 (finish_file): Handle template statics properly.
6187 * decl2.c (setup_initp): Give statics with no priority the default
6190 non-prioritized statics.
HDdecl.c847 VEC(tree,gc) *statics = level->static_decls; in wrapup_globals_for_namespace()
848 tree *vec = VEC_address (tree, statics); in wrapup_globals_for_namespace()
849 int len = VEC_length (tree, statics); in wrapup_globals_for_namespace()
/NextBSD/contrib/llvm/tools/clang/include/clang/Driver/
HDOptions.td846 def fno_threadsafe_statics : Flag<["-"], "fno-threadsafe-statics">, Group<f_Group>,
847 …Flags<[CC1Option]>, HelpText<"Do not emit code to make initialization of local statics thread safe…
1009 def fthreadsafe_statics : Flag<["-"], "fthreadsafe-statics">, Group<f_Group>;
/NextBSD/contrib/libstdc++/
DChangeLog-1998764 (these still need work: must be init'd before user statics.)
/NextBSD/contrib/gcc/doc/
HDcfg.texi375 statics and heuristics.
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/dtrace/
HDdtrace.c10452 dtrace_statvar_t **statics; local
10461 statics = kmem_zalloc(newsize, KM_SLEEP);
10464 bcopy(*svarp, statics, oldsize);
10468 *svarp = statics;

123