| /freebsd/contrib/libucl/tests/ |
| H A D | test_speed.c | 75 unsigned char *emitted; in main() local 118 emitted = ucl_object_emit (obj, UCL_EMIT_CONFIG); in main() 122 printf ("ucl: emitted config in %.4f seconds\n", seconds); in main() 124 free (emitted); in main() 127 emitted = ucl_object_emit (obj, UCL_EMIT_JSON); in main() 131 printf ("ucl: emitted json in %.4f seconds\n", seconds); in main() 133 free (emitted); in main() 136 emitted = ucl_object_emit (obj, UCL_EMIT_JSON_COMPACT); in main() 140 printf ("ucl: emitted compact json in %.4f seconds\n", seconds); in main() 142 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 | 70 /// FunctionDecls and SourceLocations for which CheckCall has emitted a 75 /// An inverse call graph, mapping known-emitted functions to one of their 76 /// known-emitted callers (plus the location of the call). 78 /// Functions that we can tell a priori must be emitted aren't added to this 92 /// the device, creates a diagnostic which is emitted if and when we realize 119 CVT_Device, /// Emitted on device side with a shadow variable on host side 120 CVT_Host, /// Emitted on host side only 121 CVT_Both, /// Emitted on both sides with different addresses 122 CVT_Unified, /// Emitted as a unified address, e.g. managed variables 124 /// Determines whether the given variable is emitted on host or device side. [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSectionGOFF.cpp | 109 Emitted = true; in printSwitchToSection() 114 if (!Emitted) { in printSwitchToSection() 119 Emitted = true; in printSwitchToSection() 127 if (!Emitted) { in printSwitchToSection() 134 ED->Emitted = true; in printSwitchToSection() 135 Emitted = true; in printSwitchToSection()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSectionGOFF.h | 30 // Parent of this section. Implies that the parent is emitted first. 51 // Set to true if the section definition was already emitted. 52 mutable unsigned Emitted : 1; variable 62 RequiresNonZeroLength(0), Emitted(0) {} in MCSectionGOFF() 69 RequiresNonZeroLength(0), Emitted(0) {} in MCSectionGOFF() 76 RequiresNonZeroLength(0), Emitted(0) {} in MCSectionGOFF()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DiagnosticInfo.h | 295 /// be emitted in the message. 351 /// \p Fn is the function where the diagnostic is being emitted. \p Loc is 537 /// CamelCase). \p Fn is the function where the diagnostic is being emitted. 599 /// be emitted. 678 /// CamelCase). \p Fn is the function where the diagnostic is being emitted. 698 /// remark. The string \p Prepend will be emitted before the original 712 /// \p Fn is the function where the diagnostic is being emitted. \p Loc is 743 /// be emitted. \p RemarkName is a textual identifier for the remark (single- 771 /// diagnostic will be emitted. \p Fn is the function where the diagnostic 772 /// is being emitted. \p Loc is the location information to use in the [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/ |
| H A D | SystemZHLASMAsmStreamer.cpp | 18 // Comments are emitted on a new line before the instruction. in EmitEOL() 49 size_t Emitted = ContIndicatorColumn - 1; in EmitEOL() local 51 while (Emitted < S.length()) { in EmitEOL() 52 if ((S.length() - Emitted) < ContLen) in EmitEOL() 53 TmpSubStr = S.substr(Emitted, S.length()); in EmitEOL() 55 TmpSubStr = S.substr(Emitted, ContLen); in EmitEOL() 63 Emitted += ContLen - 1; in EmitEOL()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SDNodeDbgValue.h | 154 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/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. 194 bool Emitted; member 200 Emitted(E) {} in First() 223 bool Emitted; member 236 RegVT(RgVT), Emitted(E), ContiguousRange(CR), Parent(P), Default(D), in BitTestBlock()
|
| 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 | DebugHandlerBase.h | 90 /// Maps instruction with label emitted before instruction. 95 /// Maps instruction with label emitted after instruction. 102 /// Ensure that a label will be emitted before MI. 107 /// Ensure that a label will be emitted after MI.
|
| H A D | MachineJumpTableInfo.h | 51 /// represented and emitted. 71 /// If the .set directive is supported, this is emitted as: 82 /// EK_Inline - Jump table entries are emitted inline at their point of 123 /// prevent it from being emitted.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXLowerUnreachable.cpp | 9 // PTX does not have a notion of `unreachable`, which results in emitted basic 109 // Returns whether a `trap` intrinsic would be emitted before I. 115 // We've already emitted a non-continuable trap. in isLoweredToTrap() 119 // No traps are emitted for calls that do not return in isLoweredToTrap() 148 continue; // trap is emitted as `trap; exit;`. in runOnFunction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Offloading/ |
| H A D | OffloadWrapper.h | 23 /// \param Suffix An optional suffix appended to the emitted symbols. 35 /// \param Suffix An optional suffix appended to the emitted symbols. 48 /// \param Suffix An optional suffix appended to the emitted symbols.
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenModule.h | 407 /// Decls that were DeferredDecls and have now been emitted. 429 /// List of alias we have emitted. Used to make sure that what they point to 433 /// List of multiversion functions to be emitted. This list is processed in 435 /// multiversion function resolvers and ifuncs are defined and emitted. 446 /// Variables for which we've emitted globals containing their constant 458 /// A queue of (optional) vtables that may be emitted opportunistically. 468 /// be emitted when the translation unit is complete. 472 /// emitted when the translation unit is complete. 482 // Store deferred function annotations so they can be emitted at the end with 527 /// order. Once the decl is emitted, the index is replaced with ~0U to ensure [all …]
|