Searched refs:level (Results 1 - 25 of 1203) sorted by relevance

1234567891011>>

/src/sys/external/bsd/drm/dist/scripts/
H A Ddrm-scripts-gentree.pl104 my $level=0;
108 my @dbgargs = \($level, %state, %if, $line);
110 my $level = ${$_[1][0]};
111 printf STDERR ("/* BP %4d $_[0] state=$_[1][1]->{$level} if=$_[1][2]->{$level} level=$level (${$_[1][3]}) */\n", $.) if $DEBUG;
126 $state{$level} = "ifother";
127 $if{$level} = 1;
130 $level
[all...]
/src/sys/arch/sparc64/sparc64/
H A Dintreg.h57 void send_softint(int cpu, int level, struct intrhand *ih);
/src/sys/arch/ia64/include/
H A Disa_machdep.h34 isa_intr_establish(isa_chipset_tag_t ic, int irq, int type, int level, argument
37 return intr_establish(irq, type, level, ih_func, ih_arg);
41 #define isa_intr_establish_xname(ic, irq, type, level, fun, arg, xname) \
42 isa_intr_establish(ic, irq, type, level, fun, arg)
/src/lib/libc/stdlib/
H A Dtwalk.c29 cmp_fn_t action, int level)
35 (*action)(root, leaf, level);
37 (*action)(root, preorder, level);
39 trecurse(root->llink, action, level + 1);
40 (*action)(root, postorder, level);
42 trecurse(root->rlink, action, level + 1);
43 (*action)(root, endorder, level);
28 trecurse(const node_t * root,cmp_fn_t action,int level) argument
/src/sys/arch/aarch64/aarch64/
H A Dcpufunc.c58 extract_cacheunit(int level, bool insn, int cachetype, argument
64 /* select and extract level N data cache */
65 reg_csselr_el1_write(__SHIFTIN(level, CSSELR_LEVEL) |
73 cunit = &cacheinfo[level].icache;
75 cunit = &cacheinfo[level].dcache;
106 int level, cachetype; local in function:aarch64_getcacheinfo
134 for (level = 0, clidr = reg_clidr_el1_read();
135 level < MAX_CACHE_LEVEL; level++, clidr >>= 3) {
145 extract_cacheunit(level, tru
226 prt_cache(device_t self,struct aarch64_cache_info * cinfo,int level) argument
302 int level; local in function:aarch64_printcacheinfo
312 ln_dcache_wb_all(int level,struct aarch64_cache_unit * cunit) argument
330 ln_dcache_wbinv_all(int level,struct aarch64_cache_unit * cunit) argument
348 ln_dcache_inv_all(int level,struct aarch64_cache_unit * cunit) argument
372 int level; local in function:aarch64_dcache_wbinv_all
391 int level; local in function:aarch64_dcache_inv_all
410 int level; local in function:aarch64_dcache_wb_all
[all...]
/src/lib/librefuse/
H A Dfuse_log.h54 typedef void (*fuse_log_func_t)(enum fuse_log_level level, const char *fmt, va_list ap);
57 void fuse_log(enum fuse_log_level level, const char *fmt, ...) __printflike(2, 3);
/src/usr.bin/msgc/
H A Dmsgscan.l50 static int level; /* For nested comments. */
74 "/*" { level = 1; BEGIN COMMENT; }
76 <COMMENT>"/*" { level++; }
78 <COMMENT>"*/" { if (level-- == 1) BEGIN 0; }
86 "{" { level = 1; BEGIN BRACE; }
92 <BRACE>"{" { buff_add_ch(yytext[0]); level++; }
94 <BRACE>"}" { if (level-- == 1) {
/src/sys/arch/arm/ofw/
H A Dofw_irqhandler.c112 int level; local in function:irq_claim
133 /* Make sure the level is valid */
173 level = ptr->ih_level - 1;
175 if (ptr->ih_level - 1 < level)
176 level = ptr->ih_level - 1;
179 while (level >= 0) {
180 irqmasks[level] |= (1 << irq);
181 --level;
209 int level; local in function:irq_release
255 for (level
291 intr_claim(int irq,int level,int (* ih_func)(void *),void * ih_arg,const char * group,const char * name) argument
[all...]
/src/sys/arch/x86/x86/
H A Dx86_softintr.c166 int irq, level; local in function:x86_intr_calculatemasks
185 /* Then figure out which IRQs use each level. */
186 for (level = 0; level < NIPL; level++) {
189 if (intrlevel[irq] & (1ULL << level))
191 ci->ci_imask[level] = irqs | unusedirqs;
194 for (level = 0; level<(NIPL-1); level
246 softint_init_md(lwp_t * l,u_int level,uintptr_t * machdep) argument
[all...]
H A Dodcm.c61 int level; member in struct:__anonf4e79c2c0108
65 { .level = 7, .reg = 0, .errata = 0 },
66 { .level = 6, .reg = 7, .errata = 0 },
67 { .level = 5, .reg = 6, .errata = 0 },
68 { .level = 4, .reg = 5, .errata = 0 },
69 { .level = 3, .reg = 4, .errata = 0 },
70 { .level = 2, .reg = 3, .errata = 0 },
71 { .level = 1, .reg = 2, .errata = 0 },
72 { .level = 0, .reg = 1, .errata = 0 }
197 sc->sc_names_len = state[0].level * (sizeo
285 int level, old, err; local in function:odcm_sysctl_helper
356 odcm_state_set(int level) argument
[all...]
/src/games/hunt/huntd/
H A Dsupport.c42 complain(int level, const char *fmt, ...) argument
54 syslog(level, "%s", buf);
56 (void)level;
/src/usr.bin/ctags/
H A DC.c65 int level; /* brace level */ local in function:c_entries
68 int t_level; /* typedef's brace level */
73 sp = tok; token = t_def = NO; t_level = -1; level = 0; lineno = 1;
88 ++level;
92 * if level goes below zero, try and fix
95 if (--level < 0)
96 level = 0;
150 * level zero indicates a function.
159 if (!level
266 int level = 0; /* for matching '()' */ local in function:func_entry
[all...]
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dvf610.dtsi9 next-level-cache = <&L2>;
17 cache-level = <2>;
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
H A Dnouveau_nvkm_core_option.c102 int mode = 1, level = CONFIG_NOUVEAU_DEBUG_DEFAULT; local in function:nvkm_dbgopt
115 level = NV_DBG_FATAL;
117 level = NV_DBG_ERROR;
119 level = NV_DBG_WARN;
121 level = NV_DBG_INFO;
123 level = NV_DBG_DEBUG;
125 level = NV_DBG_TRACE;
127 level = NV_DBG_PARANOIA;
129 level = NV_DBG_SPAM;
138 return level;
[all...]
/src/sys/arch/sun3/sun3/
H A Dintreg.c120 isr_soft_request(int level)
124 if ((level < _IPL_SOFT_LEVEL_MIN) || (level > _IPL_SOFT_LEVEL_MAX))
127 bit = 1 << level;
132 isr_soft_clear(int level)
136 if ((level < _IPL_SOFT_LEVEL_MIN) || (level > _IPL_SOFT_LEVEL_MAX))
139 bit = 1 << level;
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/rockchip/
H A Drockchip-pinconf.dtsi23 pcfg_pull_none_drv_level_0: pcfg-pull-none-drv-level-0 {
29 pcfg_pull_none_drv_level_1: pcfg-pull-none-drv-level-1 {
35 pcfg_pull_none_drv_level_2: pcfg-pull-none-drv-level-2 {
41 pcfg_pull_none_drv_level_3: pcfg-pull-none-drv-level-3 {
47 pcfg_pull_none_drv_level_4: pcfg-pull-none-drv-level-4 {
53 pcfg_pull_none_drv_level_5: pcfg-pull-none-drv-level-5 {
59 pcfg_pull_none_drv_level_6: pcfg-pull-none-drv-level-6 {
65 pcfg_pull_none_drv_level_7: pcfg-pull-none-drv-level-7 {
71 pcfg_pull_none_drv_level_8: pcfg-pull-none-drv-level-8 {
77 pcfg_pull_none_drv_level_9: pcfg-pull-none-drv-level
[all...]
/src/sys/arch/prep/include/
H A Disa_machdep.h56 #define isa_intr_establish(ic, irq, type, level, fun, arg) \
57 genppc_isa_intr_establish(ic, irq, type, level, fun, arg)
58 #define isa_intr_establish(ic, irq, type, level, fun, arg) \
59 genppc_isa_intr_establish(ic, irq, type, level, fun, arg)
60 #define isa_intr_establish_xname(ic, irq, type, level, fun, arg, xname) \
61 genppc_isa_intr_establish(ic, irq, type, level, fun, arg)
/src/usr.bin/make/unit-tests/
H A Dvarname-dot-make-level.exp0 level 1: variable 0, env 1
2 level 2: variable 1, env 2
3 level 3: variable 2, env 3
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/
H A Dmsm8996-v3.0.dtsi27 opp-level = <7>;
32 opp-level = <6>;
37 opp-level = <5>;
42 opp-level = <4>;
47 opp-level = <3>;
52 opp-level = <3>;
57 opp-level = <3>;
/src/usr.bin/menuc/
H A Dscan.l43 static int level; /* For nested comments. */
143 "/*" { level = 1; comstart = line_no; BEGIN COMMENT; }
145 <COMMENT>"/*" { level++; }
147 <COMMENT>"*/" { if (level-- == 1) BEGIN 0; }
159 "{" { level = 1; BEGIN BRACE; }
161 <BRACE>"{" { buff_add_ch(yytext[0]); level++; }
163 <BRACE>"}" { if (level-- == 1) {
/src/sys/external/bsd/drm2/dist/drm/i915/
H A Di915_utils.c28 __i915_printk(struct drm_i915_private *dev_priv, const char *level, argument
36 printf("%s: %s ", device_xname(dev_priv->drm.dev), level);
40 if (strncmp(level, KERN_ERR, strlen(KERN_ERR)) == 0 &&
46 bool is_error = level[1] <= KERN_ERR[1];
47 bool is_debug = level[1] == KERN_DEBUG[1];
60 dev_printk(level, kdev, "%pV", &vaf);
62 dev_printk(level, kdev, "[" DRM_NAME ":%ps] %pV",
/src/sys/arch/riscv/riscv/
H A Dsoftint_machdep.c71 softint_init_md(lwp_t *l, u_int level, uintptr_t *machdep) argument
73 lwp_t ** lp = &l->l_cpu->ci_softlwps[level];
76 *machdep = 1 << SOFTINT2IPL(level);
77 KASSERT(level != SOFTINT_CLOCK || *machdep == (1 << (IPL_SOFTCLOCK - IPL_SOFTCLOCK)));
78 KASSERT(level != SOFTINT_BIO || *machdep == (1 << (IPL_SOFTBIO - IPL_SOFTCLOCK)));
79 KASSERT(level != SOFTINT_NET || *machdep == (1 << (IPL_SOFTNET - IPL_SOFTCLOCK)));
80 KASSERT(level != SOFTINT_SERIAL || *machdep == (1 << (IPL_SOFTSERIAL - IPL_SOFTCLOCK)));
/src/sys/arch/arm/iomd/
H A Diomd_irqhandler.c134 int level; local in function:irq_claim
156 /* Make sure the level is valid */
207 level = ptr->ih_level - 1;
210 if (ptr->ih_level - 1 < level)
211 level = ptr->ih_level - 1;
217 while (max_level >=0 && max_level > level) {
221 while (level >= 0) {
222 irqmasks[level] |= (1 << irq);
223 --level;
252 int level; local in function:irq_release
344 intr_claim(int irq,int level,const char * name,int (* ih_func)(void *),void * ih_arg) argument
[all...]
/src/usr.sbin/installboot/
H A Dffs.c136 } level[LEVELS]; local in function:ffs_find_disk_blocks_ufs1
175 level[0].blknums = &inode->di_db[0];
176 level[0].blkcount = UFS_NDADDR;
177 level[1].blknums = &inode->di_ib[0];
178 level[1].blkcount = 1;
179 level[2].blknums = &inode->di_ib[1];
180 level[2].blkcount = 1;
181 level[3].blknums = &inode->di_ib[2];
182 level[3].blkcount = 1;
189 * level, mov
273 } level[LEVELS]; local in function:ffs_find_disk_blocks_ufs2
[all...]
/src/sys/dev/isa/
H A Disa_stub.c49 int level, int (*ih_fun)(void *), void *ih_arg, const char *xname);
54 int level, int (*ih_fun)(void *), void *ih_arg, const char *xname)
56 return isa_intr_establish(ic, irq, type, level, ih_fun, ih_arg);
53 default_isa_intr_establish_xname(isa_chipset_tag_t ic,int irq,int type,int level,int (* ih_fun)(void *),void * ih_arg,const char * xname) argument

Completed in 20 milliseconds

1234567891011>>