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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/fs/v7fs/
v7fs_datablock.h 47 int level; /* direct, index1, index2, index3 */ member in struct:v7fs_daddr_map
v7fs_datablock.h 47 int level; /* direct, index1, index2, index3 */ member in struct:v7fs_daddr_map
  /src/usr.sbin/inetd/
ipsec.c 128 int level; local in function:ipsecsetup0
135 level = IPPROTO_IP;
140 level = IPPROTO_IPV6;
151 if (commit && setsockopt(fd, level, opt,
ipsec.c 128 int level; local in function:ipsecsetup0
135 level = IPPROTO_IP;
140 level = IPPROTO_IPV6;
151 if (commit && setsockopt(fd, level, opt,
  /src/usr.bin/indent/
parse.c 59 int level = 0; local in function:left_justify_decl_level
62 level++;
63 return level;
parse.c 59 int level = 0; local in function:left_justify_decl_level
62 level++;
63 return level;
  /src/include/
ftw.h 53 int level; member in struct:FTW
ftw.h 53 int level; member in struct:FTW
  /src/lib/libc/db/btree/
bt_search.c 158 int level; local in function:__bt_snext
180 for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
196 while (level--) {
197 /* Push the next level down onto the stack. */
205 /* Get the next level down. */
235 int level; local in function:__bt_sprev
258 for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
273 while (level--)
    [all...]
bt_search.c 158 int level; local in function:__bt_snext
180 for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
196 while (level--) {
197 /* Push the next level down onto the stack. */
205 /* Get the next level down. */
235 int level; local in function:__bt_sprev
258 for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
273 while (level--)
    [all...]
  /src/sys/dev/mvme/
clmpcc_pcctwo.c 115 int level = pa->pa_ipl; local in function:clmpcc_pcctwo_attach
119 level = pa->pa_ipl;
131 sc->sc_evcnt = pcctwointr_evcnt(level);
137 pcctwointr_establish(PCCTWOV_SCC_RX, clmpcc_rxintr, level, sc, NULL);
138 pcctwointr_establish(PCCTWOV_SCC_RX_EXCEP, clmpcc_rxintr, level, sc,
140 pcctwointr_establish(PCCTWOV_SCC_TX, clmpcc_txintr, level, sc, NULL);
141 pcctwointr_establish(PCCTWOV_SCC_MODEM, clmpcc_mdintr, level, sc, NULL);
clmpcc_pcctwo.c 115 int level = pa->pa_ipl; local in function:clmpcc_pcctwo_attach
119 level = pa->pa_ipl;
131 sc->sc_evcnt = pcctwointr_evcnt(level);
137 pcctwointr_establish(PCCTWOV_SCC_RX, clmpcc_rxintr, level, sc, NULL);
138 pcctwointr_establish(PCCTWOV_SCC_RX_EXCEP, clmpcc_rxintr, level, sc,
140 pcctwointr_establish(PCCTWOV_SCC_TX, clmpcc_txintr, level, sc, NULL);
141 pcctwointr_establish(PCCTWOV_SCC_MODEM, clmpcc_mdintr, level, sc, NULL);
  /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...]
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/tests/lib/libc/sys/
t_ptrace.c 119 int level; local in function:ATF_TC_BODY
120 size_t len = sizeof(level);
122 RL(sysctlbyname("kern.securelevel", &level, &len, NULL, 0));
124 if (level < 0) {
t_ptrace.c 119 int level; local in function:ATF_TC_BODY
120 size_t len = sizeof(level);
122 RL(sysctlbyname("kern.securelevel", &level, &len, NULL, 0));
124 if (level < 0) {
  /src/sys/arch/evbmips/mipssim/
mipssim_intr.c 45 * given hardware interrupt priority level.
111 for (int level = NINTR - 1; level >= 0; level--) { local in function:evbmips_iointr
114 if ((ipending & (MIPS_INT_MASK_0 << level)) == 0)
117 ih_count[level].ev_count++;
118 list = &intrs[level];
mipssim_intr.c 45 * given hardware interrupt priority level.
111 for (int level = NINTR - 1; level >= 0; level--) { local in function:evbmips_iointr
114 if ((ipending & (MIPS_INT_MASK_0 << level)) == 0)
117 ih_count[level].ev_count++;
118 list = &intrs[level];
  /src/usr.sbin/mtree/
verify.c 82 NODE *ep, *level; local in function:vwalk
91 level = root;
108 for (level = level->parent; level->prev;
109 level = level->prev)
126 for (ep = level; ep; ep = ep->next)
138 level = ep->child;
verify.c 82 NODE *ep, *level; local in function:vwalk
91 level = root;
108 for (level = level->parent; level->prev;
109 level = level->prev)
126 for (ep = level; ep; ep = ep->next)
138 level = ep->child;
  /src/sys/arch/x86/x86/
identcpu_subr.c 219 int type, level, ways, partitions, linesize, sets, totalsize; local in function:cpu_dcp_cacheinfo
228 level = __SHIFTOUT(descs[0], CPUID_DCP_CACHELEVEL);
229 switch (level) {
identcpu_subr.c 219 int type, level, ways, partitions, linesize, sets, totalsize; local in function:cpu_dcp_cacheinfo
228 level = __SHIFTOUT(descs[0], CPUID_DCP_CACHELEVEL);
229 switch (level) {
  /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...]
  /src/sys/arch/arm/nvidia/
tegra_lic.c 146 const u_int level = (trig & FDT_INTR_TYPE_DOUBLE_EDGE) local in function:tegra_lic_establish
149 return intr_establish_xname(irq, ipl, level | iflags, func, arg,
  /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...]

Completed in 31 milliseconds

1 2 3 4 5 6 7 8 91011>>