Lines Matching refs:inputs
52 std::vector<IntT> inputs(N, static_cast<IntT>(-1)); in getDuplicateIntegerInputs()
53 return inputs; in getDuplicateIntegerInputs()
58 std::vector<IntT> inputs; in getSortedIntegerInputs() local
60 inputs.push_back(i); in getSortedIntegerInputs()
61 return inputs; in getSortedIntegerInputs()
66 std::vector<IntT> inputs; in getSortedLargeIntegerInputs() local
68 inputs.push_back(i + N); in getSortedLargeIntegerInputs()
70 return inputs; in getSortedLargeIntegerInputs()
75 std::vector<IntT> inputs = getSortedIntegerInputs<IntT>(N); in getSortedTopBitsIntegerInputs() local
76 for (auto& E : inputs) E <<= ((sizeof(IntT) / 2) * CHAR_BIT); in getSortedTopBitsIntegerInputs()
77 return inputs; in getSortedTopBitsIntegerInputs()
82 std::vector<IntT> inputs; in getReverseSortedIntegerInputs() local
86 inputs.push_back(i); in getReverseSortedIntegerInputs()
88 return inputs; in getReverseSortedIntegerInputs()
102 std::vector<IntT> inputs; in getRandomIntegerInputs() local
104 inputs.push_back(getRandomInteger<IntT>(0, std::numeric_limits<IntT>::max())); in getRandomIntegerInputs()
106 return inputs; in getRandomIntegerInputs()
110 std::vector<std::string> inputs(N, getRandomString(1024)); in getDuplicateStringInputs()
111 return inputs; in getDuplicateStringInputs()
115 std::vector<std::string> inputs; in getRandomStringInputs() local
117 inputs.push_back(getRandomString(1024)); in getRandomStringInputs()
119 return inputs; in getRandomStringInputs()
123 std::vector<std::string> inputs = getRandomStringInputs(N); in getSortedStringInputs() local
124 std::sort(inputs.begin(), inputs.end()); in getSortedStringInputs()
125 return inputs; in getSortedStringInputs()
129 std::vector<std::string> inputs = getSortedStringInputs(N); in getReverseSortedStringInputs() local
130 std::reverse(inputs.begin(), inputs.end()); in getReverseSortedStringInputs()
131 return inputs; in getReverseSortedStringInputs()
135 static std::vector<std::string> inputs = getRandomStringInputs(N); in getRandomCStringInputs() local
137 for (auto const& str : inputs) in getRandomCStringInputs()