• Home
  • Raw
  • Download

Lines Matching full:inputs

41   std::vector<IntT> inputs(N, static_cast<IntT>(-1));  in getDuplicateIntegerInputs()
42 return inputs; in getDuplicateIntegerInputs()
47 std::vector<IntT> inputs; in getSortedIntegerInputs() local
49 inputs.push_back(i); in getSortedIntegerInputs()
50 return inputs; in getSortedIntegerInputs()
55 std::vector<IntT> inputs; in getSortedLargeIntegerInputs() local
57 inputs.push_back(i + N); in getSortedLargeIntegerInputs()
59 return inputs; in getSortedLargeIntegerInputs()
64 std::vector<IntT> inputs = getSortedIntegerInputs<IntT>(N); in getSortedTopBitsIntegerInputs() local
65 for (auto& E : inputs) in getSortedTopBitsIntegerInputs()
67 return inputs; in getSortedTopBitsIntegerInputs()
72 std::vector<IntT> inputs; in getReverseSortedIntegerInputs() local
76 inputs.push_back(i); in getReverseSortedIntegerInputs()
78 return inputs; in getReverseSortedIntegerInputs()
94 std::vector<IntT> inputs; in getRandomIntegerInputs() local
96 inputs.push_back(getRandomInteger<IntT>(0, std::numeric_limits<IntT>::max())); in getRandomIntegerInputs()
98 return inputs; in getRandomIntegerInputs()
102 std::vector<std::string> inputs(N, getRandomString(1024)); in getDuplicateStringInputs()
103 return inputs; in getDuplicateStringInputs()
107 std::vector<std::string> inputs; in getRandomStringInputs() local
109 inputs.push_back(getRandomString(1024)); in getRandomStringInputs()
111 return inputs; in getRandomStringInputs()
115 std::vector<std::string> inputs; in getPrefixedRandomStringInputs() local
119 inputs.push_back(prefix + getRandomString(kSuffixLength)); in getPrefixedRandomStringInputs()
121 return inputs; in getPrefixedRandomStringInputs()
125 std::vector<std::string> inputs = getRandomStringInputs(N); in getSortedStringInputs() local
126 std::sort(inputs.begin(), inputs.end()); in getSortedStringInputs()
127 return inputs; in getSortedStringInputs()
131 std::vector<std::string> inputs = getSortedStringInputs(N); in getReverseSortedStringInputs() local
132 std::reverse(inputs.begin(), inputs.end()); in getReverseSortedStringInputs()
133 return inputs; in getReverseSortedStringInputs()
137 static std::vector<std::string> inputs = getRandomStringInputs(N); in getRandomCStringInputs() local
139 for (auto const& str : inputs) in getRandomCStringInputs()