| /dflybsd-src/sys/dev/drm/amd/display/dc/basics/ |
| H A D | vector.c | 30 struct vector *vector, in dal_vector_construct() argument 35 vector->container = NULL; in dal_vector_construct() 43 vector->container = kcalloc(capacity, struct_size, GFP_KERNEL); in dal_vector_construct() 44 if (vector->container == NULL) in dal_vector_construct() 46 vector->capacity = capacity; in dal_vector_construct() 47 vector->struct_size = struct_size; in dal_vector_construct() 48 vector->count = 0; in dal_vector_construct() 49 vector->ctx = ctx; in dal_vector_construct() 55 struct vector *vector, in dal_vector_presized_costruct() argument 63 vector->container = NULL; in dal_vector_presized_costruct() [all …]
|
| /dflybsd-src/sys/dev/drm/amd/display/include/ |
| H A D | vector.h | 29 struct vector { struct 38 struct vector *vector, argument 43 struct vector *dal_vector_create( 50 struct vector *dal_vector_presized_create( 57 struct vector *vector); 60 struct vector **vector); 63 const struct vector *vector); 73 struct vector *vector, 78 struct vector *vector, 83 const struct vector *vector, [all …]
|
| /dflybsd-src/contrib/gdb-7/gdb/ |
| H A D | environ.c | 36 e->vector = (char **) xmalloc ((e->allocated + 1) * sizeof (char *)); in make_environ() 37 e->vector[0] = 0; in make_environ() 46 char **vector = e->vector; in free_environ() local 48 while (*vector) in free_environ() 49 xfree (*vector++); in free_environ() 51 xfree (e->vector); in free_environ() 73 e->vector = (char **) xrealloc ((char *) e->vector, in init_environ() 77 memcpy (e->vector, environ, (i + 1) * sizeof (char *)); in init_environ() 81 int len = strlen (e->vector[i]); in init_environ() 84 memcpy (new, e->vector[i], len + 1); in init_environ() [all …]
|
| /dflybsd-src/usr.sbin/ppp/ |
| H A D | auth.c | 127 char *vector[6], buff[LINE_LEN]; in auth_SetPhoneList() local 139 memset(vector, '\0', sizeof vector); in auth_SetPhoneList() 140 if ((n = MakeArgs(buff, vector, VECSIZE(vector), PARSE_REDUCE)) < 0) in auth_SetPhoneList() 144 if (strcmp(vector[0], name) == 0) { in auth_SetPhoneList() 146 if (*vector[4] == '\0') in auth_SetPhoneList() 148 strncpy(phone, vector[4], phonelen - 1); in auth_SetPhoneList() 172 char *vector[5], buff[LINE_LEN]; in auth_Select() local 200 memset(vector, '\0', sizeof vector); in auth_Select() 201 if ((n = MakeArgs(buff, vector, VECSIZE(vector), PARSE_REDUCE)) < 0) in auth_Select() 205 if (strcmp(vector[0], name) == 0) { in auth_Select() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/gcc/doc/ |
| H A D | extend.texi | 80 * Vector Extensions:: Using vector instructions through built-in functions. 2679 @cindex calling functions through the function vector on H8/300, M16C, M32C and SH2A processors 2681 function should be called through the function vector. Calling a 2682 function through the function vector will reduce code size, however; 2683 the function vector has a limited size (maximum 128 entries on the H8/300 2684 and 64 entries on the H8/300H and H8S) and shares space with the interrupt vector. 2688 number of the same function in a vector table containing all the TBR 2690 should contain the start address of this TBR relative vector table. 2692 TBR register initialization. The TBR relative vector table can have at 2709 subroutine. The argument to the attribute is the vector number entry [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/profile/ |
| H A D | vector | 1 // Profiling vector implementation -*- C++ -*- 24 /** @file profile/vector 31 #include <vector> 129 class vector 130 : public _Vector_profile_pre<vector<_Tp, _Allocator> >, 131 public _GLIBCXX_STD_C::vector<_Tp, _Allocator>, 132 public _Vector_profile_post<vector<_Tp, _Allocator> > 134 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base; 143 typedef __iterator_tracker<_Base_iterator, vector> 145 typedef __iterator_tracker<_Base_const_iterator, vector> [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/profile/ |
| H A D | vector | 1 // Profiling vector implementation -*- C++ -*- 24 /** @file profile/vector 31 #include <vector> 42 class vector 43 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator> 45 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base; 55 typedef __iterator_tracker<typename _Base::iterator, vector> 57 typedef __iterator_tracker<typename _Base::const_iterator, vector> 78 vector(const _Allocator& __a = _Allocator()) 87 vector(size_type __n) [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/debug/ |
| H A D | vector | 1 // Debugging vector implementation -*- C++ -*- 25 /** @file debug/vector 34 #include <vector> 42 /** @brief Base class for Debug Mode vector. 110 /// Class std::vector with safety/checking/debug instrumentation. 113 class vector 115 vector<_Tp, _Allocator>, _Allocator, __gnu_debug::_Safe_sequence>, 116 public _GLIBCXX_STD_C::vector<_Tp, _Allocator>, 118 vector<_Tp, _Allocator>, 119 _GLIBCXX_STD_C::vector<_Tp, _Allocator> > [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/debug/ |
| H A D | vector | 1 // Debugging vector implementation -*- C++ -*- 26 /** @file debug/vector 33 #include <vector> 42 /// Class std::vector with safety/checking/debug instrumentation. 45 class vector 46 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>, 47 public __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> > 49 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base; 63 typedef __gnu_debug::_Safe_iterator<_Base_iterator,vector> 65 typedef __gnu_debug::_Safe_iterator<_Base_const_iterator,vector> [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| H A D | stl_vector.h | 208 class vector : protected _Vector_base<_Tp, _Alloc> in _GLIBCXX_VISIBILITY() 225 typedef __gnu_cxx::__normal_iterator<pointer, vector> iterator; in _GLIBCXX_VISIBILITY() 226 typedef __gnu_cxx::__normal_iterator<const_pointer, vector> in _GLIBCXX_VISIBILITY() 246 vector() in _GLIBCXX_VISIBILITY() 254 vector(const allocator_type& __a) in _GLIBCXX_VISIBILITY() 266 vector(size_type __n) in _GLIBCXX_VISIBILITY() 278 vector(size_type __n, const value_type& __value, in _GLIBCXX_VISIBILITY() 292 vector(size_type __n, const value_type& __value = value_type(), in _GLIBCXX_VISIBILITY() 307 vector(const vector& __x) in _GLIBCXX_VISIBILITY() 324 vector(vector&& __x) noexcept in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | vector.tcc | 66 vector<_Tp, _Alloc>:: 92 vector<_Tp, _Alloc>:: 107 typename vector<_Tp, _Alloc>::iterator 108 vector<_Tp, _Alloc>:: 134 typename vector<_Tp, _Alloc>::iterator 135 vector<_Tp, _Alloc>:: 146 typename vector<_Tp, _Alloc>::iterator 147 vector<_Tp, _Alloc>:: 160 vector<_Tp, _Alloc>& 161 vector<_Tp, _Alloc>:: [all …]
|
| /dflybsd-src/contrib/file/magic/Magdir/ |
| H A 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)
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| H A D | vector.tcc | 66 vector<_Tp, _Alloc>:: 93 typename vector<_Tp, _Alloc>::reference 97 vector<_Tp, _Alloc>:: 117 typename vector<_Tp, _Alloc>::iterator 118 vector<_Tp, _Alloc>:: 158 typename vector<_Tp, _Alloc>::iterator 159 vector<_Tp, _Alloc>:: 171 typename vector<_Tp, _Alloc>::iterator 172 vector<_Tp, _Alloc>:: 185 vector<_Tp, _Alloc>& [all …]
|
| H A D | stl_vector.h | 339 class vector : protected _Vector_base<_Tp, _Alloc> in _GLIBCXX_VISIBILITY() 369 typedef __gnu_cxx::__normal_iterator<pointer, vector> iterator; in _GLIBCXX_VISIBILITY() 370 typedef __gnu_cxx::__normal_iterator<const_pointer, vector> in _GLIBCXX_VISIBILITY() 391 vector() in _GLIBCXX_VISIBILITY() 402 vector(const allocator_type& __a) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY() 415 vector(size_type __n, const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 427 vector(size_type __n, const value_type& __value, in _GLIBCXX_VISIBILITY() 441 vector(size_type __n, const value_type& __value = value_type(), in _GLIBCXX_VISIBILITY() 458 vector(const vector& __x) in _GLIBCXX_VISIBILITY() 476 vector(vector&& __x) noexcept in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/gcc/config/i386/ |
| H A D | athlon.md | 39 (define_attr "athlon_decode" "direct,vector,double" 41 (const_string "vector") 44 (const_string "vector") 48 (const_string "vector")] 51 (define_attr "amdfam10_decode" "direct,vector,double" 85 ;; We solve that by specialized vector decoder unit and exclusion set. 88 (define_reservation "athlon-vector" "nothing,athlon-decodev") 161 "athlon-vector,athlon-ieu") 176 "athlon-vector,athlon-load,athlon-ieu") 188 "athlon-vector,(athlon-ieu+athlon-load)") [all …]
|
| /dflybsd-src/contrib/gcc-8.0/gcc/config/i386/ |
| H A D | athlon.md | 38 (define_attr "athlon_decode" "direct,vector,double" 40 (const_string "vector") 43 (const_string "vector") 47 (const_string "vector")] 50 (define_attr "amdfam10_decode" "direct,vector,double" 84 ;; We solve that by specialized vector decoder unit and exclusion set. 87 (define_reservation "athlon-vector" "nothing,athlon-decodev") 160 "athlon-vector,athlon-ieu") 175 "athlon-vector,athlon-load,athlon-ieu") 187 "athlon-vector,(athlon-ieu+athlon-load)") [all …]
|
| /dflybsd-src/contrib/binutils-2.27/gold/ |
| H A D | dynobj.h | 43 typedef std::vector<std::string> Needed; 94 create_elf_hash_table(const std::vector<Symbol*>& dynsyms, 104 create_gnu_hash_table(const std::vector<Symbol*>& dynsyms, 131 compute_bucket_count(const std::vector<uint32_t>& hashcodes, 137 sized_create_elf_hash_table(const std::vector<uint32_t>& bucket, 138 const std::vector<uint32_t>& chain, 145 sized_create_gnu_hash_table(const std::vector<Symbol*>& hashed_dynsyms, 146 const std::vector<uint32_t>& dynsym_hashvals, 330 typedef std::vector<const char*> Version_map; 407 Verdef(const char* name, const std::vector<std::string>& deps, in Verdef() [all …]
|
| H A D | icf.h | 42 typedef std::vector<Section_id> Sections_reachable_info; 43 typedef std::vector<Symbol*> Symbol_info; 44 typedef std::vector<std::pair<long long, long long> > Addend_info; 45 typedef std::vector<uint64_t> Offset_info; 46 typedef std::vector<unsigned int> Reloc_addend_size_info; 148 std::vector<Section_id> id_section_; 154 std::vector<unsigned int> kept_section_id_;
|
| /dflybsd-src/contrib/binutils-2.34/gold/ |
| H A D | dynobj.h | 43 typedef std::vector<std::string> Needed; 94 create_elf_hash_table(const std::vector<Symbol*>& dynsyms, 104 create_gnu_hash_table(const std::vector<Symbol*>& dynsyms, 131 compute_bucket_count(const std::vector<uint32_t>& hashcodes, 137 sized_create_elf_hash_table(const std::vector<uint32_t>& bucket, 138 const std::vector<uint32_t>& chain, 145 sized_create_gnu_hash_table(const std::vector<Symbol*>& hashed_dynsyms, 146 const std::vector<uint32_t>& dynsym_hashvals, 330 typedef std::vector<const char*> Version_map; 407 Verdef(const char* name, const std::vector<std::string>& deps, in Verdef() [all …]
|
| /dflybsd-src/sbin/devd/ |
| H A D | devd.hh | 138 std::vector<eps *> _epsvec; 167 void sort_vector(std::vector<event_proc *> &); 174 std::vector<std::string> _dir_list; 176 std::vector<var_list *> _var_list_table; 177 std::vector<event_proc *> _attach_list; 178 std::vector<event_proc *> _detach_list; 179 std::vector<event_proc *> _nomatch_list; 180 std::vector<event_proc *> _notify_list;
|
| /dflybsd-src/contrib/gcc-4.7/libiberty/ |
| H A D | pexecute.c | 100 int *vector; in pwait() local 102 vector = XNEWVEC (int, idx); in pwait() 103 if (!pex_get_status (pex, idx, vector)) in pwait() 105 free (vector); in pwait() 108 *status = vector[pid]; in pwait() 109 free (vector); in pwait()
|
| /dflybsd-src/contrib/gcc-8.0/libiberty/ |
| H A D | pexecute.c | 100 int *vector; in pwait() local 102 vector = XNEWVEC (int, idx); in pwait() 103 if (!pex_get_status (pex, idx, vector)) in pwait() 105 free (vector); in pwait() 108 *status = vector[pid]; in pwait() 109 free (vector); in pwait()
|
| /dflybsd-src/contrib/binutils-2.27/libiberty/ |
| H A D | pexecute.c | 100 int *vector; in pwait() local 102 vector = XNEWVEC (int, idx); in pwait() 103 if (!pex_get_status (pex, idx, vector)) in pwait() 105 free (vector); in pwait() 108 *status = vector[pid]; in pwait() 109 free (vector); in pwait()
|
| /dflybsd-src/contrib/binutils-2.34/libiberty/ |
| H A D | pexecute.c | 100 int *vector; in pwait() local 102 vector = XNEWVEC (int, idx); in pwait() 103 if (!pex_get_status (pex, idx, vector)) in pwait() 105 free (vector); in pwait() 108 *status = vector[pid]; in pwait() 109 free (vector); in pwait()
|
| /dflybsd-src/contrib/gdb-7/libiberty/ |
| H A D | pexecute.c | 100 int *vector; in pwait() local 102 vector = XNEWVEC (int, idx); in pwait() 103 if (!pex_get_status (pex, idx, vector)) in pwait() 105 free (vector); in pwait() 108 *status = vector[pid]; in pwait() 109 free (vector); in pwait()
|