/freebsd-src/contrib/libucl/tests/ |
H A D | test_speed.c | 66 unsigned char *emitted; in main() local 109 emitted = ucl_object_emit (obj, UCL_EMIT_CONFIG); in main() 113 printf ("ucl: emitted config in %.4f seconds\n", seconds); in main() 115 free (emitted); in main() 118 emitted = ucl_object_emit (obj, UCL_EMIT_JSON); in main() 122 printf ("ucl: emitted json in %.4f seconds\n", seconds); in main() 124 free (emitted); in main() 127 emitted = ucl_object_emit (obj, UCL_EMIT_JSON_COMPACT); in main() 131 printf ("ucl: emitted compact json in %.4f seconds\n", seconds); in main() 133 free (emitted); in main() [all …]
|
H A D | test_basic.c | 39 unsigned char *emitted = NULL; in main() local 200 emitted = ucl_object_emit (obj, UCL_EMIT_JSON_COMPACT); in main() 203 emitted = ucl_object_emit (obj, UCL_EMIT_JSON); in main() 207 emitted = ucl_object_emit (obj, UCL_EMIT_YAML); in main() 210 emitted = NULL; in main() 211 func = ucl_object_emit_memory_funcs ((void **)&emitted); in main() 220 fprintf (out, "%s\n****\n", emitted); in main() 226 ucl_parser_add_string (parser2, (const char *)emitted, 0); in main() 231 fprintf (out, "%s\n", emitted); in main() 236 if (emitted != NULL) { in main() [all …]
|
H A D | test_generate.c | 49 unsigned char *emitted; in main() local 276 fn = ucl_object_emit_memory_funcs ((void **)&emitted); in main() 278 fprintf (out, "%s\n", emitted); in main() 285 if (ucl_parser_add_chunk_full (parser, emitted, strlen (emitted), in main() 295 ucl_parser_add_chunk_full (parser, emitted, strlen (emitted), in main() 307 if (emitted != NULL) { in main() 308 free (emitted); in main()
|
H A D | test_msgpack.c | 110 unsigned char *emitted, *emitted2; in main() local 164 emitted = ucl_object_emit_len (obj, UCL_EMIT_MSGPACK, &elen); in main() 166 assert (emitted != NULL); in main() 169 fprintf (out, "%*.s\n", (int)elen, emitted); in main() 177 if (!ucl_parser_add_chunk_full (parser, emitted, elen, 0, in main() 191 assert (memcmp (emitted, emitted2, elen) == 0); in main() 195 free (emitted); in main()
|
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfException.h | 25 /// Per-function flag to indicate if .cfi_personality should be emitted. 28 /// Per-function flag to indicate if .cfi_personality must be emitted. 31 /// Per-function flag to indicate if .cfi_lsda should be emitted. 34 /// Per-function flag to indicate if frame CFI info should be emitted. 37 /// Per-module flag to indicate if .cfi_section has beeen emitted. 55 /// Gather pre-function exception information. Assumes being emitted 67 /// Per-function flag to indicate if frame CFI info should be emitted. 70 /// Per-module flag to indicate if .cfi_section has beeen emitted. 86 /// Gather pre-function exception information. Assumes being emitted
|
H A D | DwarfExpression.h | 35 /// independently of whether they are emitted into a DIE or into a .debug_loc 39 /// of a succeeding DWARF block before the latter is emitted to the output. 40 /// To handle such cases, data can conditionally be emitted to a temporary in DIExpressionCursor() 43 /// emitted before the data is committed. in DIExpressionCursor() 147 /// Return the emitted size, in number of bytes, for the data stored in the 177 /// for how many bits the emitted DW_OP_piece in setSubRegisterPiece() 181 /// emitted: Some targets do not provide a DWARF register number for every in setSubRegisterPiece() 215 /// DWARF block which has been emitted to the temporary buffer. 320 /// Return the byte streamer that currently is being emitted to. 350 /// Return the DIE that currently is being emitted t [all...] |
H A D | WinException.h | 27 /// Per-function flag to indicate if personality info should be emitted. 30 /// Per-function flag to indicate if the LSDA should be emitted. 33 /// Per-function flag to indicate if frame moves info should be emitted. 105 /// Gather pre-function exception information. Assumes being emitted
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MSA.txt | 37 same shuffle. ilvev.d will be emitted instead. 41 same shuffle. ilvod.d will be emitted instead. 49 shf.w will be emitted instead. 67 the same operation and will be emitted instead. 78 operation with the operands swapped. bmnzi.v will (currently) be emitted 83 bmnzi.b and bmzi.b and can be emitted.
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DiagnosticInfo.h | 266 /// be emitted in the message. 321 /// \p Fn is the function where the diagnostic is being emitted. \p Loc is 452 /// camel-case). \p Fn is the function where the diagnostic is being emitted. 514 /// be emitted. 627 /// camel-case). \p Fn is the function where the diagnostic is being emitted. 648 /// remark. The string \p Prepend will be emitted before the original 662 /// \p Fn is the function where the diagnostic is being emitted. \p Loc is 693 /// be emitted. \p RemarkName is a textual identifier for the remark (single- 721 /// diagnostic will be emitted. \p Fn is the function where the diagnostic 722 /// is being emitted [all...] |
/freebsd-src/contrib/libxo/libxo/ |
H A D | xo_attr.3 | 32 and is attached to the next field that is emitted via a 55 Since attributes are only emitted in XML, their use should be limited 57 already emitted in other form.
|
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SDNodeDbgValue.h | 153 bool Emitted = false; variable 228 /// SDDbgValue has been emitted to an MBB. 229 void setIsEmitted() { Emitted = true; } in setIsEmitted() 230 bool isEmitted() const { return Emitted; } in isEmitted() 232 /// clearIsEmitted - Reset Emitted flag, for certain special cases where 233 /// SDDbgValue is emitted twice. DBG_INSTR_REF depends on this behaviour. 234 void clearIsEmitted() { Emitted = false; } in clearIsEmitted()
|
/freebsd-src/contrib/libucl/ |
H A D | README.md | 392 jansson: emitted object in 0.2609 seconds 395 ucl: emitted config in 0.2423 seconds 396 ucl: emitted json in 0.2329 seconds 397 ucl: emitted compact json in 0.1811 seconds 398 ucl: emitted yaml in 0.2489 seconds 405 ucl: emitted config in 0.1174 seconds 406 ucl: emitted json in 0.1174 seconds 407 ucl: emitted compact json in 0.0991 seconds 408 ucl: emitted yaml in 0.1354 seconds
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Remarks/ |
H A D | RemarkStreamer.h | 17 // diagnostics to llvm::remarks::Remark objects as they get emitted. 49 /// The filename that the remark diagnostics are emitted to. 56 /// Return the filename that the remark diagnostics are emitted to. 60 /// Return stream that the remark diagnostics are emitted to.
|
H A D | BitstreamRemarkContainer.h | 34 /// * standalone: the metadata and the remarks are emitted together. 36 /// The metadata emitted separately. 42 /// The remarks emitted separately. 47 /// Everything is emitted together.
|
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenCLRuntime.h | 89 /// Record invoke function and block literal emitted during normal 93 /// \param InvokeF invoke function emitted for the block expression. 94 /// \param Block block literal emitted for the block expression. 98 /// \return LLVM block invoke function emitted for an expression derived from
|
H A D | CodeGenModule.h | 361 /// Decls that were DeferredDecls and have now been emitted. 383 /// List of alias we have emitted. Used to make sure that what they point to 387 /// List of multiversion functions to be emitted. This list is processed in 389 /// multiversion function resolvers and ifuncs are defined and emitted. 400 /// Variables for which we've emitted globals containing their constant 412 /// A queue of (optional) vtables that may be emitted opportunistically. 422 /// be emitted when the translation unit is complete. 426 /// emitted when the translation unit is complete. 436 // Store deferred function annotations so they can be emitted at the end with 481 /// order. Once the decl is emitted, th [all...] |
H A D | CGOpenCLRuntime.cpp | 125 /// Record emitted llvm invoke function and llvm block literal for the 130 assert(!EnqueuedBlockMap.contains(E) && "Block expression emitted twice"); in recordBlockInfo() 151 assert(EnqueuedBlockMap.contains(Block) && "Block expression not emitted"); in emitOpenCLEnqueuedBlock() 153 // Do not emit the block wrapper again if it has been emitted. in emitOpenCLEnqueuedBlock()
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
H A D | BitCodeEnums.h | 49 /// of a vbr5 for # operand infos. Each operand info is emitted with a 51 /// emitted with a vbr8. If not, the encoding is emitted as 3 bits followed 55 // UNABBREV_RECORDs are emitted with a vbr6 for the record code, followed by
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | DebugHandlerBase.h | 94 /// Maps instruction with label emitted before instruction. 99 /// Maps instruction with label emitted after instruction. 106 /// Ensure that a label will be emitted before MI. 111 /// Ensure that a label will be emitted after MI.
|
H A D | ScheduleHazardRecognizer.h | 38 NoHazard, // This instruction can be emitted at this cycle. 39 Hazard, // This instruction can't be emitted at this cycle. 40 NoopHazard // This instruction can't be emitted, and needs noops. 70 /// emitted, to advance the hazard state.
|
H A D | SwitchLoweringUtils.h | 113 // Set when no comparison should be emitted. 119 // case no comparison gets emitted. 189 bool Emitted; member 195 Emitted(E) {} in First() 218 bool Emitted; member 231 RegVT(RgVT), Emitted(E), ContiguousRange(CR), Parent(P), Default(D), in BitTestBlock()
|
H A D | MachineJumpTableInfo.h | 45 /// represented and emitted. 65 /// If the .set directive is supported, this is emitted as: 76 /// EK_Inline - Jump table entries are emitted inline at their point of 111 /// prevent it from being emitted.
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Frontend/Offloading/ |
H A D | OffloadWrapper.h | 22 /// \param Suffix An optional suffix appended to the emitted symbols. 35 /// \param Suffix An optional suffix appended to the emitted symbols. 46 /// \param Suffix An optional suffix appended to the emitted symbols.
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetMachine.h | 296 /// Return true if data objects should be emitted into their own section, in getDataSections() 302 /// Return true if functions should be emitted into their own section, in getFunctionSections() 308 /// Return true if visibility attribute should not be emitted in XCOFF, in getIgnoreXCOFFVisibility() 314 /// Return true if XCOFF traceback table should be emitted, 318 /// If basic blocks should be emitted into their own section, in getBBSectionsType() 379 /// emitted. Typically this will involve several steps of code generation. 392 /// Add passes to the specified pass manager to get machine code emitted with 463 /// emitted. Typically this will involve several steps of code generation. in buildCodeGenPipeline() 480 /// Add passes to the specified pass manager to get machine code emitted with
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPTProperties.td | 14 "PSB block is stopped. An error is hence emitted in the trace and " 22 "corresponding PSB block. An error is hence emitted in the trace and "
|