HomeSort by relevance Sort by last modified time
    Searched defs:Inputs (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/google-benchmark/test/
statistics_test.cc 10 std::vector<double> Inputs;
12 Inputs = {42, 42, 42, 42};
13 double Res = benchmark::StatisticsMean(Inputs);
17 Inputs = {1, 2, 3, 4};
18 double Res = benchmark::StatisticsMean(Inputs);
22 Inputs = {1, 2, 5, 10, 10, 14};
23 double Res = benchmark::StatisticsMean(Inputs);
29 std::vector<double> Inputs;
31 Inputs = {42, 42, 42, 42};
32 double Res = benchmark::StatisticsMedian(Inputs);
    [all...]
  /external/libcxx/utils/google-benchmark/test/
statistics_test.cc 10 std::vector<double> Inputs;
12 Inputs = {42, 42, 42, 42};
13 double Res = benchmark::StatisticsMean(Inputs);
17 Inputs = {1, 2, 3, 4};
18 double Res = benchmark::StatisticsMean(Inputs);
22 Inputs = {1, 2, 5, 10, 10, 14};
23 double Res = benchmark::StatisticsMean(Inputs);
29 std::vector<double> Inputs;
31 Inputs = {42, 42, 42, 42};
32 double Res = benchmark::StatisticsMedian(Inputs);
    [all...]
  /external/python/cpython3/Lib/distutils/tests/
test_register.py 42 class Inputs(object):
43 """Fakes user inputs."""
120 inputs = Inputs('1', 'tarek', 'y')
121 register_module.input = inputs.__call__
174 inputs = Inputs('2', 'tarek', 'tarek@ziade.org')
175 register_module.input = inputs.__call__
192 inputs = Inputs('3', 'tarek@ziade.org'
    [all...]
  /external/clang/lib/Driver/
Job.cpp 32 ArrayRef<InputInfo> Inputs)
35 for (const auto &II : Inputs)
101 // In a file list, we only write the set of inputs to the response file
137 llvm::StringSet<> Inputs;
139 Inputs.insert(InputName);
145 if (Inputs.count(Arg) == 0) {
275 ArrayRef<InputInfo> Inputs,
277 : Command(Source_, Creator_, Executable_, Arguments_, Inputs),
317 ArrayRef<InputInfo> Inputs)
318 : Command(Source_, Creator_, Executable_, Arguments_, Inputs) {}
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFCopy.cpp 60 SmallVector<TargetInstrInfo::RegSubRegPairAndIdx,2> Inputs;
62 if (!TII.getRegSequenceInputs(*MI, 0, Inputs))
64 for (auto I : Inputs) {
  /external/llvm/unittests/Support/
CommandLineTest.cpp 206 const char *const Inputs[][ARGC] = {
213 for (size_t i = 0, e = array_lengthof(Inputs); i < e; ++i) {
220 cl::ParseCommandLineOptions(ARGC, Inputs[i]);
  /external/skia/src/sksl/ir/
SkSLProgram.h 86 struct Inputs {
117 Inputs inputs)
124 , fInputs(inputs) {}
134 Inputs fInputs;
  /external/skqp/src/sksl/ir/
SkSLProgram.h 84 struct Inputs {
115 Inputs inputs)
122 , fInputs(inputs) {}
132 Inputs fInputs;
  /frameworks/compile/slang/
llvm-rs-cc.cpp 130 * Compile the Inputs.
136 * Inputs - input filenames.
142 * We populate IOFiles dynamically while working through the list of Inputs.
149 const llvm::SmallVector<const char*, 16> &Inputs, slang::RSCCOptions &Opts,
162 for (int i = 0, e = Inputs.size(); i != e; i++) {
163 const char *InputFile = Inputs[i];
231 llvm::SmallVector<const char *, 16> Inputs;
235 if (!slang::ParseArguments(llvm::makeArrayRef(argv, argc), Inputs, Opts,
263 if (Inputs.empty()) {
276 makeFileList(&IOFiles32, &DepFiles32, Inputs, Opts, &SavedStrings)
    [all...]
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 113 // all inputs, direct and indirect, of compile jobs.
119 SmallVector<std::string, 2> Inputs;
133 Inputs.push_back(IA->getInputArg().getSpelling());
142 for (const driver::Action *AI : A->inputs())
254 // since Link jobs point to Assemble jobs as inputs.
259 if (CompileAnalyzer.Inputs.empty()) {
269 Args.begin(), Args.end(), MatchesAny(CompileAnalyzer.Inputs));
271 // Remove all inputs deemed unused for compilation.
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 72 static std::vector<std::string> *Inputs;
182 Inputs = new std::vector<std::string>;
185 Inputs->push_back(Args[A]);
262 if (Inputs->empty()) return false;
263 for (auto &Path : *Inputs)
321 if (!Inputs->empty())
322 Options.OutputCorpus = (*Inputs)[0];
373 Printf("%s: Running %zd inputs %d time(s) each.\n", ProgName->c_str(),
374 Inputs->size(), Runs);
375 for (auto &Path : *Inputs) {
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_atifragshader.c 39 GLfloat Inputs[2][4]; /** Primary, secondary input colors */
355 machine->Inputs[ATI_FS_INPUT_PRIMARY]);
358 machine->Inputs[ATI_FS_INPUT_SECONDARY]);
550 GLfloat (*inputs)[4] = machine->Inputs;
558 COPY_4V(inputs[ATI_FS_INPUT_PRIMARY], span->array->attribs[VARYING_SLOT_COL0][col]);
559 COPY_4V(inputs[ATI_FS_INPUT_SECONDARY], span->array->attribs[VARYING_SLOT_COL1][col]);
  /external/tensorflow/tensorflow/cc/framework/
ops.h 57 typedef std::vector<std::pair<Node*, int32>> Inputs;
58 static Inputs GetInputs(Node* node);
60 Inputs inputs_;
199 /// as the input to a op wrapper, which takes Inputs.
202 /// inputs to op wrappers.
259 /// Implicitly convert a list of outputs to a list of inputs. This is useful
268 const std::initializer_list<Input>& inputs) // NOLINT(runtime/explicit)
269 : inputs_(inputs.begin(), inputs.end()) {}
272 inputs) // NOLINT(runtime/explicit
    [all...]
  /external/vixl/test/aarch32/
test-simulator-cond-dt-drt-drd-drn-drm-float-f64-a32.cc 124 // `Inputs` have various layouts across generated tests so they absolutely
139 struct Inputs {
158 const Inputs* inputs; member in struct:vixl::aarch32::__anon43356::TestLoopData
161 static const Inputs kFloats[] =
263 static const Inputs kFloatsSameRegisters[] =
    [all...]
test-simulator-cond-dt-drt-drd-drn-drm-float-f64-t32.cc 124 // `Inputs` have various layouts across generated tests so they absolutely
139 struct Inputs {
158 const Inputs* inputs; member in struct:vixl::aarch32::__anon43357::TestLoopData
161 static const Inputs kFloats[] =
263 static const Inputs kFloatsSameRegisters[] =
    [all...]
test-simulator-cond-rd-memop-immediate-512-a32.cc 126 // `Inputs` have various layouts across generated tests so they absolutely
143 struct Inputs {
161 const Inputs* inputs; member in struct:vixl::aarch32::__anon43358::TestLoopData
164 static const Inputs kCondition[] = {{NFlag, 0xabababab, {0, 0x77777777}},
180 static const Inputs kPositiveOffset[] = {{NoFlag, 0x00000000, {0, 0x0badbeef}},
191 static const Inputs kNegativeOffset[] = {{NoFlag, 0xcccccccc, {0, 0x0badbeef}},
202 static const Inputs kPositivePostIndex[] =
214 static const Inputs kNegativePostIndex[] =
226 static const Inputs kPositivePreIndex[]
    [all...]
test-simulator-cond-rd-memop-immediate-8192-a32.cc 126 // `Inputs` have various layouts across generated tests so they absolutely
143 struct Inputs {
161 const Inputs* inputs; member in struct:vixl::aarch32::__anon43359::TestLoopData
164 static const Inputs kCondition[] = {{NFlag, 0xabababab, {0, 0x77777777}},
180 static const Inputs kPositiveOffset[] = {{NoFlag, 0x00000000, {0, 0x0badbeef}},
191 static const Inputs kNegativeOffset[] = {{NoFlag, 0xcccccccc, {0, 0x0badbeef}},
202 static const Inputs kPositivePostIndex[] =
214 static const Inputs kNegativePostIndex[] =
226 static const Inputs kPositivePreIndex[]
    [all...]
test-simulator-cond-rd-memop-rs-a32.cc 130 // `Inputs` have various layouts across generated tests so they absolutely
147 struct Inputs {
166 const Inputs* inputs; member in struct:vixl::aarch32::__anon43360::TestLoopData
169 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0, {0, 0x77777777}},
185 static const Inputs kPositiveOffset[] =
197 static const Inputs kNegativeOffset[] =
209 static const Inputs kPositivePostIndex[] =
221 static const Inputs kNegativePostIndex[] =
233 static const Inputs kPositivePreIndex[]
    [all...]
test-simulator-cond-rd-memop-rs-shift-amount-1to31-a32.cc 126 // `Inputs` have various layouts across generated tests so they absolutely
145 struct Inputs {
164 const Inputs* inputs; member in struct:vixl::aarch32::__anon43361::TestLoopData
167 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0, {0, 0x77777777}},
183 static const Inputs kPositiveOffset[] =
195 static const Inputs kNegativeOffset[] =
207 static const Inputs kPositivePostIndex[] =
219 static const Inputs kNegativePostIndex[] =
231 static const Inputs kPositivePreIndex[]
    [all...]
test-simulator-cond-rd-memop-rs-shift-amount-1to32-a32.cc 126 // `Inputs` have various layouts across generated tests so they absolutely
145 struct Inputs {
164 const Inputs* inputs; member in struct:vixl::aarch32::__anon43362::TestLoopData
167 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0, {0, 0x77777777}},
183 static const Inputs kPositiveOffset[] =
195 static const Inputs kNegativeOffset[] =
207 static const Inputs kPositivePostIndex[] =
219 static const Inputs kNegativePostIndex[] =
231 static const Inputs kPositivePreIndex[]
    [all...]
test-simulator-cond-rd-operand-const-a32.cc 130 // `Inputs` have various layouts across generated tests so they absolutely
144 struct Inputs {
161 const Inputs* inputs; member in struct:vixl::aarch32::__anon43363::TestLoopData
164 static const Inputs kCondition[] = {{NFlag, 0xabababab},
180 static const Inputs kModifiedImmediate[] =
436 // We record all inputs to the instructions as outputs. This way, we also check
440 const Inputs* outputs;
481 results[i]->outputs = new Inputs[kTests[i].input_size];
484 size_t input_stride = sizeof(kTests[i].inputs[0]) * kTests[i].input_size
    [all...]
test-simulator-cond-rd-operand-const-t32.cc 130 // `Inputs` have various layouts across generated tests so they absolutely
144 struct Inputs {
161 const Inputs* inputs; member in struct:vixl::aarch32::__anon43364::TestLoopData
164 static const Inputs kCondition[] = {{NFlag, 0xabababab},
180 static const Inputs kModifiedImmediate[] =
551 // We record all inputs to the instructions as outputs. This way, we also check
555 const Inputs* outputs;
596 results[i]->outputs = new Inputs[kTests[i].input_size];
599 size_t input_stride = sizeof(kTests[i].inputs[0]) * kTests[i].input_size
    [all...]
test-simulator-cond-rd-operand-imm16-t32.cc 124 // `Inputs` have various layouts across generated tests so they absolutely
138 struct Inputs {
155 const Inputs* inputs; member in struct:vixl::aarch32::__anon43365::TestLoopData
158 static const Inputs kCondition[] = {{NFlag, 0xabababab},
174 static const Inputs kModifiedImmediate[] =
395 // We record all inputs to the instructions as outputs. This way, we also check
399 const Inputs* outputs;
434 results[i]->outputs = new Inputs[kTests[i].input_size];
437 size_t input_stride = sizeof(kTests[i].inputs[0]) * kTests[i].input_size
    [all...]
test-simulator-cond-rd-operand-rn-a32.cc 136 // `Inputs` have various layouts across generated tests so they absolutely
150 struct Inputs {
168 const Inputs* inputs; member in struct:vixl::aarch32::__anon43366::TestLoopData
171 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0xabababab},
187 static const Inputs kRdIsRn[] =
205 static const Inputs kRdIsNotRn[] =
466 // We record all inputs to the instructions as outputs. This way, we also check
470 const Inputs* outputs;
517 results[i]->outputs = new Inputs[kTests[i].input_size]
    [all...]
test-simulator-cond-rd-operand-rn-ror-amount-a32.cc 128 // `Inputs` have various layouts across generated tests so they absolutely
144 struct Inputs {
162 const Inputs* inputs; member in struct:vixl::aarch32::__anon43367::TestLoopData
165 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0xabababab},
181 static const Inputs kRdIsRn[] =
199 static const Inputs kRdIsNotRn[] =
301 static const Inputs kRotations[] =
537 // We record all inputs to the instructions as outputs. This way, we also check
541 const Inputs* outputs
    [all...]

Completed in 852 milliseconds

1 2 3 4 5 6 7