Home
last modified time | relevance | path

Searched refs:lvl (Results 1 – 25 of 89) sorted by relevance

1234

/freebsd-14.2/contrib/file/src/
H A Dis_json.c128 size_t lvl __file_debugused) in json_parse_string()
181 size_t *st, size_t lvl) in json_parse_array() argument
192 if (!json_parse(&uc, ue, st, lvl + 1)) in json_parse_array()
218 size_t *st, size_t lvl) in json_parse_object() argument
235 if (!json_parse_string(&uc, ue, lvl)) { in json_parse_object()
246 if (!json_parse(&uc, ue, st, lvl + 1)) { in json_parse_object()
275 size_t lvl __file_debugused) in json_parse_number()
347 size_t *st, size_t lvl) in json_parse() argument
358 if (lvl > 500) { in json_parse()
388 lvl + 1); in json_parse()
[all …]
/freebsd-14.2/sys/x86/iommu/
H A Dintel_idpgtbl.c129 if (lvl != tbl->leaf) { in dmar_idmap_nextlvl()
135 if (lvl == tbl->leaf) { in dmar_idmap_nextlvl()
348 KASSERT(lvl > 0, in dmar_pgtbl_map_pte()
403 int lvl; in dmar_map_buf_locked() local
414 for (lvl = 0, c = 0, superpage = false;; lvl++) { in dmar_map_buf_locked()
417 if (lvl == domain->pglvl - 1) in dmar_map_buf_locked()
579 KASSERT(lvl != 0, in dmar_unmap_clear_pte()
600 int lvl; in dmar_unmap_buf_locked() local
630 for (lvl = 0; lvl < domain->pglvl; lvl++) { in dmar_unmap_buf_locked()
631 if (lvl != domain->pglvl - 1 && in dmar_unmap_buf_locked()
[all …]
H A Diommu_utils.c694 pglvl_pgtbl_pte_off(int pglvl, iommu_gaddr_t base, int lvl) in pglvl_pgtbl_pte_off() argument
697 base >>= IOMMU_PAGE_SHIFT + (pglvl - lvl - 1) * in pglvl_pgtbl_pte_off()
708 pglvl_pgtbl_get_pindex(int pglvl, iommu_gaddr_t base, int lvl) in pglvl_pgtbl_get_pindex() argument
713 KASSERT(lvl >= 0 && lvl < pglvl, in pglvl_pgtbl_get_pindex()
714 ("wrong lvl %d %d", pglvl, lvl)); in pglvl_pgtbl_get_pindex()
716 for (pidx = idx = 0, i = 0; i < lvl; i++, pidx = idx) { in pglvl_pgtbl_get_pindex()
741 pglvl_page_size(int total_pglvl, int lvl) in pglvl_page_size() argument
754 KASSERT(lvl >= 0 && lvl < total_pglvl, in pglvl_page_size()
755 ("total %d lvl %d", total_pglvl, lvl)); in pglvl_page_size()
756 rlvl = total_pglvl - lvl - 1; in pglvl_page_size()
[all …]
/freebsd-14.2/contrib/file/magic/Magdir/
H A Dgringotts10 >3 string 1 v.1, MCRYPT S2K, SERPENT crypt, SHA-256 hash, ZLib lvl.9
25 >>8 byte&0x03 0x00 lvl.0
26 >>8 byte&0x03 0x01 lvl.3
27 >>8 byte&0x03 0x02 lvl.6
28 >>8 byte&0x03 0x03 lvl.9
43 >>8 byte&0x03 0x00 lvl.0
44 >>8 byte&0x03 0x01 lvl.3
45 >>8 byte&0x03 0x02 lvl.6
46 >>8 byte&0x03 0x03 lvl.9
/freebsd-14.2/lib/libc/amd64/string/
H A Damd64_archlevel.c113 const struct archlevel *lvl = &levels[level]; in supported_archlevel() local
115 if ((lvl->feat_edx & feat_edx) != lvl->feat_edx || in supported_archlevel()
116 (lvl->feat_ecx & feat_ecx) != lvl->feat_ecx || in supported_archlevel()
117 (lvl->amd_ecx & amd_ecx) != lvl->amd_ecx || in supported_archlevel()
118 (lvl->ext_ebx & ext_ebx) != lvl->ext_ebx) in supported_archlevel()
/freebsd-14.2/contrib/openpam/include/security/
H A Dopenpam.h220 #define openpam_log(lvl, ...) \ argument
221 _openpam_log((lvl), __func__, __VA_ARGS__)
223 #define openpam_log(lvl, ...) \ argument
224 _openpam_log((lvl), __func__, __VA_ARGS__)
226 #define openpam_log(lvl, fmt...) \ argument
227 _openpam_log((lvl), __func__, ##fmt)
229 #define openpam_log(lvl, fmt...) \ argument
230 _openpam_log((lvl), __FUNCTION__, ##fmt)
/freebsd-14.2/sys/geom/nop/
H A Dg_nop.h42 #define G_NOP_DEBUG(lvl, ...) \ argument
43 _GEOM_DEBUG("GEOM_NOP", g_nop_debug, (lvl), NULL, __VA_ARGS__)
44 #define G_NOP_LOGREQLVL(lvl, bp, ...) \ argument
45 _GEOM_DEBUG("GEOM_NOP", g_nop_debug, (lvl), (bp), __VA_ARGS__)
/freebsd-14.2/sys/geom/virstor/
H A Dg_virstor.h47 #define LOG_MSG(lvl, ...) \ argument
48 _GEOM_DEBUG("GEOM_VIRSTOR", g_virstor_debug, (lvl), NULL, __VA_ARGS__)
51 #define LOG_REQ(lvl, bp, ...) \ argument
52 _GEOM_DEBUG("GEOM_VIRSTOR", g_virstor_debug, (lvl), (bp), __VA_ARGS__)
/freebsd-14.2/sys/contrib/openzfs/include/os/freebsd/zfs/sys/
H A Dzfs_context_os.h63 #define ZFS_LOG(lvl, ...) do { \ argument
64 if (((lvl) & 0xff) <= zfs_debug_level) { \
67 __func__, __LINE__, (lvl)); \
70 if ((lvl) & 0x100) \
/freebsd-14.2/sys/geom/journal/
H A Dg_journal.h50 #define GJ_DEBUG(lvl, ...) \ argument
51 _GEOM_DEBUG("GEOM_JOURNAL", g_journal_debug, (lvl), NULL, __VA_ARGS__)
52 #define GJ_LOGREQ(lvl, bp, ...) \ argument
53 _GEOM_DEBUG("GEOM_JOURNAL", g_journal_debug, (lvl), (bp), __VA_ARGS__)
245 #define GJ_TIMER_START(lvl, bt) do { \ argument
246 if (g_journal_debug >= (lvl)) \
249 #define GJ_TIMER_STOP(lvl, bt, ...) do { \ argument
250 if (g_journal_debug >= (lvl)) { \
259 printf("[%u]", lvl); \
/freebsd-14.2/sys/contrib/openzfs/cmd/raidz_test/
H A Draidz_test.h95 #define LOG(lvl, ...) \ argument
97 if (rto_opts.rto_v >= lvl) \
101 #define LOG_OPT(lvl, opt, ...) \ argument
103 if (opt->rto_v >= lvl) \
/freebsd-14.2/sys/geom/shsec/
H A Dg_shsec.h47 #define G_SHSEC_DEBUG(lvl, ...) \ argument
48 _GEOM_DEBUG("GEOM_SHSEC", g_shsec_debug, (lvl), NULL, __VA_ARGS__)
49 #define G_SHSEC_LOGREQ(lvl, bp, ...) \ argument
50 _GEOM_DEBUG("GEOM_SHSEC", g_shsec_debug, (lvl), (bp), __VA_ARGS__)
/freebsd-14.2/sys/geom/union/
H A Dg_union.h41 #define G_UNION_DEBUG(lvl, ...) \ argument
42 _GEOM_DEBUG("GEOM_UNION", g_union_debug, (lvl), NULL, __VA_ARGS__)
43 #define G_UNION_LOGREQLVL(lvl, bp, ...) \ argument
44 _GEOM_DEBUG("GEOM_UNION", g_union_debug, (lvl), (bp), __VA_ARGS__)
/freebsd-14.2/sys/contrib/device-tree/Bindings/sound/
H A Dda7213.txt13 - dlg,micbias1-lvl : Voltage (mV) for Mic Bias 1
15 - dlg,micbias2-lvl : Voltage (mV) for Mic Bias 2
39 dlg,micbias1-lvl = <2500>;
40 dlg,micbias2-lvl = <2500>;
H A Dda7219.txt32 - dlg,micbias-lvl : Voltage (mV) for Mic Bias
38 - dlg,ldo-lvl : Required internal LDO voltage (mV) level for digital engine
46 - dlg,micbias-pulse-lvl : Mic bias higher voltage pulse level (mV).
93 dlg,ldo-lvl = <1200>;
94 dlg,micbias-lvl = <2600>;
/freebsd-14.2/sys/geom/gate/
H A Dg_gate.h103 #define G_GATE_DEBUG(lvl, ...) \ argument
104 _GEOM_DEBUG("GEOM_GATE", g_gate_debug, (lvl), NULL, __VA_ARGS__)
105 #define G_GATE_LOGREQ(lvl, bp, ...) \ argument
106 _GEOM_DEBUG("GEOM_GATE", g_gate_debug, (lvl), (bp), __VA_ARGS__)
/freebsd-14.2/sbin/ipf/libipf/
H A Daddipopt.c19 u_char lvl; in addipopt() local
37 lvl = seclevel(class); in addipopt()
38 *(op - 1) = lvl; in addipopt()
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/vdev_zaps/
H A Dvdev_zaps.kshlib51 typeset lvl=$3
55 log_fail "$vd on $pool has no $lvl ZAP in config"
57 log_fail "$vd on $pool has no $lvl ZAP in MOS"
/freebsd-14.2/sys/arm64/iommu/
H A Diommu_pmap.c591 int lvl; in pmap_gpu_enter() local
616 pde = smmu_pmap_pde(pmap, va, &lvl); in pmap_gpu_enter()
617 if (pde != NULL && lvl == 2) { in pmap_gpu_enter()
667 int lvl; in pmap_gpu_remove() local
674 pde = smmu_pmap_pde(pmap, va, &lvl); in pmap_gpu_remove()
675 if (pde == NULL || lvl != 2) { in pmap_gpu_remove()
705 int lvl; in smmu_pmap_enter() local
728 pde = smmu_pmap_pde(pmap, va, &lvl); in smmu_pmap_enter()
729 if (pde != NULL && lvl == 2) { in smmu_pmap_enter()
763 int lvl; in smmu_pmap_remove() local
[all …]
/freebsd-14.2/crypto/openssh/openbsd-compat/
H A Dport-linux.c62 char *sc = NULL, *sename = NULL, *lvl = NULL; in ssh_selinux_getctxbyname() local
66 if (getseuserbyname(pwname, &sename, &lvl) != 0) in ssh_selinux_getctxbyname()
70 lvl = NULL; in ssh_selinux_getctxbyname()
74 r = get_default_context_with_level(sename, lvl, NULL, &sc); in ssh_selinux_getctxbyname()
98 free(lvl); in ssh_selinux_getctxbyname()
/freebsd-14.2/sys/geom/raid/
H A Dtr_raid5.c219 u_int strip_size, lvl, qual; in g_raid_tr_iostart_raid5_read() local
224 lvl = tr->tro_volume->v_raid_level; in g_raid_tr_iostart_raid5_read()
233 if (lvl == G_RAID_VOLUME_RL_RAIDMDF) in g_raid_tr_iostart_raid5_read()
235 else if (lvl == G_RAID_VOLUME_RL_RAID5EE || in g_raid_tr_iostart_raid5_read()
236 lvl == G_RAID_VOLUME_RL_RAID6) in g_raid_tr_iostart_raid5_read()
242 if (lvl == G_RAID_VOLUME_RL_RAID4) { in g_raid_tr_iostart_raid5_read()
259 if (lvl == G_RAID_VOLUME_RL_RAID4) { in g_raid_tr_iostart_raid5_read()
285 if (lvl == G_RAID_VOLUME_RL_RAID4) { in g_raid_tr_iostart_raid5_read()
H A Dg_raid.h62 #define G_RAID_DEBUG(lvl, ...) \ argument
63 _GEOM_DEBUG("GEOM_RAID", g_raid_debug, (lvl), NULL, __VA_ARGS__)
64 #define G_RAID_DEBUG1(lvl, sc, fmt, ...) \ argument
65 _GEOM_DEBUG("GEOM_RAID", g_raid_debug, (lvl), NULL, "%s: " fmt, \
67 #define G_RAID_LOGREQ(lvl, bp, ...) \ argument
68 _GEOM_DEBUG("GEOM_RAID", g_raid_debug, (lvl), (bp), __VA_ARGS__)
/freebsd-14.2/contrib/ntp/include/
H A Dntp_debug.h21 #define TRACE(lvl, arg) \ argument
23 if (debug >= (lvl)) \
/freebsd-14.2/sys/geom/vinum/
H A Dgeom_vinum.h158 #define G_VINUM_DEBUG(lvl, ...) \ argument
159 _GEOM_DEBUG("GEOM_VINUM", g_vinum_debug, (lvl), NULL, __VA_ARGS__)
160 #define G_VINUM_LOGREQ(lvl, bp, ...) \ argument
161 _GEOM_DEBUG("GEOM_VINUM", g_vinum_debug, (lvl), (bp), __VA_ARGS__)
/freebsd-14.2/sys/geom/mountver/
H A Dg_mountver.h39 #define G_MOUNTVER_DEBUG(lvl, ...) \ argument
40 _GEOM_DEBUG("GEOM_MOUNTVER", g_mountver_debug, (lvl), NULL, __VA_ARGS__)

1234