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

1 2

  /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
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
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
70 DCHECK_EQ(*meta, 0);
71 *meta = idx | kFlagBlock;
85 u32 *meta = MemToMeta(p); local
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
208 u32 *meta = MemToMeta(addr); local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_platform_posix.cpp 62 // Map meta shadow.
63 const uptr meta = MetaShadowBeg(); local
64 const uptr meta_size = MetaShadowEnd() - meta;
65 if (!MmapFixedSuperNoReserve(meta, meta_size, "meta shadow")) {
70 DontDumpShadow(meta, meta_size);
71 DPrintf("meta shadow: %zx-%zx (%zuGB)\n",
72 meta, meta + meta_size, meta_size >> 30);
tsan_sync.cpp 54 u32 *meta = MemToMeta(p); local
55 DCHECK_EQ(*meta, 0);
56 *meta = idx | kFlagBlock;
70 u32 *meta = MemToMeta(p); local
72 if (end == meta)
74 for (; meta < end; meta++) {
75 u32 idx = *meta;
77 // Note: don't write to meta in this case -- the block can be huge.
80 *meta = 0
191 u32 *meta = MemToMeta(p); local
207 u32 *meta = MemToMeta(addr); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_platform_posix.cpp 62 // Map meta shadow.
63 const uptr meta = MetaShadowBeg(); local
64 const uptr meta_size = MetaShadowEnd() - meta;
65 if (!MmapFixedSuperNoReserve(meta, meta_size, "meta shadow")) {
70 DontDumpShadow(meta, meta_size);
71 DPrintf("meta shadow: %zx-%zx (%zuGB)\n",
72 meta, meta + meta_size, meta_size >> 30);
tsan_sync.cpp 66 u32 *meta = MemToMeta(p); local
67 DCHECK_EQ(*meta, 0);
68 *meta = idx | kFlagBlock;
82 u32 *meta = MemToMeta(p); local
84 if (end == meta)
86 for (; meta < end; meta++) {
87 u32 idx = *meta;
89 // Note: don't write to meta in this case -- the block can be huge.
92 *meta = 0
181 u32 *meta = MemToMeta(p); local
196 u32 *meta = MemToMeta(addr); local
    [all...]
  /src/lib/libc/db/btree/
bt_open.c 223 * Read in the meta-data. This can change the notion of what
355 PAGE *meta, *root; local
373 if ((meta = mpool_newf(t->bt_mp, &npg, MPOOL_PAGE_NEXT)) == NULL)
386 memset(meta, 0, t->bt_psize);
387 mpool_put(t->bt_mp, meta, MPOOL_DIRTY);
  /src/sys/net/npf/
npf_ext_log.c 68 npf_ext_log_t *meta; local
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
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_route.c 87 npf_ext_route_t *meta; local
90 meta = kmem_zalloc(sizeof(*meta), KM_SLEEP);
97 strlcpy(meta->ifname, ifname, IFNAMSIZ);
98 npf_rproc_assign(rp, meta);
103 npf_route_dtor(npf_rproc_t *rp, void *meta)
105 kmem_free(meta, sizeof(npf_ext_route_t));
310 npf_route(npf_cache_t *npc, void *meta, const npf_match_info_t __unused *mi, int *decision)
313 const npf_ext_route_t *route = meta;
  /src/external/bsd/mdocml/dist/
demandoc.c 113 struct roff_meta *meta; local
118 meta = mparse_result(mp);
122 if (meta->macroset == MACROSET_MDOC)
123 pmdoc(meta->first->child, &line, &col, list);
125 pman(meta->first->child, &line, &col, list);
mandocd.c 249 struct roff_meta *meta; local
252 meta = mparse_result(parser);
253 if (meta->macroset == MACROSET_MDOC) {
257 terminal_mdoc(formatter, meta);
260 html_mdoc(formatter, meta);
264 if (meta->macroset == MACROSET_MAN) {
268 terminal_man(formatter, meta);
271 html_man(formatter, meta);
roff_int.h 33 struct roff_meta meta; /* Public parse results. */ member in struct:roff_man
  /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...]
  /src/lib/libedit/
read.c 232 static const wchar_t meta = (wchar_t)0x80; local
240 if ((*ch & meta)) {
249 *ch |= meta;
  /src/usr.sbin/npf/npfctl/
npf_cmd.c 70 void *meta; local
73 if ((meta = npf_rule_export(rl, &len)) == NULL) {
78 SHA1(meta, len, key);
79 free(meta);
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_shar.c 73 * Copy the given string to the buffer, quoting all shell meta characters
79 static const char meta[] = "\n \t'`\";&<>()|*?{}[]\\$!#^~"; local
83 if ((len = strcspn(str, meta)) != 0) {
  /src/external/bsd/pkg_install/dist/info/
perform.c 147 free_pkg_meta(struct pkg_meta *meta)
152 free(*(char **)((char *)meta + descr->entry_offset));
154 free(meta);
162 struct pkg_meta *meta; local
171 meta = xcalloc(1, sizeof(*meta));
194 target = (char **)((char *)meta + descr->entry_offset);
204 errx(2, "cannot read package meta data");
210 errx(2, "package meta data too large to process");
213 errx(2, "cannot read package meta data")
235 struct pkg_meta *meta; local
326 struct pkg_meta *meta; local
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_allocator.cc 169 Metadata *meta = local
171 meta->requested_size = size;
189 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(p)); local
190 uptr size = meta->requested_size;
191 meta->requested_size = 0;
215 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(old_p)); local
216 uptr old_size = meta->requested_size;
220 meta->requested_size = new_size;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_primary32.h 155 uptr meta = (beg + kRegionSize) - (n + 1) * kMetadataSize; local
156 return reinterpret_cast<void*>(meta);
  /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
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/external/bsd/libevent/dist/
evrpc.c 984 * frees potential meta data associated with a request.
1031 /* Adds meta data */
1038 struct evrpc_meta *meta = NULL; local
1043 meta = mm_malloc(sizeof(struct evrpc_meta));
1044 EVUTIL_ASSERT(meta != NULL);
1045 meta->key = mm_strdup(key);
1046 EVUTIL_ASSERT(meta->key != NULL);
1047 meta->data_size = data_size;
1048 meta->data = mm_malloc(data_size);
1049 EVUTIL_ASSERT(meta->data != NULL)
1059 struct evrpc_meta *meta = NULL; local
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/
evrpc.c 982 * frees potential meta data associated with a request.
1029 /* Adds meta data */
1036 struct evrpc_meta *meta = NULL; local
1041 meta = mm_malloc(sizeof(struct evrpc_meta));
1042 EVUTIL_ASSERT(meta != NULL);
1043 meta->key = mm_strdup(key);
1044 EVUTIL_ASSERT(meta->key != NULL);
1045 meta->data_size = data_size;
1046 meta->data = mm_malloc(data_size);
1047 EVUTIL_ASSERT(meta->data != NULL)
1057 struct evrpc_meta *meta = NULL; local
    [all...]
  /src/external/gpl2/texinfo/dist/info/
infokey.c 350 or 6 indicates the "Meta" modification of that key.
427 char meta = 0;
451 seq[slen++] = meta ? (char)Meta(c) : (c); \
458 meta = 0; \
576 meta = 1;
425 char meta = 0; local

Completed in 32 milliseconds

1 2