Home
last modified time | relevance | path

Searched refs:emitter (Results 1 – 25 of 35) sorted by relevance

12

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Demitter.h81 emitter_printf(emitter_t *emitter, const char *format, ...) { in emitter_printf() argument
85 malloc_vcprintf(emitter->write_cb, emitter->cbopaque, format, ap); in emitter_printf()
117 emitter_print_value(emitter_t *emitter, emitter_justify_t justify, int width, in emitter_print_value() argument
132 emitter_printf(emitter, \ in emitter_print_value()
138 emitter_printf(emitter, in emitter_print_value()
162 emitter_printf(emitter, in emitter_print_value()
184 emitter_nest_inc(emitter_t *emitter) { in emitter_nest_inc() argument
185 emitter->nesting_depth++; in emitter_nest_inc()
186 emitter->item_at_depth = false; in emitter_nest_inc()
190 emitter_nest_dec(emitter_t *emitter) { in emitter_nest_dec() argument
[all …]
/freebsd/contrib/jemalloc/src/
H A Dstats.c225 mutex_stats_emit(emitter_t *emitter, emitter_row_t *row, in mutex_stats_emit() argument
229 emitter_table_row(emitter, row); in mutex_stats_emit()
243 emitter_json_kv(emitter, #counter, EMITTER_TYPE_##type, \ in mutex_stats_emit()
270 stats_arena_bins_print(emitter_t *emitter, bool mutex, unsigned i, uint64_t uptime) { in stats_arena_bins_print() argument
333 emitter_table_printf(emitter, "bins:"); in stats_arena_bins_print()
334 emitter_table_row(emitter, &header_row); in stats_arena_bins_print()
335 emitter_json_array_kv_begin(emitter, "bins"); in stats_arena_bins_print()
352 emitter_table_printf(emitter, in stats_arena_bins_print()
385 emitter_json_object_begin(emitter); in stats_arena_bins_print()
386 emitter_json_kv(emitter, "nmalloc", emitter_type_uint64, in stats_arena_bins_print()
[all …]
H A Dprof.c2581 prof_log_emit_threads(tsd_t *tsd, emitter_t *emitter) { in prof_log_emit_threads() argument
2582 emitter_json_array_kv_begin(emitter, "threads"); in prof_log_emit_threads()
2586 emitter_json_object_begin(emitter); in prof_log_emit_threads()
2588 emitter_json_kv(emitter, "thr_uid", emitter_type_uint64, in prof_log_emit_threads()
2593 emitter_json_kv(emitter, "thr_name", emitter_type_string, in prof_log_emit_threads()
2596 emitter_json_object_end(emitter); in prof_log_emit_threads()
2601 emitter_json_array_end(emitter); in prof_log_emit_threads()
2605 prof_log_emit_traces(tsd_t *tsd, emitter_t *emitter) { in prof_log_emit_traces() argument
2606 emitter_json_array_kv_begin(emitter, "stack_traces"); in prof_log_emit_traces()
2616 emitter_json_array_begin(emitter); in prof_log_emit_traces()
[all …]
/freebsd/contrib/libucl/utils/
H A Ducl-tool.c47 ucl_emitter_t emitter = UCL_EMIT_CONFIG; in main() local
85 emitter = UCL_EMIT_CONFIG; in main()
87 emitter = UCL_EMIT_JSON; in main()
89 emitter = UCL_EMIT_YAML; in main()
91 emitter = UCL_EMIT_JSON_COMPACT; in main()
93 emitter = UCL_EMIT_MSGPACK; in main()
154 if (emitter != UCL_EMIT_MSGPACK) { in main()
155 fprintf(out, "%s\n", ucl_object_emit(obj, emitter)); in main()
160 res = ucl_object_emit_len(obj, emitter, &len); in main()
/freebsd/contrib/libucl/python/src/
H A Duclmodule.c218 ucl_emitter_t emitter; in ucl_dump() local
221 emitter = UCL_EMIT_CONFIG; in ucl_dump()
223 if (!PyArg_ParseTuple(args, "O|i", &obj, &emitter)) { in ucl_dump()
228 if (emitter >= UCL_EMIT_MAX) { in ucl_dump()
242 buf = (char *) ucl_object_emit (root, emitter); in ucl_dump()
/freebsd/contrib/libucl/src/
H A Ducl_emitter.c459 if (ud->emitter) { in ucl_emitter_common_elt()
460 ud_out = ud->emitter (obj->value.ud); in ucl_emitter_common_elt()
591 if (ud->emitter) { in UCL_EMIT_TYPE_IMPL()
592 ud_out = ud->emitter (obj->value.ud); in UCL_EMIT_TYPE_IMPL()
666 struct ucl_emitter_functions *emitter, in ucl_object_emit_full() argument
676 my_ctx.func = emitter; in ucl_object_emit_full()
H A Ducl_emitter_streamline.c65 struct ucl_emitter_functions *emitter) in ucl_object_emit_streamline_new() argument
81 sctx->func = emitter; in ucl_object_emit_streamline_new()
H A Ducl_internal.h280 ucl_userdata_emitter emitter; member
H A Ducl_util.c3037 ucl_userdata_emitter emitter, argument
3051 new->emitter = emitter;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpRegisterInfo.cpp72 std::function<void(Stream &, ElementType)> emitter) { in DumpList() argument
83 emitter(strm, elem); in DumpList()
/freebsd/contrib/libucl/
H A DChangeLog.md5 - Streamline emitter has been added, so it is now possible to output partial `ucl` objects
46 - Add msgpack support for parser and emitter
H A DREADME.md22 - [Emitter](#emitter)
385 Are UCL parser and emitter fast enough? Well, there are some numbers.
/freebsd/contrib/libucl/include/
H A Ducl.h302 ucl_userdata_emitter emitter, void *ptr) UCL_WARN_UNUSED_RESULT;
1477 struct ucl_emitter_functions *emitter,
1490 struct ucl_emitter_functions *emitter);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp939 tryEmitGlobalCompoundLiteral(ConstantEmitter &emitter, in tryEmitGlobalCompoundLiteral() argument
941 CodeGenModule &CGM = emitter.CGM; in tryEmitGlobalCompoundLiteral()
948 llvm::Constant *C = emitter.tryEmitForInitializer(E->getInitializer(), in tryEmitGlobalCompoundLiteral()
962 emitter.finalize(GV); in tryEmitGlobalCompoundLiteral()
1042 ConstExprEmitter(ConstantEmitter &emitter) in ConstExprEmitter() argument
1043 : CGM(emitter.CGM), Emitter(emitter), VMContext(CGM.getLLVMContext()) { in ConstExprEmitter()
1981 ConstantLValueEmitter(ConstantEmitter &emitter, const APValue &value, in ConstantLValueEmitter() argument
1984 : CGM(emitter.CGM), Emitter(emitter), Value(value), DestType(destType), in ConstantLValueEmitter()
2481 ConstantEmitter emitter(*this); in GetAddrOfConstantCompoundLiteral() local
2482 return tryEmitGlobalCompoundLiteral(emitter, E); in GetAddrOfConstantCompoundLiteral()
H A DCodeGenModule.cpp5042 ConstantEmitter emitter(*this); in GetOrCreateLLVMGlobal() local
5043 llvm::Constant *Init = emitter.tryEmitForInitializer(*InitDecl); in GetOrCreateLLVMGlobal()
5066 emitter.finalize(GV); in GetOrCreateLLVMGlobal()
5427 std::optional<ConstantEmitter> emitter; in EmitGlobalVarDefinition() local
5464 emitter.emplace(*this); in EmitGlobalVarDefinition()
5465 llvm::Constant *Initializer = emitter->tryEmitForInitializer(*InitDecl); in EmitGlobalVarDefinition()
5570 if (emitter) in EmitGlobalVarDefinition()
5571 emitter->finalize(GV); in EmitGlobalVarDefinition()
6647 std::optional<ConstantEmitter> emitter; in GetAddrOfGlobalTemporary() local
6653 emitter.emplace(*this); in GetAddrOfGlobalTemporary()
[all …]
H A DCGDecl.cpp345 ConstantEmitter emitter(*this); in AddInitializerToStaticVarDecl() local
346 llvm::Constant *Init = emitter.tryEmitForInitializer(D); in AddInitializerToStaticVarDecl()
406 emitter.finalize(GV); in AddInitializerToStaticVarDecl()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFormats.td15 // code emitter.
85 // machine code emitter.
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckerBase.td16 /// requires changes in the TableGen emitter file ClangSACheckersEmitter.cpp.
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DMachinePassRegistry.def104 MACHINE_FUNCTION_ANALYSIS("machine-opt-remark-emitter",
/freebsd/contrib/libucl/doc/
H A Dapi.md294 struct ucl_emitter_functions *emitter);
297 …the previous with the exception that it accepts the additional argument `emitter` that defines the…
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_neon_incl.td144 // operators plus some extra operators defined in the NEON emitter.
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstrFormats.td25 // code emitter.
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSOPInstructions.td164 // FIXME: Should add a way for the emitter to recognize this is a
176 // FIXME: Should add a way for the emitter to recognize this is a
188 // FIXME: Should add a way for the emitter to recognize this is a
200 // FIXME: Should add a way for the emitter to recognize this is a
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp75 MCInstPrinter *printer, std::unique_ptr<MCCodeEmitter> emitter, in MCAsmStreamer() argument
80 Context, std::move(asmbackend), std::move(emitter), in MCAsmStreamer()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td186 /// FIXME: the emitter doesn't yet force dependent properties to be

12