/src/lib/libcurses/ |
meta.c | 1 /* $NetBSD: meta.c,v 1.11 2024/12/23 02:58:03 blymn Exp $ */ 34 __RCSID("$NetBSD: meta.c,v 1.11 2024/12/23 02:58:03 blymn Exp $"); 41 * meta -- 42 * Turn on or off the terminal meta mode. 45 meta(/*ARGSUSED*/ WINDOW *win, bool bf) function in typeref:typename:int 52 __CTRACE(__CTRACE_MISC, "meta: TRUE\n"); 59 __CTRACE(__CTRACE_MISC, "meta: FALSE\n"); 71 * Restore old meta state. 77 meta(NULL, _cursesi_screen->meta_state);
|
meta.c | 1 /* $NetBSD: meta.c,v 1.11 2024/12/23 02:58:03 blymn Exp $ */ 34 __RCSID("$NetBSD: meta.c,v 1.11 2024/12/23 02:58:03 blymn Exp $"); 41 * meta -- 42 * Turn on or off the terminal meta mode. 45 meta(/*ARGSUSED*/ WINDOW *win, bool bf) function in typeref:typename:int 52 __CTRACE(__CTRACE_MISC, "meta: TRUE\n"); 59 __CTRACE(__CTRACE_MISC, "meta: FALSE\n"); 71 * Restore old meta state. 77 meta(NULL, _cursesi_screen->meta_state);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_platform_posix.cc | 108 // Map meta shadow. 109 const uptr meta = MetaShadowBeg(); local in function:__tsan::InitializeShadowMemory 110 const uptr meta_size = MetaShadowEnd() - meta; 111 if (!MmapFixedNoReserve(meta, meta_size, "meta shadow")) { 116 NoHugePagesInShadow(meta, meta_size); 117 DontDumpShadow(meta, meta_size); 118 DPrintf("meta shadow: %zx-%zx (%zuGB)\n", 119 meta, meta + meta_size, meta_size >> 30) [all...] |
tsan_platform_posix.cc | 108 // Map meta shadow. 109 const uptr meta = MetaShadowBeg(); local in function:__tsan::InitializeShadowMemory 110 const uptr meta_size = MetaShadowEnd() - meta; 111 if (!MmapFixedNoReserve(meta, meta_size, "meta shadow")) { 116 NoHugePagesInShadow(meta, meta_size); 117 DontDumpShadow(meta, meta_size); 118 DPrintf("meta shadow: %zx-%zx (%zuGB)\n", 119 meta, meta + meta_size, meta_size >> 30) [all...] |
tsan_sync.cc | 69 u32 *meta = MemToMeta(p); local in function:__tsan::MetaMap::AllocBlock 70 DCHECK_EQ(*meta, 0); 71 *meta = idx | kFlagBlock; 85 u32 *meta = MemToMeta(p); local in function:__tsan::MetaMap::FreeRange 87 if (end == meta) 89 for (; meta < end; meta++) { 90 u32 idx = *meta; 92 // Note: don't write to meta in this case -- the block can be huge. 95 *meta = 0 184 u32 *meta = MemToMeta(p); local in function:__tsan::MetaMap::GetBlock 208 u32 *meta = MemToMeta(addr); local in function:__tsan::MetaMap::GetAndLock [all...] |
tsan_sync.cc | 69 u32 *meta = MemToMeta(p); local in function:__tsan::MetaMap::AllocBlock 70 DCHECK_EQ(*meta, 0); 71 *meta = idx | kFlagBlock; 85 u32 *meta = MemToMeta(p); local in function:__tsan::MetaMap::FreeRange 87 if (end == meta) 89 for (; meta < end; meta++) { 90 u32 idx = *meta; 92 // Note: don't write to meta in this case -- the block can be huge. 95 *meta = 0 184 u32 *meta = MemToMeta(p); local in function:__tsan::MetaMap::GetBlock 208 u32 *meta = MemToMeta(addr); local in function:__tsan::MetaMap::GetAndLock [all...] |
/src/usr.bin/make/unit-tests/ |
depsrc-meta.mk | 1 # $NetBSD: depsrc-meta.mk,v 1.7 2022/03/02 19:32:15 sjg Exp $ 3 # Tests for the special source .META in dependency declarations. 12 .MAKE.MODE= meta curDirOk=true nofilemon 15 actual-test: depsrc-meta-target 16 depsrc-meta-target: .META 21 @echo 'Targets from meta mode${.MAKE.JOBS:D in jobs mode}:' 22 @awk '/^TARGET/ { print "| " $$0 }' depsrc-meta-target.meta 23 @rm depsrc-meta-target.met [all...] |
depsrc-meta.mk | 1 # $NetBSD: depsrc-meta.mk,v 1.7 2022/03/02 19:32:15 sjg Exp $ 3 # Tests for the special source .META in dependency declarations. 12 .MAKE.MODE= meta curDirOk=true nofilemon 15 actual-test: depsrc-meta-target 16 depsrc-meta-target: .META 21 @echo 'Targets from meta mode${.MAKE.JOBS:D in jobs mode}:' 22 @awk '/^TARGET/ { print "| " $$0 }' depsrc-meta-target.meta 23 @rm depsrc-meta-target.met [all...] |
/src/lib/libc/db/btree/ |
bt_open.c | 222 * Read in the meta-data. This can change the notion of what 354 PAGE *meta, *root; local in function:nroot 372 if ((meta = mpool_newf(t->bt_mp, &npg, MPOOL_PAGE_NEXT)) == NULL) 385 memset(meta, 0, t->bt_psize); 386 mpool_put(t->bt_mp, meta, MPOOL_DIRTY);
|
bt_open.c | 222 * Read in the meta-data. This can change the notion of what 354 PAGE *meta, *root; local in function:nroot 372 if ((meta = mpool_newf(t->bt_mp, &npg, MPOOL_PAGE_NEXT)) == NULL) 385 memset(meta, 0, t->bt_psize); 386 mpool_put(t->bt_mp, meta, MPOOL_DIRTY);
|
/src/sys/net/npf/ |
npf_ext_log.c | 68 npf_ext_log_t *meta; local in function:npf_log_ctor 70 meta = kmem_zalloc(sizeof(npf_ext_log_t), KM_SLEEP); 71 meta->if_idx = dnvlist_get_number(params, "log-interface", 0); 72 npf_rproc_assign(rp, meta); 77 npf_log_dtor(npf_rproc_t *rp, void *meta) 79 kmem_free(meta, sizeof(npf_ext_log_t)); 83 npf_log(npf_cache_t *npc, void *meta, const npf_match_info_t *mi, int *decision) 86 const npf_ext_log_t *log = meta;
|
npf_ext_rndblock.c | 57 * Meta-data structure, containing parameters. 72 npf_ext_rndblock_t *meta; local in function:npf_ext_rndblock_ctor 76 * and our meta-data. 78 meta = kmem_zalloc(sizeof(npf_ext_rndblock_t), KM_SLEEP); 79 meta->mod = dnvlist_get_number(params, "mod", 0); 80 meta->percentage = dnvlist_get_number(params, "percentage", 0); 81 npf_rproc_assign(rp, meta); 90 npf_ext_rndblock_dtor(npf_rproc_t *rp, void *meta) 92 /* Free our meta-data, associated with the procedure. */ 93 kmem_free(meta, sizeof(npf_ext_rndblock_t)) [all...] |
npf_ext_log.c | 68 npf_ext_log_t *meta; local in function:npf_log_ctor 70 meta = kmem_zalloc(sizeof(npf_ext_log_t), KM_SLEEP); 71 meta->if_idx = dnvlist_get_number(params, "log-interface", 0); 72 npf_rproc_assign(rp, meta); 77 npf_log_dtor(npf_rproc_t *rp, void *meta) 79 kmem_free(meta, sizeof(npf_ext_log_t)); 83 npf_log(npf_cache_t *npc, void *meta, const npf_match_info_t *mi, int *decision) 86 const npf_ext_log_t *log = meta;
|
npf_ext_rndblock.c | 57 * Meta-data structure, containing parameters. 72 npf_ext_rndblock_t *meta; local in function:npf_ext_rndblock_ctor 76 * and our meta-data. 78 meta = kmem_zalloc(sizeof(npf_ext_rndblock_t), KM_SLEEP); 79 meta->mod = dnvlist_get_number(params, "mod", 0); 80 meta->percentage = dnvlist_get_number(params, "percentage", 0); 81 npf_rproc_assign(rp, meta); 90 npf_ext_rndblock_dtor(npf_rproc_t *rp, void *meta) 92 /* Free our meta-data, associated with the procedure. */ 93 kmem_free(meta, sizeof(npf_ext_rndblock_t)) [all...] |
/src/usr.bin/make/ |
test-variants.mk | 58 TESTS+= no-meta 59 ENV.no-meta= USE_META="no" 60 SKIP_TESTS.no-meta= depsrc-meta meta-cmd-cmp 73 TESTS+= debug-meta 74 CPPFLAGS.debug-meta= -DDEBUG_META_MODE 75 SKIP_TESTS.debug-meta= depsrc-meta meta-cmd-cmp # generate extra debug outpu [all...] |
test-variants.mk | 58 TESTS+= no-meta 59 ENV.no-meta= USE_META="no" 60 SKIP_TESTS.no-meta= depsrc-meta meta-cmd-cmp 73 TESTS+= debug-meta 74 CPPFLAGS.debug-meta= -DDEBUG_META_MODE 75 SKIP_TESTS.debug-meta= depsrc-meta meta-cmd-cmp # generate extra debug outpu [all...] |
/src/lib/libedit/ |
read.c | 232 static const wchar_t meta = (wchar_t)0x80; local in function:read_getcmd 240 if ((*ch & meta)) { 249 *ch |= meta;
|
read.c | 232 static const wchar_t meta = (wchar_t)0x80; local in function:read_getcmd 240 if ((*ch & meta)) { 249 *ch |= meta;
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_allocator.cc | 169 Metadata *meta = local in function:__msan::MsanAllocate 171 meta->requested_size = size; 189 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(p)); local in function:__msan::MsanDeallocate 190 uptr size = meta->requested_size; 191 meta->requested_size = 0; 215 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(old_p)); local in function:__msan::MsanReallocate 216 uptr old_size = meta->requested_size; 220 meta->requested_size = new_size;
|
msan_allocator.cc | 169 Metadata *meta = local in function:__msan::MsanAllocate 171 meta->requested_size = size; 189 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(p)); local in function:__msan::MsanDeallocate 190 uptr size = meta->requested_size; 191 meta->requested_size = 0; 215 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(old_p)); local in function:__msan::MsanReallocate 216 uptr old_size = meta->requested_size; 220 meta->requested_size = new_size;
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/src/ |
amdgpu_dmub_srv.c | 54 /* Default state size if meta is absent. */ 57 /* Default tracebuffer size if meta is absent. */ 98 const union dmub_fw_meta *meta; local in function:dmub_get_fw_meta_info 106 meta = (const union dmub_fw_meta *)(fw_bss_data + fw_bss_data_size - 110 if (meta->info.magic_value != DMUB_FW_META_MAGIC) 113 return &meta->info;
|
amdgpu_dmub_srv.c | 54 /* Default state size if meta is absent. */ 57 /* Default tracebuffer size if meta is absent. */ 98 const union dmub_fw_meta *meta; local in function:dmub_get_fw_meta_info 106 meta = (const union dmub_fw_meta *)(fw_bss_data + fw_bss_data_size - 110 if (meta->info.magic_value != DMUB_FW_META_MAGIC) 113 return &meta->info;
|
/src/usr.sbin/npf/npfctl/ |
npf_cmd.c | 70 void *meta; local in function:npfctl_generate_key 73 if ((meta = npf_rule_export(rl, &len)) == NULL) { 78 SHA1(meta, len, key); 79 free(meta);
|
npf_cmd.c | 70 void *meta; local in function:npfctl_generate_key 73 if ((meta = npf_rule_export(rl, &len)) == NULL) { 78 SHA1(meta, len, key); 79 free(meta);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_allocator_primary32.h | 155 uptr meta = (beg + kRegionSize) - (n + 1) * kMetadataSize; local in function:SizeClassAllocator32::GetMetaData 156 return reinterpret_cast<void*>(meta);
|