| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/ |
| D | altivec.h | 39 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 bool char __a, vector bool char __b, vector unsigned char __c); 50 static vector short __ATTRS_o_ai 51 vec_perm(vector short __a, vector short __b, vector unsigned char __c); [all …]
|
| /freebsd-10-stable/contrib/gdb/gdb/ |
| D | environ.c | 39 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 …]
|
| /freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/ |
| D | ValueTypes.td | 36 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 …]
|
| D | MachineModuleInfo.h | 71 std::vector<int> TypeIds; // List of type ids (filters negative) 87 typedef std::vector<std::pair<MCSymbol*, StubValueTy> > SymbolListTy; 111 std::vector<MCCFIInstruction> FrameInstructions; 119 std::vector<LandingPadInfo> LandingPads; 134 std::vector<const GlobalVariable *> TypeInfos; 137 std::vector<unsigned> FilterIds; 141 std::vector<unsigned> FilterEnds; 145 std::vector<const Function *> Personalities; 237 const std::vector<MCCFIInstruction> &getFrameInstructions() const { in getFrameInstructions() 262 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(const BasicBlock *BB); [all …]
|
| /freebsd-10-stable/contrib/libc++/include/ |
| D | vector | 2 //===------------------------------ 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 …]
|
| /freebsd-10-stable/contrib/gcc/doc/ |
| D | extend.texi | 76 * 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 …]
|
| /freebsd-10-stable/contrib/llvm/tools/bugpoint/ |
| D | ToolRunner.h | 41 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 = 0, 93 const std::vector<std::string> *GCCArgs = 0, 97 const std::vector<std::string> *Args=0); [all …]
|
| D | ToolRunner.cpp | 173 std::vector<std::string> ToolArgs; // Args to pass to LLI 175 LLI(const std::string &Path, const std::vector<std::string> *Args) in LLI() 182 const std::vector<std::string> &Args, 186 const std::vector<std::string> &GCCArgs, 187 const std::vector<std::string> &SharedLibs = 188 std::vector<std::string>(), 195 const std::vector<std::string> &Args, in ExecuteProgram() 199 const std::vector<std::string> &GCCArgs, in ExecuteProgram() 200 const std::vector<std::string> &SharedLibs, in ExecuteProgram() 203 std::vector<const char*> LLIArgs; in ExecuteProgram() [all …]
|
| D | BugDriver.h | 51 std::vector<std::string> PassesToRun; 77 bool addSources(const std::vector<std::string> &FileNames); 79 void setPassesToRun(const std::vector<std::string> &PTR) { in setPassesToRun() 82 const std::vector<std::string> &getPassesToRun() const { in getPassesToRun() 237 Module *ExtractMappedBlocksFromModule(const std::vector<BasicBlock*> &BBs, 245 Module *runPassesOn(Module *M, const std::vector<std::string> &Passes, 259 const std::vector<std::string> &PassesToRun, 271 bool runManyPasses(const std::vector<std::string> &AllPasses, 287 const std::vector<std::string> &PassesToRun, 309 std::string getPassesString(const std::vector<std::string> &Passes); [all …]
|
| /freebsd-10-stable/usr.sbin/ppp/ |
| D | auth.c | 168 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 …]
|
| /freebsd-10-stable/sys/powerpc/powerpc/ |
| D | intr_machdep.c | 100 u_int vector; member 149 int vector; in smp_intr_init() local 151 for (vector = 0; vector < nvectors; vector++) { in smp_intr_init() 152 i = powerpc_intrs[vector]; in smp_intr_init() 183 int vector; in intr_lookup() local 186 for (vector = 0; vector < nvectors; vector++) { in intr_lookup() 187 i = powerpc_intrs[vector]; in intr_lookup() 206 i->vector = -1; in intr_lookup() 216 for (vector = 0; vector < INTR_VECTORS && vector <= nvectors; in intr_lookup() 217 vector++) { in intr_lookup() [all …]
|
| D | gdb_machdep.c | 85 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()
|
| /freebsd-10-stable/sys/x86/x86/ |
| D | local_apic.c | 622 lapic_intr_pending(u_int vector) in lapic_intr_pending() argument 636 return (irr[(vector / 32) * 4] & 1 << (vector % 32)); in lapic_intr_pending() 789 lapic_set_tpr(u_int vector) in lapic_set_tpr() argument 792 lapic->tpr = vector; in lapic_set_tpr() 797 tpr |= vector; in lapic_set_tpr() 810 lapic_handle_intr(int vector, struct trapframe *frame) in lapic_handle_intr() argument 815 vector)); in lapic_handle_intr() 974 u_int vector; in apic_alloc_vector() local 983 for (vector = 0; vector < APIC_NUM_IOINTS; vector++) { in apic_alloc_vector() 984 if (lapics[apic_id].la_ioint_irqs[vector] != -1) in apic_alloc_vector() [all …]
|
| D | intr_machdep.c | 141 int error, vector; in intr_register_source() local 144 vector = isrc->is_pic->pic_vector(isrc); in intr_register_source() 145 if (interrupt_sources[vector] != NULL) in intr_register_source() 147 error = intr_event_create(&isrc->is_event, isrc, 0, vector, in intr_register_source() 150 vector); in intr_register_source() 154 if (interrupt_sources[vector] != NULL) { in intr_register_source() 160 interrupt_sources[vector] = isrc; in intr_register_source() 167 intr_lookup_source(int vector) in intr_lookup_source() argument 170 return (interrupt_sources[vector]); in intr_lookup_source() 174 intr_add_handler(const char *name, int vector, driver_filter_t filter, in intr_add_handler() argument [all …]
|
| /freebsd-10-stable/contrib/libstdc++/include/debug/ |
| D | vector | 1 // 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 …]
|
| /freebsd-10-stable/contrib/llvm/lib/TableGen/ |
| D | TGParser.h | 36 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; 106 const std::vector<unsigned> &BitList, Init *V); 108 const std::vector<unsigned> &BitList, Init *V) { in SetValue() 124 typedef std::vector<IterRecord> IterSet; 142 const std::vector<Init *> &TArgs, 143 std::vector<Init *> &TemplateVals, 153 std::vector<LetRecord> ParseLetList(); [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| D | Symtab.h | 27 typedef std::vector<uint32_t> IndexCollection; 50 void Dump(Stream *s, Target *target, std::vector<uint32_t>& indexes) const; 60 …uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& inde… 61 …eAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes… 62 …symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches… 63 …uint32_t AppendSymbolIndexesWithName (const ConstString& symbol_name, std::vector<uint32_t>& ma… 64 …symbol_name, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches… 65 …Type (const ConstString& symbol_name, lldb::SymbolType symbol_type, std::vector<uint32_t>& matches… 66 …symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches… 67 …Type (const RegularExpression ®ex, lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes… [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/ |
| D | ClangAttrEmitter.cpp | 25 static const std::vector<StringRef> 30 std::vector<StringRef> Strings; in getValueAsListOfStrings() 517 std::vector<StringRef> values, enums, uniques; 555 std::vector<StringRef>::const_iterator i = uniques.begin(), in writeDeclarations() 585 for (std::vector<StringRef>::const_iterator I = uniques.begin(), in writeDump() 613 std::vector<StringRef> values, enums, uniques; 635 std::vector<StringRef>::const_iterator i = uniques.begin(), in writeDeclarations() 655 for (std::vector<StringRef>::const_iterator UI = uniques.begin(), in writeDump() 891 std::vector<Record*> Bases = Search->getSuperClasses(); in createArgument() 892 for (std::vector<Record*>::iterator i = Bases.begin(), e = Bases.end(); in createArgument() [all …]
|
| /freebsd-10-stable/contrib/file/magic/Magdir/ |
| D | visx | 19 >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)
|
| /freebsd-10-stable/sys/ia64/ia64/ |
| D | trap.c | 250 printtrap(int vector, struct trapframe *tf, int isfatal, int user) in printtrap() argument 257 vector, ia64_vector_names[vector]); in printtrap() 312 trap_panic(int vector, struct trapframe *tf) in trap_panic() argument 315 printtrap(vector, tf, 1, TRAPF_USERMODE(tf)); in trap_panic() 317 kdb_trap(vector, 0, tf); in trap_panic() 348 trap(int vector, struct trapframe *tf) in trap() argument 385 switch (vector) { in trap() 392 trap_panic(vector, tf); in trap() 399 trap_panic(vector, tf); in trap() 409 trap_panic(vector, tf); in trap() [all …]
|
| /freebsd-10-stable/contrib/llvm/utils/TableGen/ |
| D | IntrinsicEmitter.cpp | 39 void EmitEnumInfo(const std::vector<CodeGenIntrinsic> &Ints, 42 void EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints, 44 void EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints, 46 void EmitIntrinsicToOverloadTable(const std::vector<CodeGenIntrinsic> &Ints, 48 void EmitVerifier(const std::vector<CodeGenIntrinsic> &Ints, 50 void EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints, 52 void EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints, 54 void EmitModRefBehavior(const std::vector<CodeGenIntrinsic> &Ints, 56 void EmitIntrinsicToGCCBuiltinMap(const std::vector<CodeGenIntrinsic> &Ints, 69 std::vector<CodeGenIntrinsic> Ints = LoadIntrinsics(Records, TargetOnly); in run() [all …]
|
| D | CodeGenMapTable.cpp | 83 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; 244 std::vector<Init*> KeyValue; in buildRowInstrMap() 290 const std::vector<ListInit*> &ValueCols = InstrMapDesc.getValueCols(); in buildMapTable() 294 std::vector<Record*> ColInstrVec(NumOfCols); in buildMapTable() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/ |
| D | CompilationDatabase.h | 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 virtual std::vector<CompileCommand> getCompileCommands( 199 virtual std::vector<std::string> getAllFiles() const; 205 virtual std::vector<CompileCommand> getAllCompileCommands() const; 210 std::vector<CompileCommand> CompileCommands;
|
| /freebsd-10-stable/contrib/llvm/lib/CodeGen/ |
| D | MachineModuleInfo.cpp | 57 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; 67 std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks; 73 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> > 85 if (I->second.Symbols.is<std::vector<MCSymbol*>*>()) in ~MMIAddrLabelMap() 86 delete I->second.Symbols.get<std::vector<MCSymbol*>*>(); in ~MMIAddrLabelMap() 90 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB); 93 std::vector<MCSymbol*> &Result); 110 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0]; in getAddrLabelSymbol() 124 std::vector<MCSymbol*> 130 std::vector<MCSymbol*> Result; in getAddrLabelSymbolToEmit() [all …]
|
| /freebsd-10-stable/sys/amd64/vmm/io/ |
| D | vlapic.c | 261 vlapic_set_intr_ready(struct vlapic *vlapic, int vector, bool level) in vlapic_set_intr_ready() argument 267 KASSERT(vector >= 0 && vector < 256, ("invalid vector %d", vector)); in vlapic_set_intr_ready() 272 "interrupt %d", vector); in vlapic_set_intr_ready() 276 if (vector < 16) { in vlapic_set_intr_ready() 279 vector); in vlapic_set_intr_ready() 284 return ((*vlapic->ops.set_intr_ready)(vlapic, vector, level)); in vlapic_set_intr_ready() 286 idx = (vector / 32) * 4; in vlapic_set_intr_ready() 287 mask = 1 << (vector % 32); in vlapic_set_intr_ready() 502 int i, lastprio, curprio, vector, idx; in vlapic_update_ppr() local 528 for (vector = 0; vector < 256; vector++) { in vlapic_update_ppr() [all …]
|