HomeSort by: relevance | last modified time | path
    Searched refs:level (Results 1 - 25 of 1211) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/drm/dist/scripts/
drm-scripts-gentree.pl 104 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/
intreg.h 57 void send_softint(int cpu, int level, struct intrhand *ih);
  /src/sys/arch/ia64/include/
isa_machdep.h 34 isa_intr_establish(isa_chipset_tag_t ic, int irq, int type, int level,
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/
twalk.c 29 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);
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
arm-realview-eb-a9mp.dts 42 next-level-cache = <&L2>;
49 next-level-cache = <&L2>;
56 next-level-cache = <&L2>;
63 next-level-cache = <&L2>;
arm-realview-eb-11mp.dts 46 next-level-cache = <&L2>;
53 next-level-cache = <&L2>;
60 next-level-cache = <&L2>;
67 next-level-cache = <&L2>;
bcm4708.dtsi 31 next-level-cache = <&L2>;
38 next-level-cache = <&L2>;
vf610.dtsi 9 next-level-cache = <&L2>;
17 cache-level = <2>;
  /src/sys/arch/aarch64/aarch64/
cpufunc.c 58 extract_cacheunit(int level, bool insn, int cachetype,
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
128 * CLIDR - Cache Level ID Register
134 for (level = 0, clidr = reg_clidr_el1_read();
135 level < MAX_CACHE_LEVEL; level++, clidr >>= 3)
302 int level; local in function:aarch64_printcacheinfo
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/
fuse_log.h 54 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/
msgscan.l 50 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/
ofw_irqhandler.c 112 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 = 0; level < NIPL; ++level
    [all...]
  /src/sys/arch/x86/x86/
x86_softintr.c 166 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++
    [all...]
  /src/games/hunt/huntd/
support.c 42 complain(int level, const char *fmt, ...)
54 syslog(level, "%s", buf);
56 (void)level;
  /src/usr.bin/ctags/
C.c 65 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 && token)
266 int level = 0; \/* for matching '()' *\/ local in function:func_entry
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_option.c 102 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/
intreg.c 120 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/
rockchip-pinconf.dtsi 23 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-9
    [all...]
  /src/sys/arch/prep/include/
isa_machdep.h 56 #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/
varname-dot-make-level.exp 0 level 1: variable 0, env 1
2 level 2: variable 1, env 2
3 level 3: variable 2, env 3
7 make: Cannot override read-only global variable ".MAKE.LEVEL.ENV" with a command line variable
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/
msm8996-v3.0.dtsi 27 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/
scan.l 43 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/
i915_utils.c 28 __i915_printk(struct drm_i915_private *dev_priv, const char *level,
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/
softint_machdep.c 71 softint_init_md(lwp_t *l, u_int level, uintptr_t *machdep)
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/
iomd_irqhandler.c 134 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
    [all...]

Completed in 20 milliseconds

1 2 3 4 5 6 7 8 91011>>