• Home
  • Raw
  • Download

Lines Matching refs:inputs

53     std::vector<IntT> inputs(N, static_cast<IntT>(-1));  in getDuplicateIntegerInputs()  local
54 return inputs; in getDuplicateIntegerInputs()
59 std::vector<IntT> inputs; in getSortedIntegerInputs() local
61 inputs.push_back(i); in getSortedIntegerInputs()
62 return inputs; in getSortedIntegerInputs()
67 std::vector<IntT> inputs; in getSortedLargeIntegerInputs() local
69 inputs.push_back(i + N); in getSortedLargeIntegerInputs()
71 return inputs; in getSortedLargeIntegerInputs()
76 std::vector<IntT> inputs = getSortedIntegerInputs<IntT>(N); in getSortedTopBitsIntegerInputs() local
77 for (auto& E : inputs) E <<= ((sizeof(IntT) / 2) * CHAR_BIT); in getSortedTopBitsIntegerInputs()
78 return inputs; in getSortedTopBitsIntegerInputs()
83 std::vector<IntT> inputs; in getReverseSortedIntegerInputs() local
87 inputs.push_back(i); in getReverseSortedIntegerInputs()
89 return inputs; in getReverseSortedIntegerInputs()
103 std::vector<IntT> inputs; in getRandomIntegerInputs() local
105 inputs.push_back(getRandomInteger<IntT>()); in getRandomIntegerInputs()
107 return inputs; in getRandomIntegerInputs()
111 std::vector<std::string> inputs(N, getRandomString(1024)); in getDuplicateStringInputs() local
112 return inputs; in getDuplicateStringInputs()
116 std::vector<std::string> inputs; in getRandomStringInputs() local
118 inputs.push_back(getRandomString(1024)); in getRandomStringInputs()
120 return inputs; in getRandomStringInputs()
124 std::vector<std::string> inputs = getRandomStringInputs(N); in getSortedStringInputs() local
125 std::sort(inputs.begin(), inputs.end()); in getSortedStringInputs()
126 return inputs; in getSortedStringInputs()
130 std::vector<std::string> inputs = getSortedStringInputs(N); in getReverseSortedStringInputs() local
131 std::reverse(inputs.begin(), inputs.end()); in getReverseSortedStringInputs()
132 return inputs; in getReverseSortedStringInputs()
136 static std::vector<std::string> inputs = getRandomStringInputs(N); in getRandomCStringInputs() local
138 for (auto const& str : inputs) in getRandomCStringInputs()