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

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
RegisterValue.cpp 38 auto Output = getFloatValue(FltSemantics, PredefinedValues::ONE);
39 Output.next(false);
40 return Output;
  /src/sys/external/bsd/gnu-efi/dist/lib/
console.c 25 Output (
print.c 87 // Output
100 INTN (EFIAPI *Output)(VOID *context, CHAR16 *str);
225 ps.Output = _DbgOut;
408 IN INTN (EFIAPI *Output)(VOID *context, CHAR16 *str)
415 ps.Output = Output;
440 Str - Output buffer to print the formatted string into
482 Str - Output buffer to print the formatted string into
786 ps.Output = (INTN (EFIAPI *)(VOID *, CHAR16 *)) Out->OutputString;
862 Str - Output buffer to print the formatted string int
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Transformer/
MatchConsumer.h 96 T Output;
97 if (auto Err = eval(R, &Output))
99 return Output;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
CompilationDatabase.h 47 std::vector<std::string> CommandLine, const Twine &Output)
49 CommandLine(std::move(CommandLine)), Output(Output.str()) {}
60 /// The output file associated with the command.
61 std::string Output;
70 LHS.CommandLine == RHS.CommandLine && LHS.Output == RHS.Output &&
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptCppFilter.cpp 30 // the output.
43 std::vector<StringRef> Output;
52 Output.push_back(Line);
55 return llvm::join(Output, "");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 173 const MachineOperand &Output = phi->getOperand(0);
175 Register OutputReg = Output.getReg();
176 assert(Output.getSubReg() == 0 && "Cannot have output subregister");
189 // insert a COPY instead of simply replacing the output
  /src/external/bsd/ppp/dist/pppd/
crypto_ms.c 233 unsigned char Output[8];
236 if (DesDecrypt(Response + 0, ZPasswordHash + 0, Output)) {
237 failure += memcmp(Challenge, Output, sizeof(Challenge));
240 if (DesDecrypt(Response + 8, ZPasswordHash + 7, Output)) {
241 failure += memcmp(Challenge, Output, sizeof(Challenge));
244 if (DesDecrypt(Response +16, ZPasswordHash +14, Output)) {
245 failure += memcmp(Challenge, Output, sizeof(Challenge));
  /src/crypto/dist/ipsec-tools/misc/
cvs2cl.pl 8 ### cvs2cl.pl: produce ChangeLog(s) from `cvs log` output. ###
43 # So, we parse the output of `cvs log', storing log messages in a
181 # Output log in chronological order? [default is reverse chronological order]
190 # Output to a file or to stdout?
196 # Tags of which not to output
228 # Set iff output should be like an FSF-style ChangeLog.
234 # Show times in output?
237 # Show day of week in output?
240 # Show revision numbers in output?
243 # Show dead files in output
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 34 unsigned Output;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
FloatingPointMode.h 85 DenormalModeKind Output = DenormalModeKind::Invalid;
94 Output(Out), Input(In) {}
116 return Output == Other.Output && Input == Other.Input;
124 return Input == Output;
128 return Output != DenormalModeKind::Invalid &&
179 Mode.Output = parseDenormalFPAttributeComponent(OutputStr);
183 Mode.Input = InputStr.empty() ? Mode.Output :
190 OS << denormalModeKindName(Output) << ',' << denormalModeKindName(Input);
StringExtras.h 166 std::string Output;
167 Output.reserve(2 * Length);
170 Output.push_back(LUT[c >> 4] | Offset);
171 Output.push_back(LUT[c & 15] | Offset);
173 return Output;
205 /// the result in \p Output. Returns true if the binary representation could be
207 /// non-hexadecimal digits. The output string is half the size of \p Input.
208 inline bool tryGetFromHex(StringRef Input, std::string &Output) {
212 Output.reserve((Input.size() + 1) / 2);
218 Output.push_back(Hex)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ExecutionDriver.cpp 78 cl::desc("Append the exit code to the output so it gets diff'd too"),
111 OutputPrefix("output-prefix", cl::init("bugpoint"),
279 /// This method runs "Program", capturing the output of the program to a file,
317 OutputFile = OutputPrefix + "-execution-output-%%%%%%%";
319 // Check to see if this is a valid output filename...
363 // Return the filename we captured the output to.
367 /// Used to create reference output with the "safe" backend, if reference output
397 /// Calls compileProgram and then records the output into ReferenceOutputFile.
419 outs() << "\nReference output is: " << ReferenceOutputFile << "\n\n"
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
HIP.cpp 42 const InputInfo &Output,
45 // The output from ld.lld is an HSA code object file.
53 addLTOOptions(TC, Args, LldArgs, Output, Inputs[0], IsThinLTO);
85 LldArgs.append({"-o", Output.getFilename()});
97 Lld, LldArgs, Inputs, Output));
133 std::string Output = std::string(OutputFileName);
135 Args.MakeArgString(std::string("-outputs=").append(Output));
142 InputInfo(&JA, Args.MakeArgString(Output))));
150 Compilation &C, const InputInfo &Output,
155 std::string(llvm::sys::path::stem(Output.getFilename()))
    [all...]
MinGW.cpp 31 const InputInfo &Output,
47 CmdArgs.push_back(Output.getFilename());
54 Exec, CmdArgs, Inputs, Output));
57 SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output,
58 SplitDebugName(JA, Args, Inputs[0], Output));
95 const InputInfo &Output,
165 const char *OutputFile = Output.getFilename();
166 // GCC implicitly adds an .exe extension if it is given an output file name
324 Exec, CmdArgs, Inputs, Output));
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SarifDiagnostics.cpp 35 SarifDiagnostics(const std::string &Output, const LangOptions &LO)
36 : OutputFile(Output), LO(LO) {}
51 const std::string &Output, const Preprocessor &PP,
56 if (Output.empty())
59 C.push_back(new SarifDiagnostics(Output, PP.getLangOpts()));
60 createTextMinimalPathDiagnosticConsumer(std::move(DiagOpts), C, Output, PP,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
JSONCompilationDatabase.cpp 323 auto Output = std::get<3>(CommandRef);
328 Output ? Output->getValue(OutputStorage) : "");
357 llvm::yaml::ScalarNode *Output = nullptr;
399 } else if (KeyValue == "output") {
400 Output = ValueString;
433 auto Cmd = CompileCommandRef(Directory, File, *Command, Output);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
Stencil.cpp 183 std::string Output;
184 llvm::raw_string_ostream Os(Output);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
RustDemangle.h 71 // When true, print methods append the output to the stream.
72 // When false, the output is suppressed.
79 // Demangled output.
80 OutputStream Output;
107 Output += C;
114 Output += S;
121 Output << N;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
llvm-readobj.cpp 10 // formats. The main purpose of this tool is to provide detailed output suitable
13 // Flags should be similar to readelf where supported, but the output format
17 // Output should be specialized for each format where appropriate.
151 "symbol table when using GNU output style for ELF"));
212 cl::desc("Demangle symbol names in output"));
379 // -elf-output-style
381 Output("elf-output-style", cl::desc("Specify ELF dump style"),
395 // Flush the standard output to print the error at a
416 // Flush the standard output to print the warning at
    [all...]
  /src/external/mit/lua/dist/src/
luac.c 34 #define OUTPUT PROGNAME ".out" /* default output file */
39 static char Output[]={ OUTPUT }; /* default output file name */
40 static const char* output=Output; /* actual output file name */ variable
52 fprintf(stderr,"%s: cannot %s %s: %s\n",progname,what,output,strerror(errno));
66 " -o name output to file 'name' (default is \"%s\")\n
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TFUtils.cpp 83 /// feature name in the output is either the provided LoggingName, if
154 : OutputSize(OutputSize), Output(OutputSize){};
157 for (auto *P : Output)
164 std::vector<TF_Tensor *> &getOutput() { return Output; }
168 std::vector<TF_Tensor *> Output;
230 Ctx.emitError("Error opening output specs file: " + FileName + " : " +
265 "Unable to parse output spec. It should be a json file containing an "
273 Ctx.emitError("The first output spec must describe the decision tensor, "
291 void evaluate(TF_Tensor **Output, TF_Status *Status) {
293 Input.size(), OutputFeed.data(), Output, OutputFeed.size()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendActions.cpp 205 // If no output file was provided, figure out where this module would go
453 llvm::yaml::Output YO(OS);
720 // Set up the output file.
798 // Output file may need to be set to 'Binary', to avoid converting Unix style
804 // In this fashion, the output format should match the input format, unless
950 llvm::SmallString<1024> Output;
953 FromFile.getBuffer(), Output, Toks, &CI.getDiagnostics(),
972 llvm::outs() << Output;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
YAMLTraits.cpp 465 // Output
468 Output::Output(raw_ostream &yout, void *context, int WrapColumn)
471 Output::~Output() = default;
473 bool Output::outputting() const {
477 void Output::beginMapping() {
483 bool Output::mapTag(StringRef Tag, bool Use) {
496 output(" ");
498 output(Tag)
780 void Output::output(StringRef s) { function in class:Output
882 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
894 void ScalarTraits<StringRef>::output(const StringRef &Val, void *, function in class:ScalarTraits
905 void ScalarTraits<std::string>::output(const std::string &Val, void *, function in class:ScalarTraits
916 void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *, function in class:ScalarTraits
933 void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *, function in class:ScalarTraits
949 void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *, function in class:ScalarTraits
965 void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *, function in class:ScalarTraits
979 void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
995 void ScalarTraits<int16_t>::output(const int16_t &Val, void *, function in class:ScalarTraits
1010 void ScalarTraits<int32_t>::output(const int32_t &Val, void *, function in class:ScalarTraits
1025 void ScalarTraits<int64_t>::output(const int64_t &Val, void *, function in class:ScalarTraits
1038 void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
1048 void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
1058 void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
1072 void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
1086 void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
1100 void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
1112 void ScalarTraits<VersionTuple>::output(const VersionTuple &Val, void *, function in class:ScalarTraits
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ScheduleDAG.h 55 Output, ///< A register output-dependence (aka WAW).
84 /// For Data, Anti, and Output dependencies, the associated register. For
110 case Output:
112 "SDep::Anti and SDep::Output must use a non-zero Reg!");
216 /// Data, Anti, and Output edges. On Data edges, this value may be zero,
219 assert((getKind() == Data || getKind() == Anti || getKind() == Output) &&
225 /// Data, Anti, and Output edges. On Anti and Output edges, this value must
229 assert((getKind() == Data || getKind() == Anti || getKind() == Output) &
    [all...]

Completed in 62 milliseconds

1 2