Home
last modified time | relevance | path

Searched refs:vector (Results 1 – 25 of 1443) sorted by relevance

12345678910>>...58

/NextBSD/contrib/llvm/tools/clang/lib/Headers/
HDvecintrin.h60 vec_extract(vector signed char __vec, int __index) { in vec_extract()
65 vec_extract(vector bool char __vec, int __index) { in vec_extract()
70 vec_extract(vector unsigned char __vec, int __index) { in vec_extract()
75 vec_extract(vector signed short __vec, int __index) { in vec_extract()
80 vec_extract(vector bool short __vec, int __index) { in vec_extract()
85 vec_extract(vector unsigned short __vec, int __index) { in vec_extract()
90 vec_extract(vector signed int __vec, int __index) { in vec_extract()
95 vec_extract(vector bool int __vec, int __index) { in vec_extract()
100 vec_extract(vector unsigned int __vec, int __index) { in vec_extract()
105 vec_extract(vector signed long long __vec, int __index) { in vec_extract()
[all …]
HDaltivec.h39 static vector signed char __ATTRS_o_ai vec_perm(vector signed char __a,
40 vector signed char __b,
41 vector unsigned char __c);
43 static vector unsigned char __ATTRS_o_ai vec_perm(vector unsigned char __a,
44 vector unsigned char __b,
45 vector unsigned char __c);
47 static vector bool char __ATTRS_o_ai vec_perm(vector bool char __a,
48 vector bool char __b,
49 vector unsigned char __c);
51 static vector short __ATTRS_o_ai vec_perm(vector signed short __a,
[all …]
/NextBSD/contrib/gdb/gdb/
HDenviron.c39 e->vector = (char **) xmalloc ((e->allocated + 1) * sizeof (char *)); in make_environ()
40 e->vector[0] = 0; in make_environ()
49 char **vector = e->vector; in free_environ() local
51 while (*vector) in free_environ()
52 xfree (*vector++); in free_environ()
75 e->vector = (char **) xrealloc ((char *) e->vector, in init_environ()
79 memcpy (e->vector, environ, (i + 1) * sizeof (char *)); in init_environ()
83 int len = strlen (e->vector[i]); in init_environ()
85 memcpy (new, e->vector[i], len + 1); in init_environ()
86 e->vector[i] = new; in init_environ()
[all …]
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDValueTypes.td36 def v2i1 : ValueType<2 , 13>; // 2 x i1 vector value
37 def v4i1 : ValueType<4 , 14>; // 4 x i1 vector value
38 def v8i1 : ValueType<8 , 15>; // 8 x i1 vector value
39 def v16i1 : ValueType<16, 16>; // 16 x i1 vector value
40 def v32i1 : ValueType<32 , 17>; // 32 x i1 vector value
41 def v64i1 : ValueType<64 , 18>; // 64 x i1 vector value
42 def v1i8 : ValueType<16, 19>; // 1 x i8 vector value
43 def v2i8 : ValueType<16 , 20>; // 2 x i8 vector value
44 def v4i8 : ValueType<32 , 21>; // 4 x i8 vector value
45 def v8i8 : ValueType<64 , 22>; // 8 x i8 vector value
[all …]
HDMachineModuleInfo.h83 std::vector<int> TypeIds; // List of type ids (filters negative).
101 typedef std::vector<std::pair<MCSymbol*, StubValueTy> > SymbolListTy;
128 std::vector<MCCFIInstruction> FrameInstructions;
132 std::vector<LandingPadInfo> LandingPads;
147 std::vector<const GlobalValue *> TypeInfos;
150 std::vector<unsigned> FilterIds;
154 std::vector<unsigned> FilterEnds;
158 std::vector<const Function *> Personalities;
274 const std::vector<MCCFIInstruction> &getFrameInstructions() const { in getFrameInstructions()
301 std::vector<MCSymbol*> &Result);
[all …]
/NextBSD/contrib/libc++/include/
Dvector2 //===------------------------------ vector --------------------------------===//
15 vector synopsis
21 class vector
37 vector()
39 explicit vector(const allocator_type&);
40 explicit vector(size_type n);
41 explicit vector(size_type n, const allocator_type&); // C++14
42 vector(size_type n, const value_type& value, const allocator_type& = allocator_type());
44 vector(InputIterator first, InputIterator last, const allocator_type& = allocator_type());
45 vector(const vector& x);
[all …]
/NextBSD/contrib/gcc/doc/
HDextend.texi76 * Vector Extensions:: Using vector instructions through built-in functions.
2006 @cindex calling functions through the function vector on the H8/300 processors
2008 function should be called through the function vector. Calling a
2009 function through the function vector will reduce code size, however;
2010 the function vector has a limited size (maximum 128 entries on the H8/300
2011 and 64 entries on the H8/300H and H8S) and shares space with the interrupt vector.
3265 This attribute specifies the vector size for the variable, measured in
3274 divided into @code{int} sized units. Assuming a 32-bit int (a vector of
3870 The @code{altivec} attribute allows one to declare AltiVec vector data
3872 attribute requires an argument to specify one of three vector types:
[all …]
/NextBSD/usr.sbin/ppp/
HDauth.c168 char *vector[6], buff[LINE_LEN]; in auth_SetPhoneList() local
180 memset(vector, '\0', sizeof vector); in auth_SetPhoneList()
181 if ((n = MakeArgs(buff, vector, VECSIZE(vector), PARSE_REDUCE)) < 0) in auth_SetPhoneList()
185 if (strcmp(vector[0], name) == 0) { in auth_SetPhoneList()
187 if (*vector[4] == '\0') in auth_SetPhoneList()
189 strncpy(phone, vector[4], phonelen - 1); in auth_SetPhoneList()
213 char *vector[5], buff[LINE_LEN]; in auth_Select() local
241 memset(vector, '\0', sizeof vector); in auth_Select()
242 if ((n = MakeArgs(buff, vector, VECSIZE(vector), PARSE_REDUCE)) < 0) in auth_Select()
246 if (strcmp(vector[0], name) == 0) { in auth_Select()
[all …]
/NextBSD/contrib/llvm/tools/bugpoint/
HDToolRunner.h41 std::vector<std::string> gccArgs; // GCC-specific arguments.
43 const std::vector<std::string> *GCCArgs) in GCC()
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 = nullptr,
93 const std::vector<std::string> *GCCArgs = nullptr,
98 const std::vector<std::string> *Args = nullptr);
[all …]
HDToolRunner.cpp174 std::vector<std::string> ToolArgs; // Args to pass to LLI
176 LLI(const std::string &Path, const std::vector<std::string> *Args) in LLI()
183 const std::vector<std::string> &Args,
187 const std::vector<std::string> &GCCArgs,
188 const std::vector<std::string> &SharedLibs =
189 std::vector<std::string>(),
196 const std::vector<std::string> &Args, in ExecuteProgram()
200 const std::vector<std::string> &GCCArgs, in ExecuteProgram()
201 const std::vector<std::string> &SharedLibs, in ExecuteProgram()
204 std::vector<const char*> LLIArgs; in ExecuteProgram()
[all …]
/NextBSD/sys/x86/x86/
HDlocal_apic.c269 static u_int apic_idt_to_irq(u_int apic_id, u_int vector);
270 static void lapic_set_tpr(u_int vector);
283 static int native_lapic_intr_pending(u_int vector);
288 static void native_apic_disable_vector(u_int apic_id, u_int vector);
289 static void native_apic_enable_vector(u_int apic_id, u_int vector);
290 static void native_apic_free_vector(u_int apic_id, u_int vector, u_int irq);
307 static void native_lapic_ipi_vectored(u_int vector, int dest);
310 static void native_lapic_ipi_free(int vector);
825 native_lapic_intr_pending(u_int vector) in native_lapic_intr_pending() argument
836 irr = lapic_read32(LAPIC_IRR0 + vector / 32); in native_lapic_intr_pending()
[all …]
HDintr_machdep.c139 int error, vector; in intr_register_source() local
142 vector = isrc->is_pic->pic_vector(isrc); in intr_register_source()
143 if (interrupt_sources[vector] != NULL) in intr_register_source()
145 error = intr_event_create(&isrc->is_event, isrc, 0, vector, in intr_register_source()
148 vector); in intr_register_source()
152 if (interrupt_sources[vector] != NULL) { in intr_register_source()
158 interrupt_sources[vector] = isrc; in intr_register_source()
165 intr_lookup_source(int vector) in intr_lookup_source() argument
168 return (interrupt_sources[vector]); in intr_lookup_source()
172 intr_add_handler(const char *name, int vector, driver_filter_t filter, in intr_add_handler() argument
[all …]
/NextBSD/contrib/llvm/lib/TableGen/
HDTGParser.h36 std::vector<unsigned> Bits;
39 LetRecord(const std::string &N, const std::vector<unsigned> &B, Init *V, in LetRecord()
57 std::vector<std::vector<LetRecord> > LetStack;
62 typedef std::vector<ForeachLoop> LoopVector;
108 const std::vector<unsigned> &BitList, Init *V);
110 const std::vector<unsigned> &BitList, Init *V) { in SetValue()
128 typedef std::vector<IterRecord> IterSet;
142 const std::vector<Init *> &TArgs,
143 std::vector<Init *> &TemplateVals);
148 const std::vector<Init *> &TArgs,
[all …]
/NextBSD/sys/powerpc/powerpc/
HDintr_machdep.c100 u_int vector; member
154 int vector; in smp_intr_init() local
156 for (vector = 0; vector < nvectors; vector++) { in smp_intr_init()
157 i = powerpc_intrs[vector]; in smp_intr_init()
188 int vector; in intr_lookup() local
191 for (vector = 0; vector < nvectors; vector++) { in intr_lookup()
192 i = powerpc_intrs[vector]; in intr_lookup()
211 i->vector = -1; in intr_lookup()
221 for (vector = 0; vector < INTR_VECTORS && vector <= nvectors; in intr_lookup()
222 vector++) { in intr_lookup()
[all …]
HDgdb_machdep.c85 gdb_cpu_signal(int vector, int dummy __unused) in gdb_cpu_signal() argument
88 if (vector == EXC_DEBUG || vector == EXC_PGM) in gdb_cpu_signal()
91 if (vector == EXC_TRC || vector == EXC_RUNMODETRC) in gdb_cpu_signal()
95 if (vector <= 255) in gdb_cpu_signal()
96 return (vector); in gdb_cpu_signal()
/NextBSD/contrib/libstdc++/include/debug/
Dvector1 // Debugging vector implementation -*- C++ -*-
31 /** @file debug/vector
38 #include <vector>
49 class vector
50 : public _GLIBCXX_STD::vector<_Tp, _Allocator>,
51 public __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> >
53 typedef _GLIBCXX_STD::vector<_Tp, _Allocator> _Base;
54 typedef __gnu_debug::_Safe_sequence<vector> _Safe_base;
63 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,vector>
65 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,vector>
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDSymtab.h27 typedef std::vector<uint32_t> IndexCollection;
51 void Dump(Stream *s, Target *target, std::vector<uint32_t>& indexes) const;
69 …uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& inde…
70 …eAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes…
71 …symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches…
72 …uint32_t AppendSymbolIndexesWithName (const ConstString& symbol_name, std::vector<uint32_t>& ma…
73 …symbol_name, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches…
74 …Type (const ConstString& symbol_name, lldb::SymbolType symbol_type, std::vector<uint32_t>& matches…
75 …symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches…
76 …Type (const RegularExpression &regex, lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes…
[all …]
/NextBSD/contrib/file/magic/Magdir/
HDvisx19 >2 byte 101 (unsigned char vector)
20 >2 byte 102 (short integer vector)
21 >2 byte 103 (float 32 vector)
22 >2 byte 104 (float 64 vector)
23 >2 byte 105 (signed char vector)
24 >2 byte 106 (bit plane vector)
25 >2 byte 121 (feature vector)
26 >2 byte 122 (feature vector library)
28 >2 byte 126 (bit vector)
/NextBSD/contrib/compiler-rt/lib/tsan/tests/unit/
HDtsan_clock_test.cc39 ThreadClock vector(0); in TEST() local
41 ASSERT_EQ(vector.size(), 1U); in TEST()
43 vector.acquire(&cache, &chunked); in TEST()
44 ASSERT_EQ(vector.size(), 1U); in TEST()
46 vector.release(&cache, &chunked); in TEST()
47 ASSERT_EQ(vector.size(), 1U); in TEST()
49 vector.acq_rel(&cache, &chunked); in TEST()
50 ASSERT_EQ(vector.size(), 1U); in TEST()
89 ThreadClock vector(0); in TEST() local
90 vector.tick(); in TEST()
[all …]
/NextBSD/contrib/llvm/include/llvm/ProfileData/
HDCoverageMappingReader.h93 std::vector<StringRef> &Filenames;
100 RawCoverageFilenamesReader(StringRef Data, std::vector<StringRef> &Filenames) in RawCoverageFilenamesReader()
109 std::vector<StringRef> &Filenames;
110 std::vector<CounterExpression> &Expressions;
111 std::vector<CounterMappingRegion> &MappingRegions;
120 std::vector<StringRef> &Filenames, in RawCoverageMappingReader()
121 std::vector<CounterExpression> &Expressions, in RawCoverageMappingReader()
122 std::vector<CounterMappingRegion> &MappingRegions) in RawCoverageMappingReader()
134 readMappingRegionsSubArray(std::vector<CounterMappingRegion> &MappingRegions,
159 std::vector<StringRef> Filenames;
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Tooling/
HDCompilationDatabase.h45 CompileCommand(Twine Directory, std::vector<std::string> CommandLine) in CompileCommand()
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;
193 std::vector<CompileCommand>
199 std::vector<std::string> getAllFiles() const override;
205 std::vector<CompileCommand> getAllCompileCommands() const override;
210 std::vector<CompileCommand> CompileCommands;
/NextBSD/contrib/llvm/utils/TableGen/
HDCodeGenMapTable.cpp83 typedef std::map<std::string, std::vector<Record*> > InstrRelMapTy;
85 typedef std::map<std::vector<Init*>, std::vector<Record*> > RowInstrMapTy;
98 std::vector<ListInit*> ValueCols;
168 const std::vector<ListInit*> &getValueCols() const { in getValueCols()
191 std::vector<Record*> InstrDefs;
198 std::vector<Record*> KeyInstrVec;
199 DenseMap<Record*, std::vector<Record*> > MapTable;
243 std::vector<Init*> KeyValue; in buildRowInstrMap()
288 const std::vector<ListInit*> &ValueCols = InstrMapDesc.getValueCols(); in buildMapTable()
291 std::vector<Record*> ColInstrVec(NumOfCols); in buildMapTable()
[all …]
/NextBSD/sys/amd64/vmm/io/
HDvlapic.c260 vlapic_set_intr_ready(struct vlapic *vlapic, int vector, bool level) in vlapic_set_intr_ready() argument
266 KASSERT(vector >= 0 && vector < 256, ("invalid vector %d", vector)); in vlapic_set_intr_ready()
271 "interrupt %d", vector); in vlapic_set_intr_ready()
275 if (vector < 16) { in vlapic_set_intr_ready()
278 vector); in vlapic_set_intr_ready()
283 return ((*vlapic->ops.set_intr_ready)(vlapic, vector, level)); in vlapic_set_intr_ready()
285 idx = (vector / 32) * 4; in vlapic_set_intr_ready()
286 mask = 1 << (vector % 32); in vlapic_set_intr_ready()
501 int i, lastprio, curprio, vector, idx; in vlapic_update_ppr() local
527 for (vector = 0; vector < 256; vector++) { in vlapic_update_ppr()
[all …]
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/
HDsanitizer_linux_test.cc87 std::vector<pthread_t> pthread_ids_;
88 std::vector<pid_t> tids_;
123 static std::vector<pid_t> ReadTidsToVector(ThreadLister *thread_lister) { in ReadTidsToVector()
124 std::vector<pid_t> listed_tids; in ReadTidsToVector()
132 static bool Includes(std::vector<pid_t> first, std::vector<pid_t> second) { in Includes()
139 static bool HasElement(std::vector<pid_t> vector, pid_t element) { in HasElement() argument
140 return std::find(vector.begin(), vector.end(), element) != vector.end(); in HasElement()
148 std::vector<pid_t> listed_tids = ReadTidsToVector(&thread_lister); in TEST_F()
162 std::vector<pid_t> listed_tids = ReadTidsToVector(&thread_lister); in TEST_F()
171 std::vector<pid_t> threads_before_extra = ReadTidsToVector(&thread_lister); in TEST_F()
[all …]
/NextBSD/sys/x86/include/
HDapicvar.h192 int ioapic_remap_vector(void *cookie, u_int pin, int vector);
239 void (*ipi_free)(int vector);
307 lapic_intr_pending(u_int vector) in lapic_intr_pending() argument
310 return (apic_ops.intr_pending(vector)); in lapic_intr_pending()
343 apic_enable_vector(u_int apic_id, u_int vector) in apic_enable_vector() argument
346 apic_ops.enable_vector(apic_id, vector); in apic_enable_vector()
350 apic_disable_vector(u_int apic_id, u_int vector) in apic_disable_vector() argument
353 apic_ops.disable_vector(apic_id, vector); in apic_disable_vector()
357 apic_free_vector(u_int apic_id, u_int vector, u_int irq) in apic_free_vector() argument
360 apic_ops.free_vector(apic_id, vector, irq); in apic_free_vector()
[all …]

12345678910>>...58