Searched refs:vector (Results 1 - 25 of 769) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/libstdc++/include/backward/
H A Dbvector.h60 #include <vector>
62 typedef std::vector<bool, std::allocator<bool> > bit_vector;
H A Dvector.h62 #include <vector>
64 using std::vector;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Headers/
H A Daltivec.h39 static vector signed char __ATTRS_o_ai
40 vec_perm(vector signed char __a, vector signed char __b, vector unsigned char __c);
42 static vector unsigned char __ATTRS_o_ai
43 vec_perm(vector unsigned char __a,
44 vector unsigned char __b,
45 vector unsigned char __c);
47 static vector bool char __ATTRS_o_ai
48 vec_perm(vector boo
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Denviron.c40 e->vector = (char **) xmalloc ((e->allocated + 1) * sizeof (char *));
41 e->vector[0] = 0;
50 char **vector = e->vector;
52 while (*vector)
53 xfree (*vector++);
76 e->vector = (char **) xrealloc ((char *) e->vector,
80 memcpy (e->vector, environ, (i + 1) * sizeof (char *));
84 int len = strlen (e->vector[
49 char **vector = e->vector; local
105 char **vector = e->vector; local
122 char **vector = e->vector; local
168 char **vector = e->vector; local
[all...]
H A Denviron.h30 /* A vector of slots, ALLOCATED + 1 of them.
34 char **vector; member in struct:environ
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DCommentOptions.h19 #include <vector>
25 typedef std::vector<std::string> BlockCommandNamesTy;
H A DTargetOptions.h21 #include <vector>
49 std::vector<std::string> FeaturesAsWritten;
53 std::vector<std::string> Features;
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DCodeGenIntrinsics.h19 #include <vector>
44 std::vector<MVT::SimpleValueType> RetVTs;
47 std::vector<Record*> RetTypeDefs;
53 std::vector<MVT::SimpleValueType> ParamVTs;
56 std::vector<Record*> ParamTypeDefs;
84 std::vector<std::pair<unsigned, ArgAttribute> > ArgumentAttributes;
91 std::vector<CodeGenIntrinsic> LoadIntrinsics(const RecordKeeper &RC,
/freebsd-9.3-release/contrib/llvm/include/llvm/TableGen/
H A DStringMatcher.h20 #include <vector>
36 const std::vector<StringPair> &Matches;
41 const std::vector<StringPair> &matches, raw_ostream &os)
48 bool EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
/freebsd-9.3-release/contrib/libstdc++/include/std/
H A Dstd_vector.h0 // <vector> -*- C++ -*-
56 /** @file include/vector
74 # include <bits/vector.tcc>
78 # include <debug/vector>
/freebsd-9.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugFrame.h15 #include <vector>
38 typedef std::vector<FrameEntry *> EntryVector;
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DR600MachineFunctionInfo.h19 #include <vector>
28 std::vector<unsigned> IndirectRegs;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DCommonOptionsParser.h75 std::vector<std::string> getSourcePathList() {
83 std::vector<std::string> SourcePathList;
H A DCompilationDatabase.h37 #include <vector>
52 std::vector<std::string> CommandLine;
62 std::vector<std::pair<std::string, std::string> > MappedSources;
113 virtual std::vector<CompileCommand> getCompileCommands(
117 virtual std::vector<std::string> getAllFiles() const = 0;
125 virtual std::vector<CompileCommand> getAllCompileCommands() const = 0;
190 /// Will always return a vector with one entry that contains the directory
193 virtual std::vector<CompileCommand> getCompileCommands(
199 virtual std::vector<std::string> getAllFiles() const;
205 virtual std::vector<CompileComman
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangCommentHTMLTagsEmitter.cpp18 #include <vector>
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
25 std::vector<StringMatcher::StringPair> Matches;
26 for (std::vector<Record *>::iterator I = Tags.begin(), E = Tags.end();
43 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
44 std::vector<StringMatcher::StringPair> MatchesEndTagOptional;
45 std::vector<StringMatcher::StringPair> MatchesEndTagForbidden;
46 for (std::vector<Record *>::iterator I = Tags.begin(), E = Tags.end();
/freebsd-9.3-release/sys/sparc64/include/
H A Dgdb_machdep.h49 gdb_cpu_signal(int vector, int _) argument
51 return (vector);
/freebsd-9.3-release/sys/powerpc/powerpc/
H A Dgdb_machdep.c85 gdb_cpu_signal(int vector, int dummy __unused) argument
88 if (vector == EXC_DEBUG || vector == EXC_PGM)
91 if (vector == EXC_TRC || vector == EXC_RUNMODETRC)
95 if (vector <= 255)
96 return (vector);
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DDAGDeltaAlgorithm.h13 #include <vector>
46 typedef std::vector<changeset_ty> changesetlist_ty;
64 const std::vector<edge_ty> &Dependencies);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.h55 /// the vector. A node can "point to" itself to indicate that it
58 std::vector<unsigned> GroupNodes;
64 std::vector<unsigned> GroupNodeIndices;
71 std::vector<unsigned> KillIndices;
75 std::vector<unsigned> DefIndices;
81 std::vector<unsigned> &GetKillIndices() { return KillIndices; }
84 std::vector<unsigned> &GetDefIndices() { return DefIndices; }
93 // GetGroupRegs - Return a vector of the registers belonging to a
97 std::vector<unsigned> &Regs,
145 unsigned BreakAntiDependencies(const std::vector<SUni
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DDependencyOutputOptions.h14 #include <vector>
41 std::vector<std::string> Targets;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DPathDiagnosticConsumers.h18 #include <vector>
28 typedef std::vector<PathDiagnosticConsumer*> PathDiagnosticConsumers;
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dpexecute.c100 int *vector; local
102 vector = XNEWVEC (int, idx);
103 if (!pex_get_status (pex, idx, vector))
105 free (vector);
108 *status = vector[pid];
109 free (vector);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dpexecute.c100 int *vector; local
102 vector = XNEWVEC (int, idx);
103 if (!pex_get_status (pex, idx, vector))
105 free (vector);
108 *status = vector[pid];
109 free (vector);
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineJumpTableInfo.h24 #include <vector>
35 /// MBBs - The vector of basic blocks from which to create the jump table.
36 std::vector<MachineBasicBlock*> MBBs;
38 explicit MachineJumpTableEntry(const std::vector<MachineBasicBlock*> &M)
80 std::vector<MachineJumpTableEntry> JumpTables;
93 unsigned createJumpTableIndex(const std::vector<MachineBasicBlock*> &DestBBs);
99 const std::vector<MachineJumpTableEntry> &getJumpTables() const {
/freebsd-9.3-release/contrib/llvm/tools/bugpoint/
H A DToolRunner.h26 #include <vector>
41 std::vector<std::string> gccArgs; // GCC-specific arguments.
43 const std::vector<std::string> *GCCArgs)
52 const std::vector<std::string> *Args);
62 const std::vector<std::string> &Args,
67 const std::vector<std::string> &GCCArgs =
68 std::vector<std::string>(),
77 const std::vector<std::string> &ArgsForGCC,
92 const std::vector<std::string> *Args = 0,
93 const std::vector<st
[all...]

Completed in 712 milliseconds

1234567891011>>