OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputFile
(Results
1 - 10
of
10
) sorted by relevancy
/src/external/bsd/zstd/dist/contrib/pzstd/test/
RoundTripTest.cpp
49
Options generateOptions(Generator& gen, const string&
inputFile
) {
51
options.inputFiles = {
inputFile
};
72
auto
inputFile
= generateInputFile(gen);
73
auto inputGuard = makeScopeGuard([&] { std::remove(
inputFile
.c_str()); });
75
auto options = generateOptions(gen,
inputFile
);
80
std::fprintf(stderr, "file: %s\n",
inputFile
.c_str());
PzstdTest.cpp
34
std::string
inputFile
= std::tmpnam(nullptr);
35
auto guard = makeScopeGuard([&] { std::remove(
inputFile
.c_str()); });
39
auto fd = std::fopen(
inputFile
.c_str(), "wb");
52
options.inputFiles = {
inputFile
};
69
std::string
inputFile
= std::tmpnam(nullptr);
70
auto guard = makeScopeGuard([&] { std::remove(
inputFile
.c_str()); });
74
auto fd = std::fopen(
inputFile
.c_str(), "wb");
87
options.inputFiles = {
inputFile
};
103
std::string
inputFile
= std::tmpnam(nullptr);
104
auto guard = makeScopeGuard([&] { std::remove(
inputFile
.c_str()); })
[
all
...]
/src/external/apache2/mDNSResponder/dist/Clients/dnssdutil/
dns-rcode-func-autogen
80
local -r
inputFile
=${1}
84
< "${
inputFile
}" sort --field-separator=, --key=2,2 --numeric-sort --unique |
133
local -r
inputFile
=${1}
138
< "${
inputFile
}" sort --field-separator=, --key=2,2 --numeric-sort --unique |
155
local -r
inputFile
=${1}
176
< "${
inputFile
}" sort --field-separator=, --key=1,1 --ignore-case --unique |
dns-rr-func-autogen
76
local -r
inputFile
=${1}
79
< "${
inputFile
}" sort --field-separator=, --key=2,2 --numeric-sort --unique |
129
local -r
inputFile
=${1}
134
< "${
inputFile
}" sort --field-separator=, --key=2,2 --numeric-sort --unique |
156
local -r
inputFile
=${1}
176
< "${
inputFile
}" sort --field-separator=, --key=1,1 --ignore-case --unique |
/src/external/bsd/zstd/dist/contrib/pzstd/
Options.h
69
std::string getOutputFile(const std::string &
inputFile
) const;
Options.cpp
408
std::string Options::getOutputFile(const std::string &
inputFile
) const {
414
int stemSize =
inputFile
.size() - kZstdExtension.size();
415
if (stemSize > 0 &&
inputFile
.substr(stemSize) == kZstdExtension) {
416
return
inputFile
.substr(0, stemSize);
421
return
inputFile
+ kZstdExtension;
Pzstd.cpp
53
const std::string &
inputFile
,
58
auto inputSize = fileSizeOrZero(
inputFile
);
94
std::string inputFileName =
inputFile
== "-" ? "stdin" :
inputFile
;
111
static FILE *openInputFile(const std::string &
inputFile
,
113
if (
inputFile
== "-") {
120
if (is_directory(
inputFile
, ec)) {
125
auto inputFd = std::fopen(
inputFile
.c_str(), "rb");
/src/external/gpl2/groff/dist/src/preproc/html/
pre-html.cpp
1504
static char_buffer
inputFile
;
1750
ok =
inputFile
.do_image(argc, argv);
1753
ok =
inputFile
.do_html(argc, argv);
1773
if (
inputFile
.read_file(fp)) {
/src/external/bsd/zstd/dist/programs/
util.c
650
FILE* const
inputFile
= fopen(inputFileName, "r");
654
if(!
inputFile
) {
659
while ( !feof(
inputFile
) ) {
660
size_t const lineLength = readLineFromFile(buf+pos, dstCapacity-pos,
inputFile
);
662
assert(pos + lineLength <= dstCapacity); /* '=' for
inputFile
not terminated with '\n' */
667
CONTROL( fclose(
inputFile
) == 0 );
/src/external/public-domain/sqlite/dist/autosetup/
jimsh0.c
5700
* on "
inputFile
". NULL means take input
5709
int
inputFile
= FILE_NAME; /* 1 means input is name of input file.
5765
inputFile
= FILE_NAME;
5768
inputFile
= FILE_TEXT;
5773
inputFile
= FILE_HANDLE;
5855
if (
inputFile
== FILE_TEXT) {
5867
else if (
inputFile
== FILE_HANDLE) {
Completed in 81 milliseconds
Indexes created Wed Apr 29 00:23:26 UTC 2026