HomeSort by: relevance | last modified time | path
    Searched refs:Vector (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_vector_test.cc 18 TEST(Vector, Basic) {
19 Vector<int> v;
30 TEST(Vector, Stride) {
31 Vector<int> v;
42 TEST(Vector, ResizeReduction) {
43 Vector<int> v;
  /src/usr.bin/make/
lst.h 161 * A vector is an ordered collection of items, allowing for fast indexed
164 typedef struct Vector {
169 } Vector;
171 void Vector_Init(Vector *, size_t);
174 * Return the pointer to the given item in the vector.
178 Vector_Get(Vector *v, size_t i)
184 void *Vector_Push(Vector *);
185 void *Vector_Pop(Vector *);
188 Vector_Done(Vector *v)
lst.c 243 Vector_Init(Vector *v, size_t itemSize)
252 * Add space for a new item to the vector and return a pointer to that space.
256 Vector_Push(Vector *v)
267 * Remove the last item from the vector, return the pointer to it.
271 Vector_Pop(Vector *v)
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.h 48 #include <vector>
55 Vector<uint32_t> Features;
59 Vector<MergeFileInfo> Files;
70 Vector<std::string> *NewFiles);
71 size_t Merge(Vector<std::string> *NewFiles) {
FuzzerDataFlowTrace.h 35 #include <vector>
43 const Vector<uint8_t> *Get(const std::string &InputSha1) const {
52 std::unordered_map<std::string, Vector<uint8_t> > Traces;
FuzzerCommand.h 22 #include <vector>
37 explicit Command(const Vector<std::string> &ArgsToAdd)
62 const Vector<std::string> &getArguments() const { return Args; }
72 void addArguments(const Vector<std::string> &ArgsToAdd) {
159 Vector<std::string>::iterator endMutableArgs() {
163 Vector<std::string>::const_iterator endMutableArgs() const {
168 Vector<std::string> Args;
FuzzerInternal.h 39 void Loop(const Vector<std::string> &CorpusDirs);
40 void ReadAndExecuteSeedCorpora(const Vector<std::string> &CorpusDirs);
75 void Merge(const Vector<std::string> &Corpora);
76 void CrashResistantMerge(const Vector<std::string> &Args,
77 const Vector<std::string> &Corpora,
149 Vector<uint32_t> UniqFeatureSetTmp;
FuzzerIO.h 30 void ReadDirToVectorOfUnits(const char *Path, Vector<Unit> *V,
59 Vector<std::string> *V, bool TopDir);
67 void GetSizedFilesFromDir(const std::string &Dir, Vector<SizedFile> *V);
FuzzerMutate.h 78 const Vector<uint8_t> &Mask);
105 Vector<Mutator> &Mutators);
137 Vector<DictionaryEntry *> CurrentDictionaryEntrySequence;
144 Vector<uint8_t> MutateInPlaceHere;
145 Vector<uint8_t> MutateWithMaskTemp;
148 Vector<uint8_t> CustomCrossOverInPlaceHere;
150 Vector<Mutator> Mutators;
151 Vector<Mutator> DefaultMutators;
152 Vector<Mutator> CurrentMutatorSequence;
FuzzerIO.cpp 71 void ReadDirToVectorOfUnits(const char *Path, Vector<Unit> *V,
74 Vector<std::string> Files;
90 void GetSizedFilesFromDir(const std::string &Dir, Vector<SizedFile> *V) {
91 Vector<std::string> Files;
FuzzerDataFlowTrace.cpp 18 #include <vector>
27 Vector<SizedFile> Files;
70 Vector<uint8_t> V(Len);
FuzzerUtil.h 65 std::string CloneArgsWithoutX(const Vector<std::string> &Args,
68 inline std::string CloneArgsWithoutX(const Vector<std::string> &Args,
FuzzerCorpus.h 40 Vector<uint32_t> UniqFeatureSet;
41 Vector<uint8_t> DataFlowTraceForFocusFunction;
90 bool HasFocusFunction, const Vector<uint32_t> &FeatureSet,
130 void PrintFeatureSet(const Vector<uint32_t> &FeatureSet) {
299 Vector<double> Intervals;
300 Vector<double> Weights;
303 Vector<InputInfo*> Inputs;
FuzzerDefs.h 20 #include <vector>
175 using Vector = std::vector<T, fuzzer_allocator<T>>;
180 typedef Vector<uint8_t> Unit;
181 typedef Vector<Unit> UnitVector;
FuzzerMerge.cpp 78 Vector<uint32_t> TmpFeatures;
100 TmpFeatures.clear(); // use a vector from outer scope to avoid resizes.
127 Vector<std::string> *NewFiles) {
142 Vector<uint32_t> Tmp;
263 const Vector<SizedFile> &AllFiles,
279 void Fuzzer::CrashResistantMerge(const Vector<std::string> &Args,
280 const Vector<std::string> &Corpora,
321 Vector<SizedFile> AllFiles;
372 Vector<std::string> NewFiles;
FuzzerDriver.cpp 78 static Vector<std::string> *Inputs;
179 static void ParseFlags(const Vector<std::string> &Args) {
189 Inputs = new Vector<std::string>;
233 std::string CloneArgsWithoutX(const Vector<std::string> &Args,
244 static int RunInMultipleProcesses(const Vector<std::string> &Args,
251 Vector<std::thread> V;
304 int CleanseCrashInput(const Vector<std::string> &Args,
331 const Vector<uint8_t> ReplacementBytes = {' ', 0xff};
363 int MinimizeCrashInput(const Vector<std::string> &Args,
467 int AnalyzeDictionary(Fuzzer *F, const Vector<Unit>& Dict
    [all...]
FuzzerDictionary.h 115 bool ParseDictionaryFile(const std::string &Text, Vector<Unit> *Units);
FuzzerIOPosix.cpp 57 Vector<std::string> *V, bool TopDir) {
FuzzerUtilWindows.cpp 182 Vector<std::string> command_vector;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_report.h 61 Vector<ReportMopMutex> mset;
112 Vector<ReportStack*> stacks;
113 Vector<ReportMop*> mops;
114 Vector<ReportLocation*> locs;
115 Vector<ReportMutex*> mutexes;
116 Vector<ReportThread*> threads;
117 Vector<int> unique_tids;
tsan_rtl_thread.cc 163 Vector<ThreadLeak> &leaks = *(Vector<ThreadLeak>*)arg;
214 Vector<ThreadLeak> leaks;
tsan_interface_ann.cc 159 static void CollectMatchedBenignRaces(Vector<ExpectRace> *matched,
188 Vector<ExpectRace> hit_matched;
191 Vector<ExpectRace> add_matched;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_vector.h 14 // Low-fat STL-like vector container.
25 class Vector {
27 explicit Vector()
33 ~Vector() {
124 Vector(const Vector&);
125 void operator=(const Vector&);
  /src/sys/arch/ia64/stand/ia64/ski/
acpi_stub.c 63 UINT32 Vector; /* interrupt base */
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 559 Vector<Unit> Units;
571 EXPECT_EQ(Units, Vector<Unit>({Unit({'a', 'a'})}));
575 Vector<Unit>({Unit({'a', 'a'}), Unit({'a', 'b', 'c'})}));
601 Vector<size_t> Hist(N);
631 void EQ(const Vector<uint32_t> &A, const Vector<uint32_t> &B) {
635 void EQ(const Vector<std::string> &A, const Vector<std::string> &B) {
642 const Vector<std::string> Result,
645 Vector<std::string> NewFiles
    [all...]

Completed in 26 milliseconds

1 2