Searched refs:level (Results 176 - 200 of 912) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/lua/src/
H A Dlfunc.c57 UpVal *luaF_findupval (lua_State *L, StkId level) { argument
62 while (*pp != NULL && (p = *pp)->v >= level) {
64 if (p->v == level) /* found a corresponding upvalue? */
74 uv->v = level; /* current value lives in the stack */
83 void luaF_close (lua_State *L, StkId level) { argument
85 while (L->openupval != NULL && (uv = L->openupval)->v >= level) {
/freebsd-11-stable/contrib/gdb/gdb/
H A Dui-out.c45 is always available. Stack/nested level 0 is reserved for the
46 top-level result. */
54 /* The type of this level. */
71 /* The level at which each entry of the table is to be found. A row
107 int level; member in struct:ui_out
114 /* The current (inner most) level. */
118 return &uiout->levels[uiout->level];
121 /* Create a new level, of TYPE. Return the new level's index. */
129 uiout->level
774 default_begin(struct ui_out *uiout, enum ui_out_type type, int level, const char *id) argument
782 default_end(struct ui_out *uiout, enum ui_out_type type, int level) argument
886 uo_begin(struct ui_out *uiout, enum ui_out_type type, int level, const char *id) argument
897 uo_end(struct ui_out *uiout, enum ui_out_type type, int level) argument
[all...]
H A Dframe.c55 /* Level of this frame. The inner-most (youngest) frame is at level
56 0. As you move towards the outer-most (oldest) frame, the level
60 /* NOTE: cagney/2002-04-05: Perhaphs a level of ``-1'' should be
64 int level; member in struct:frame_info
89 /* The frame's low-level unwinder and corresponding cache. The
90 low-level unwinder is responsible for unwinding register values
91 for the previous frame. The low-level unwind methods are
117 /* The frame's high-level base methods, and corresponding cache.
118 The high level base methods are selected based on the frame's
182 fprintf_unfiltered (file, "level
[all...]
H A Dstack.c98 int level,
124 int level;
137 print_frame_info (p->fi, p->level, p->source, p->args);
142 and LEVEL should be its level in the stack (or -1 for level not defined).
143 This prints the level, the function executing, the arguments,
152 print_stack_frame (struct frame_info *fi, int level, int source)
157 args.level = level;
409 /* Print information about a frame for frame "fi" at level "leve
123 int level; member in struct:print_stack_frame_args
151 print_stack_frame(struct frame_info *fi, int level, int source) argument
419 print_frame_info(struct frame_info *fi, int level, int source, int args) argument
532 print_frame(struct frame_info *fi, int level, int source, int args, struct symtab_and_line sal) argument
718 int level; local
1720 int level = frame_relative_level (deprecated_selected_frame); local
2010 int level = 1; local
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlstrlib.c233 int level; /* total number of captures (finished or unfinished) */ member in struct:MatchState
257 if (l < 0 || l >= ms->level || ms->capture[l].len == CAP_UNFINISHED)
264 int level = ms->level; local
265 for (level--; level>=0; level--)
266 if (ms->capture[level].len == CAP_UNFINISHED) return level;
406 int level local
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_tparm.c464 int level; local
706 /* scan forward for %e or %; at level zero */
708 level = 0;
713 level++;
715 if (level > 0)
716 level--;
719 } else if (*cp == 'e' && level == 0)
730 /* scan forward for a %; at level zero */
732 level = 0;
737 level
[all...]
/freebsd-11-stable/sys/dev/mse/
H A Dmse.c211 sc->mode.level = 0;
340 if (sc->mode.level == 0)
348 switch (sc->mode.level) {
361 switch (((mousemode_t *)addr)->level) {
375 sc->mode.level = ((mousemode_t *)addr)->level;
376 switch (sc->mode.level) {
391 *(int *)addr = sc->mode.level;
399 sc->mode.level = *(int *)addr;
406 sc->mode.level
[all...]
/freebsd-11-stable/sbin/fsck_ffs/
H A Dgjournal.c325 freeindir(ufs2_daddr_t blk, int level) argument
337 if (level == 0)
340 freeindir(blks[i], level - 1);
357 int extblocks, i, level; local
379 for (level = SINGLE; level <= TRIPLE; level++) {
380 if (dino->di_ib[level] == 0)
382 freeindir(dino->di_ib[level], level);
[all...]
/freebsd-11-stable/sys/fs/ext2fs/
H A Dext2_htree.c69 static void ext2_htree_insert_entry_to_level(struct ext2fs_htree_lookup_level *level,
104 struct ext2fs_htree_lookup_level *level; local
111 level = &info->h_levels[idx];
112 level->h_entry++;
113 if (level->h_entry < level->h_entries +
114 ext2_htree_get_count(level->h_entries))
122 next_hash = ext2_htree_get_hash(level->h_entry);
130 if (ext2_blkatoff(vp, ext2_htree_get_block(level->h_entry) *
133 level
433 ext2_htree_insert_entry_to_level(struct ext2fs_htree_lookup_level *level, uint32_t hash, uint32_t blk) argument
456 struct ext2fs_htree_lookup_level *level; local
[all...]
/freebsd-11-stable/sys/x86/x86/
H A Dmp_x86.c177 * Add a cache level to the cache topology description.
180 add_deterministic_cache(int type, int level, int share_count) argument
191 if (level == 0 || level > MAX_CACHE_LEVELS) {
192 printf("unexpected cache level %d\n", type);
196 if (caches[level - 1].present) {
197 printf("WARNING: multiple entries for L%u data cache\n", level);
198 printf("%u => %u\n", caches[level - 1].id_shift,
201 caches[level - 1].id_shift = mask_width(share_count);
202 caches[level
235 int level; local
408 int level; local
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dmsyslog.c144 int level,
173 syslog(level, "%s", msg);
204 term_file = (level <= LOG_ERR)
346 int level,
357 addto_syslog(level, buf);
362 int level,
369 addto_syslog(level, buf);
143 addto_syslog( int level, const char * msg ) argument
345 msyslog( int level, const char * fmt, ... ) argument
361 mvsyslog( int level, const char * fmt, va_list ap ) argument
/freebsd-11-stable/contrib/unbound/util/
H A Dlog.c352 * @param level: verbose level for the message.
356 verbose(enum verbosity_value level, const char* format, ...) argument
360 if(verbosity >= level) {
361 if(level == VERB_OPS)
363 else if(level == VERB_DETAIL)
424 void log_buf(enum verbosity_value level, const char* msg, sldns_buffer* buf) argument
426 if(verbosity < level)
428 log_hex_f(level, msg, sldns_buffer_begin(buf), sldns_buffer_limit(buf));
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dctrl_iface_unix.c56 int level; member in struct:ctrl_iface_msg
66 int level, const char *buf,
82 int level = MSG_MSGDUMP; local
85 level = MSG_EXCESSIVE;
95 wpa_printf(level,
121 char *level)
123 wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
125 return ctrl_iface_level(&priv->ctrl_dst, from, fromlen, level);
318 gpriv->sock, &gpriv->ctrl_dst, msg->level,
339 &priv->ctrl_dst, msg->level,
118 wpa_supplicant_ctrl_iface_level(struct ctrl_iface_priv *priv, struct sockaddr_storage *from, socklen_t fromlen, char *level) argument
375 wpas_ctrl_msg_queue(struct dl_list *queue, struct wpa_supplicant *wpa_s, int level, enum wpa_msg_type type, const char *txt, size_t len) argument
415 wpa_supplicant_ctrl_iface_msg_cb(void *ctx, int level, enum wpa_msg_type type, const char *txt, size_t len) argument
886 wpa_supplicant_ctrl_iface_send(struct wpa_supplicant *wpa_s, const char *ifname, int sock, struct dl_list *ctrl_dst, int level, const char *buf, size_t len, struct ctrl_iface_priv *priv, struct ctrl_iface_global_priv *gp) argument
[all...]
/freebsd-11-stable/sys/contrib/zlib/
H A Dzlib.h228 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
235 The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9:
239 equivalent to level 6).
242 memory, Z_STREAM_ERROR if level is not a valid compression level, or
539 int level,
699 will leave the compression level and any other attributes that may have been
707 int level,
710 Dynamically update the compression level and compression strategy. The
711 interpretation of level an
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcache-membuffer.c82 * being referenced from the respective cache level.
84 * Insertion can occur at only one, sliding position per cache level. It is
549 * list of used entries per cache level.
655 /* Per-cache level header structure. Instances of this are members of
681 /* First offset in the caches DATA buffer that belongs to this level.
685 /* Size of data buffer allocated to this level in bytes. Must be > 0.
753 * not need to know the cache level of a specific item. Cache levels
757 /* First cache level, i.e. most insertions happen here. Very large
764 /* Second cache level, i.e. data evicted from L1 will be added here
1112 /* Return the cache level o
1126 chain_entry(svn_membuffer_t *cache, cache_level_t *level, entry_t *entry, apr_uint32_t idx) argument
1177 unchain_entry(svn_membuffer_t *cache, cache_level_t *level, entry_t *entry, apr_uint32_t idx) argument
1218 cache_level_t *level = get_cache_level(cache, entry); local
1304 cache_level_t *level = get_cache_level(cache, entry); local
1523 cache_level_t *level local
1560 cache_level_t *level = get_cache_level(cache, entry); local
2202 cache_level_t *level; local
[all...]
/freebsd-11-stable/sys/dev/vt/
H A Dvt_sysmouse.c387 mode->level = sysmouse_level;
389 switch (mode->level) {
419 int level; local
421 level = *(int *)data;
422 if (level != 0 && level != 1)
425 sysmouse_level = level;
431 switch (mode->level) {
437 sysmouse_level = mode->level;
/freebsd-11-stable/sbin/dump/
H A Ditime.c136 msg("Looking for name %s in dumpdates = %s for level = %d\n",
137 fname, dumpdates, level);
150 if (ddp->dd_level >= level)
187 if (dtwalk->dd_level != level)
200 dtwalk->dd_level = level;
217 msg("level %d dump on %s", level, tmsg);
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_dispatch_hier.h60 // Append a level of the hierarchy
440 int num_active; // number of threads active in this level
497 // Attempt to grab next iteration range for this level
511 ("kmp_hier_t.next_recurse(): T#%d (%d) using top level sh\n",
740 // For hand threading, the sh buffer on the lowest level is only ever
741 // modified and read by the master thread on that level. Because of
783 } // if master thread of lowest unit level
849 // Returns the type of topology unit given level
850 kmp_hier_layer_e get_type(int level) const {
851 KMP_DEBUG_ASSERT(level >
[all...]
/freebsd-11-stable/contrib/groff/src/preproc/eqn/
H A Dover.cpp193 void over_box::check_tabs(int level) argument
195 num->check_tabs(level + 1);
196 den->check_tabs(level + 1);
H A Dbox.cpp454 void box_list::list_check_tabs(int level) argument
457 p[i]->check_tabs(level);
493 void pointer_box::check_tabs(int level) argument
495 p->check_tabs(level);
557 void tab_box::check_tabs(int level) argument
559 if (level > 0) {
560 error("tabs allowed only at outermost level");
/freebsd-11-stable/sys/dev/cxgbe/
H A Dt4_sched.c80 if (p->level == SCHED_CLASS_LEVEL_CL_RL)
82 else if (p->level == SCHED_CLASS_LEVEL_CL_WRR)
84 else if (p->level == SCHED_CLASS_LEVEL_CH_RL)
89 if (p->level == SCHED_CLASS_LEVEL_CL_RL) {
112 if (p->level == SCHED_CLASS_LEVEL_CL_RL ||
113 p->level == SCHED_CLASS_LEVEL_CH_RL) {
149 MPASS(p->level == SCHED_CLASS_LEVEL_CL_WRR);
163 if (p->level == SCHED_CLASS_LEVEL_CL_RL ||
164 p->level == SCHED_CLASS_LEVEL_CL_WRR) {
181 if (p->level
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp133 void ThreadSpec::GetDescription(Stream *s, lldb::DescriptionLevel level) const {
135 if (level == eDescriptionLevelBrief) {
139 if (level == eDescriptionLevelBrief) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpression.h55 /// \param[in] level
56 /// The level of verbosity to use.
68 void GetDescription(Stream *s, lldb::DescriptionLevel level,
216 bool DumpLocationForAddress(Stream *s, lldb::DescriptionLevel level,
242 /// \param[in] level
243 /// The level of detail to use in pretty-printing.
249 lldb::DescriptionLevel level, ABI *abi) const;
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Dgssapi.c74 gss_check_prot(void *app_data, int level) argument
76 if(level == prot_confidential)
82 gss_decode(void *app_data, void *buf, int len, int level) argument
108 gss_overhead(void *app_data, int level, int len) argument
115 gss_encode(void *app_data, void *from, int length, int level, void **to) argument
126 level == prot_private,
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dgssapi.c74 gss_check_prot(void *app_data, int level) argument
76 if(level == prot_confidential)
82 gss_decode(void *app_data, void *buf, int len, int level) argument
108 gss_overhead(void *app_data, int level, int len) argument
115 gss_encode(void *app_data, void *from, int length, int level, void **to) argument
126 level == prot_private,

Completed in 505 milliseconds

1234567891011>>