/freebsd/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/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 43 /// emitted before the data is committed. 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 181 /// emitted: Some targets do not provide a DWARF register number for every 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 to.
|
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/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/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaCUDA.h | 60 /// FunctionDecls and SourceLocations for which CheckCall has emitted a 65 /// An inverse call graph, mapping known-emitted functions to one of their 66 /// known-emitted callers (plus the location of the call). 68 /// Functions that we can tell a priori must be emitted aren't added to this 82 /// the device, creates a diagnostic which is emitted if and when we realize 109 CVT_Device, /// Emitted on device side with a shadow variable on host side 110 CVT_Host, /// Emitted on host side only 111 CVT_Both, /// Emitted on both sides with different addresses 112 CVT_Unified, /// Emitted as a unified address, e.g. managed variables 114 /// Determines whether the given variable is emitted on host or device side. [all …]
|
/freebsd/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. \p Loc is the location information to use in the [all …]
|
/freebsd/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/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/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/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/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/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | SwitchLoweringUtils.h | 113 // Set when no comparison should be emitted. 119 // case no comparison gets emitted. 189 bool Emitted; 195 Emitted(E) {} 218 bool Emitted; 231 RegVT(RgVT), Emitted(E), ContiguousRange(CR), Parent(P), Default(D), 185 bool Emitted; global() member 214 bool Emitted; global() member
|
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 | 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.
|
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 | FastISel.h | 231 /// Return the position of the last instruction emitted for 235 /// Update the position of the last instruction emitted for 353 /// instruction with the given type and opcode be emitted. 357 /// instruction with the given type, opcode, and register operand be emitted. 361 /// instruction with the given type, opcode, and register operands be emitted. 367 /// operands be emitted. 380 /// instruction with the given type, opcode, and immediate operand be emitted. 385 /// operand be emitted.
|
/freebsd/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/contrib/llvm-project/clang/lib/CodeGen/ |
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, the index is replaced with ~0U to ensure [all …]
|
/freebsd/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, 302 /// Return true if functions should be emitted into their own section, 308 /// Return true if visibility attribute should not be emitted in XCOFF, 314 /// Return true if XCOFF traceback table should be emitted, 318 /// If basic blocks should be emitted into their own section, 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. 480 /// Add passes to the specified pass manager to get machine code emitted with
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.h | 65 // Used to buffer the emitted string for initializing global aggregates. 67 // Normally an aggregate (array, vector, or structure) is emitted as a u8[]. 70 // emitted as u32[] or u64[]. In the case of unaligned addresses, the 71 // aggregate is emitted as u8[], and the mask() operator is used for all 267 // Global variables have been already emitted by the time the base AsmPrinter
|