Searched refs:output (Results 226 - 250 of 934) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h107 /// Create an IO redirect. If IO is enabled, this will redirects the output
119 /// Flush our output and error file handles.
124 std::unique_ptr<File> output);
190 std::string &output,
199 std::string &output,
205 std::string &output,
211 std::string &output,
217 std::string &output) {
221 virtual bool GenerateTypeSynthClass(StringList &input, std::string &output, argument
226 virtual bool GenerateTypeSynthClass(const char *oneliner, std::string &output, argument
189 GenerateBreakpointCommandCallbackData(StringList &input, std::string &output, bool has_extra_args, bool is_callback) argument
198 GenerateWatchpointCommandCallbackData(StringList &input, std::string &output, bool is_callback) argument
204 GenerateTypeScriptFunction(const char *oneliner, std::string &output, const void *name_token = nullptr) argument
210 GenerateTypeScriptFunction(StringList &input, std::string &output, const void *name_token = nullptr) argument
216 GenerateScriptAliasFunction(StringList &input, std::string &output) argument
476 RunScriptFormatKeyword(const char *impl_function, Process *process, std::string &output, Status &error) argument
483 RunScriptFormatKeyword(const char *impl_function, Thread *thread, std::string &output, Status &error) argument
489 RunScriptFormatKeyword(const char *impl_function, Target *target, std::string &output, Status &error) argument
495 RunScriptFormatKeyword(const char *impl_function, StackFrame *frame, std::string &output, Status &error) argument
502 RunScriptFormatKeyword(const char *impl_function, ValueObject *value, std::string &output, Status &error) argument
[all...]
/freebsd-current/sys/arm/nvidia/drm2/
H A Dtegra_hdmi.c198 struct tegra_drm_encoder output; member in struct:hdmi_softc
258 hdmi_setup_clock(struct tegra_drm_encoder *output, clk_t clk, uint64_t pclk) argument
264 sc = device_get_softc(output->dev);
282 device_printf(output->dev,
290 device_printf(output->dev, "Cannot set parent clock\n");
295 device_printf(output->dev,
301 device_printf(output->dev,
320 device_printf(output->dev,
408 size = drm_eld_size(sc->output.connector.eld);
412 val |= sc->output
891 struct tegra_drm_encoder *output; local
960 struct tegra_drm_encoder *output; local
975 struct tegra_drm_encoder *output; local
[all...]
/freebsd-current/contrib/mandoc/
H A Dmain.c86 void *outdata; /* data for output */
89 int had_output; /* Some output was generated. */
90 enum outt outtype; /* which output to use */
126 struct manconf conf; /* Manpaths and output options. */
138 char *oarg; /* -O: output option string. */
237 conf.output.synopsisonly = 1;
372 if (manconf_output(&conf.output,
379 if (outst.outtype != OUTT_TREE || conf.output.noval == 0)
384 (conf.output.outfilename == NULL &&
385 conf.output
[all...]
/freebsd-current/contrib/dialog/samples/
H A Ddialog.py82 """Do the actual work of invoking dialog and getting the output."""
86 output = f.readlines() variable in class:Dialog
89 return (rv, output)
110 (code, output) = self.__perform(self.__handleTitle(title) +\
164 (code, output) = self.__perform('--menu "%s" %d %d %d %s' %\
167 return list[int(output[0]) - 1]
191 output = o[0]
192 indexList = map(lambda x: int(x[1:-1]), split(output))
254 Display gauge output window.
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubCommon.cpp22 void ScalarTraits<FlowStringRef>::output(const FlowStringRef &Value, void *Ctx, function in class:llvm::yaml::ScalarTraits
24 ScalarTraits<StringRef>::output(Value, Ctx, OS);
45 void ScalarTraits<PlatformSet>::output(const PlatformSet &Values, void *IO, function in class:llvm::yaml::ScalarTraits
142 void ScalarTraits<Architecture>::output(const Architecture &Value, void *, function in class:llvm::yaml::ScalarTraits
155 void ScalarTraits<PackedVersion>::output(const PackedVersion &Value, void *, function in class:llvm::yaml::ScalarTraits
169 void ScalarTraits<SwiftVersion>::output(const SwiftVersion &Value, void *, function in class:llvm::yaml::ScalarTraits
220 void ScalarTraits<UUID>::output(const UUID &Value, void *, raw_ostream &OS) {} function in class:llvm::yaml::ScalarTraits
/freebsd-current/sys/contrib/zstd/examples/
H A Dstreaming_compression.c24 /* Open the input and output files. */
27 /* Create the input and output buffers.
48 * and writes all output produced to the output file.
63 * output.
68 /* Compress into the output buffer and write all of the output to
71 ZSTD_outBuffer output = { buffOut, buffOutSize, 0 }; local
72 size_t const remaining = ZSTD_compressStream2(cctx, &output , &input, mode);
74 fwrite_orDie(buffOut, output
[all...]
H A Dmultiple_streaming_compression.c59 // Open the input and output files.
81 ZSTD_outBuffer output = { ress.buffOut, ress.buffOutSize, 0 }; local
82 size_t const remaining = ZSTD_compressStream2(ress.cctx, &output, &input, mode);
84 fwrite_orDie(ress.buffOut, output.pos, fout);
/freebsd-current/contrib/less/
H A Dmkutable89 output(\%out, $last_code,
93 output(\%out, $last_code);
97 sub output { subroutine
/freebsd-current/crypto/openssl/apps/
H A Dtsget.in122 print STDERR "usage: $0 -h <server_url> [-e <extension>] [-o <output>] ";
160 my $output = defined($options{o}) ? $options{o} : $path . $output_base;
187 if ($output eq "-") {
192 open OUTPUT, ">", $output
193 or warn("$output: could not open output file: $!\n"), next REQUEST;
196 or warn("$output: could not close output file: $!\n"), next REQUEST;
198 STDERR->printflush(", $output written.\n") if $options{v};
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h57 bool GenerateTypeScriptFunction(StringList &input, std::string &output,
60 bool GenerateTypeSynthClass(StringList &input, std::string &output,
63 bool GenerateTypeSynthClass(const char *oneliner, std::string &output,
67 bool GenerateTypeScriptFunction(const char *oneliner, std::string &output,
71 std::string &output) override;
189 std::string &output,
194 std::string &output,
224 std::string &output, Status &error) override;
227 std::string &output, Status &error) override;
230 std::string &output, Statu
[all...]
/freebsd-current/contrib/kyua/utils/process/
H A Dchild.hpp93 std::istream& output(void);
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Dtst.temporal.ksh23 # temporal option causes output to be sorted
82 echo $tst: output is not sorted
102 echo $tst: incorrect number of lines output
/freebsd-current/contrib/atf/atf-sh/
H A Dintegration_test.sh29 local output="${1}"; shift
30 echo "#! ${ATF_SH} ${*}" >"${output}"
31 cat >>"${output}"
32 chmod +x "${output}"
/freebsd-current/contrib/dialog/
H A Drun_test.sh39 OUTPUT=output.rc
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.h85 ZSTD_outBuffer* output,
91 * Probe the oldest active job (not yet entirely flushed) and check its output buffer.
103 * tells how much data has been consumed (input) and produced (output) for current frame.
/freebsd-current/contrib/bmake/unit-tests/
H A Dexport.mk21 # as a shell command and assign its output
33 # shell filters it out. To reach consistent output for each shell, the
/freebsd-current/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3.c206 output_t output = chunk_state_output(&chunk_state); local
207 output_chaining_value(&output, &out[chunks_array_len * BLAKE3_OUT_LEN]);
217 // return it as an additional output.) These parents are never the root and
243 // If there's an odd child left over, it becomes an output.
317 // right_n=1. Rather than compressing them into a single output, return
336 // for extended output in the general case.
416 output_t output = parent_output(parent_node, self->key, self->chunk.flags); local
417 output_chaining_value(&output, parent_node);
452 // remain unmerged. (That also helps us support extendable output when we're
487 output_t output local
539 output_t output = chunk_state_output(&chunk_state); local
592 output_t output = chunk_state_output(&self->chunk); local
603 output_t output; local
[all...]
/freebsd-current/sys/contrib/openzfs/module/icp/algs/blake3/
H A Dblake3.c260 output_t output = chunk_state_output(&chunk_state); local
261 output_chaining_value(ops, &output, &out[chunks_array_len *
273 * return it as an additional output.) These parents are never the root and
292 /* If there's an odd child left over, it becomes an output. */
381 * and right_n=1. Rather than compressing them into a single output,
403 * for extended output in the general case.
458 output_t output = local
460 output_chaining_value(ctx->ops, &output, parent_node);
496 * remain unmerged. (That also helps us support extendable output when we're
555 output_t output local
622 output_t output = chunk_state_output(&chunk_state); local
698 output_t output = chunk_state_output(&ctx->chunk); local
711 output_t output; local
[all...]
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-catch-exceptions-test.py35 Google Test) and verifies their output.
70 ).output
75 BINARY_OUTPUT = gtest_test_utils.Subprocess([EXE_PATH], env=environ).output
79 ).output
305 ).output
H A Dgoogletest-global-environment-unittest.py43 """Runs the test program and returns its output."""
52 ).output
/freebsd-current/usr.sbin/jail/
H A DMakefile32 CLEANFILES= y.output
/freebsd-current/lib/libc/tests/stdio/
H A Dsnprintf_test.c19 #define SNPRINTF_TEST(output, format, ...) \
22 assert(strlen(output) < nitems(buf)); \
25 ATF_CHECK_EQ(strlen(output), ret); \
27 ATF_CHECK_EQ(0, strcmp(output, buf)); \
H A Dswprintf_test.c20 #define SWPRINTF_TEST(output, format, ...) \
23 assert(wcslen(L##output) < nitems(buf)); \
26 ATF_CHECK_EQ(wcslen(L##output), ret); \
28 ATF_CHECK_EQ(0, wcscmp(L##output, buf)); \
/freebsd-current/usr.bin/yacc/
H A DMakefile8 SRCS= closure.c error.c graph.c lalr.c lr0.c main.c mkpar.c mstring.c output.c \
/freebsd-current/bin/sh/bltin/
H A Dbltin.h45 #include "../output.h"
47 #define FILE struct output

Completed in 392 milliseconds

1234567891011>>