Home
last modified time | relevance | path

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

12345678910>>...119

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Daltivec.h50 static __inline__ vector signed char __ATTRS_o_ai vec_perm(
51 vector signed char __a, vector signed char __b, vector unsigned char __c);
53 static __inline__ vector unsigned char __ATTRS_o_ai
54 vec_perm(vector unsigned char __a, vector unsigned char __b,
55 vector unsigned char __c);
57 static __inline__ vector bool char __ATTRS_o_ai
58 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c);
60 static __inline__ vector short __ATTRS_o_ai vec_perm(vector signed short __a,
61 vector signed short __b,
62 vector unsigned char __c);
[all …]
/freebsd/contrib/pam-krb5/pam-util/
H A Dvector.c45 struct vector *
48 struct vector *vector; in vector_new() local
50 vector = calloc(1, sizeof(struct vector)); in vector_new()
51 vector->allocated = 1; in vector_new()
52 vector->strings = calloc(1, sizeof(char *)); in vector_new()
53 return vector; in vector_new()
61 struct vector *
62 vector_copy(const struct vector *old) in vector_copy()
64 struct vector *vector; in vector_copy() local
67 vector = vector_new(); in vector_copy()
[all …]
H A Dvector.h43 struct vector { struct
55 struct vector *vector_new(void) __attribute__((__malloc__));
61 struct vector *vector_copy(const struct vector *)
68 bool vector_add(struct vector *, const char *string)
76 bool vector_resize(struct vector *, size_t size) __attribute__((__nonnull__));
83 void vector_clear(struct vector *) __attribute__((__nonnull__));
86 void vector_free(struct vector *);
100 struct vector *vector_split_multi(const char *string, const char *seps,
101 struct vector *)
110 int vector_exec(const char *path, struct vector *)
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/hlsl/
H A Dhlsl_basic_types.h51 typedef vector<int16_t, 1> int16_t1;
52 typedef vector<int16_t, 2> int16_t2;
53 typedef vector<int16_t, 3> int16_t3;
54 typedef vector<int16_t, 4> int16_t4;
55 typedef vector<uint16_t, 1> uint16_t1;
56 typedef vector<uint16_t, 2> uint16_t2;
57 typedef vector<uint16_t, 3> uint16_t3;
58 typedef vector<uint16_t, 4> uint16_t4;
60 typedef vector<bool, 1> bool1;
61 typedef vector<bool, 2> bool2;
[all …]
H A Dhlsl_intrinsic_helpers.h15 constexpr vector<uint, 4> d3d_color_to_ubyte4_impl(vector<float, 4> V) { in d3d_color_to_ubyte4_impl()
30 length_vec_impl(vector<T, N> X) { in length_vec_impl()
39 constexpr vector<T, 4> dst_impl(vector<T, 4> Src0, vector<T, 4> Src1) { in dst_impl()
49 distance_vec_impl(vector<T, N> X, vector<T, N> Y) { in distance_vec_impl()
66 constexpr vector<T, L> reflect_vec_impl(vector<T, L> I, vector<T, L> N) { in reflect_vec_impl()
86 constexpr vector<T, N> fmod_vec_impl(vector<T, N> X, vector<T, N> Y) { in fmod_vec_impl()
90 vector<T, N> div = X / Y; in fmod_vec_impl()
91 vector<bool, N> ge = div >= 0; in fmod_vec_impl()
92 vector<T, N> frc = frac(abs(div)); in fmod_vec_impl()
107 constexpr vector<T, N> smoothstep_vec_impl(vector<T, N> Min, vector<T, N> Max, in smoothstep_vec_impl()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsSystemZ.def35 TARGET_BUILTIN(__builtin_s390_lcbb, "UivC*Ii", "nc", "vector")
36 TARGET_BUILTIN(__builtin_s390_vlbb, "V16ScvC*Ii", "", "vector")
37 TARGET_BUILTIN(__builtin_s390_vll, "V16ScUivC*", "", "vector")
38 TARGET_BUILTIN(__builtin_s390_vstl, "vV16ScUiv*", "", "vector")
39 TARGET_BUILTIN(__builtin_s390_vperm, "V16UcV16UcV16UcV16Uc", "nc", "vector")
40 TARGET_BUILTIN(__builtin_s390_vpdi, "V2ULLiV2ULLiV2ULLiIi", "nc", "vector")
41 TARGET_BUILTIN(__builtin_s390_vpksh, "V16ScV8SsV8Ss", "nc", "vector")
42 TARGET_BUILTIN(__builtin_s390_vpkshs, "V16ScV8SsV8Ssi*", "nc", "vector")
43 TARGET_BUILTIN(__builtin_s390_vpksf, "V8SsV4SiV4Si", "nc", "vector")
44 TARGET_BUILTIN(__builtin_s390_vpksfs, "V8SsV4SiV4Sii*", "nc", "vector")
[all …]
H A DBuiltinsPPC.def40 // V -> Vector type used with MMA built-ins (vector unsigned char)
41 // W -> PPC Vector type followed by the size of the vector type.
67 // "mma,paired-vector-memops")
198 TARGET_BUILTIN(__builtin_ppc_extract_exp, "Uid", "", "power9-vector")
199 TARGET_BUILTIN(__builtin_ppc_extract_sig, "ULLid", "", "power9-vector")
207 TARGET_BUILTIN(__builtin_ppc_insert_exp, "ddULLi", "", "power9-vector")
248 "power8-vector")
250 "power8-vector")
252 "power8-vector")
254 "power8-vector")
[all …]
/freebsd/contrib/pam-krb5/tests/pam-util/
H A Dvector-t.c33 struct vector *vector, *ovector, *copy; in main() local
42 vector = vector_new(); in main()
43 ok(vector != NULL, "vector_new returns non-NULL"); in main()
44 if (vector == NULL) in main()
46 ok(vector_add(vector, cstring), "vector_add succeeds"); in main()
47 is_int(1, vector->count, "vector_add increases count"); in main()
48 ok(vector->strings[0] != cstring, "...and allocated new memory"); in main()
49 ok(vector_resize(vector, 4), "vector_resize succeeds"); in main()
50 is_int(4, vector->allocated, "vector_resize works"); in main()
51 ok(vector_add(vector, cstring), "vector_add #2"); in main()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.td91 def v1i1 : VTVec<1, i1, 17>; // 1 x i1 vector value
92 def v2i1 : VTVec<2, i1, 18>; // 2 x i1 vector value
93 def v3i1 : VTVec<3, i1, 19>; // 3 x i1 vector value
94 def v4i1 : VTVec<4, i1, 20>; // 4 x i1 vector value
95 def v8i1 : VTVec<8, i1, 21>; // 8 x i1 vector value
96 def v16i1 : VTVec<16, i1, 22>; // 16 x i1 vector value
97 def v32i1 : VTVec<32, i1, 23>; // 32 x i1 vector value
98 def v64i1 : VTVec<64, i1, 24>; // 64 x i1 vector value
99 def v128i1 : VTVec<128, i1, 25>; // 128 x i1 vector value
100 def v256i1 : VTVec<256, i1, 26>; // 256 x i1 vector value
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DDLL.h28 std::vector<DefinedImportData *> imports;
29 std::vector<Chunk *> dirs;
30 std::vector<Chunk *> lookups;
31 std::vector<Chunk *> addresses;
32 std::vector<Chunk *> hints;
33 std::vector<Chunk *> dllNames;
34 std::vector<Chunk *> auxIat;
35 std::vector<Chunk *> auxIatCopy;
46 std::vector<Chunk *> getChunks();
47 std::vector<Chunk *> getDataChunks();
[all …]
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devppkey_ml_kem_512_decap.txt12 # Official test vector 0, seed: "061550234d158c5ec95595fe04ef7a25767f2e24cc2bc479d09d86dc9abcfde705…
19 # Official test vector 1, seed: "d81c4d8d734fcbfbeade3d3f8a039faa2a2c9957e835ad55b22e75bf57bb556ac8…
26 # Official test vector 2, seed: "64335bf29e5de62842c941766ba129b0643b5e7121ca26cfc190ec7dc354383055…
33 # Official test vector 3, seed: "225d5ce2ceac61930a07503fb59f7c2f936a3e075481da3ca299a80f8c5df9223a…
40 # Official test vector 4, seed: "edc76e7c1523e3862552133fea4d2ab05c69fb54a9354f0846456a2a407e071df4…
47 # Official test vector 5, seed: "aa93649193c2c5985acf8f9e6ac50c36ae16a2526d7c684f7a3bb4abcd7b6ff790…
54 # Official test vector 6, seed: "2e014dc7c2696b9f6d4af555cba4b931b34863ff60e2341d4fdfe472fef2fe2c33…
61 # Official test vector 7, seed: "aefb28fdd34e0ab403a703b535296e3a545ca479c1d8148e2d501b3c8dd8b1034b…
68 # Official test vector 8, seed: "cbe5161e8de02dda7de204aeb0fbb4ca81344ba8c30fe357a4664e5d2988a03b64…
75 # Official test vector 9, seed: "b4663a7a9883386a2ae4cbd93787e247bf26087e3826d1b8dbeb679e49c0bb286e…
[all …]
H A Devppkey_ml_kem_512_encap.txt12 # Official test vector 0, seed: "061550234d158c5ec95595fe04ef7a25767f2e24cc2bc479d09d86dc9abcfde705…
20 # Official test vector 1, seed: "d81c4d8d734fcbfbeade3d3f8a039faa2a2c9957e835ad55b22e75bf57bb556ac8…
28 # Official test vector 2, seed: "64335bf29e5de62842c941766ba129b0643b5e7121ca26cfc190ec7dc354383055…
36 # Official test vector 3, seed: "225d5ce2ceac61930a07503fb59f7c2f936a3e075481da3ca299a80f8c5df9223a…
44 # Official test vector 4, seed: "edc76e7c1523e3862552133fea4d2ab05c69fb54a9354f0846456a2a407e071df4…
52 # Official test vector 5, seed: "aa93649193c2c5985acf8f9e6ac50c36ae16a2526d7c684f7a3bb4abcd7b6ff790…
60 # Official test vector 6, seed: "2e014dc7c2696b9f6d4af555cba4b931b34863ff60e2341d4fdfe472fef2fe2c33…
68 # Official test vector 7, seed: "aefb28fdd34e0ab403a703b535296e3a545ca479c1d8148e2d501b3c8dd8b1034b…
76 # Official test vector 8, seed: "cbe5161e8de02dda7de204aeb0fbb4ca81344ba8c30fe357a4664e5d2988a03b64…
84 # Official test vector 9, seed: "b4663a7a9883386a2ae4cbd93787e247bf26087e3826d1b8dbeb679e49c0bb286e…
[all …]
H A Devppkey_ml_kem_512_keygen.txt12 # Official test vector 0, seed: "061550234d158c5ec95595fe04ef7a25767f2e24cc2bc479d09d86dc9abcfde705…
19 # Official test vector 1, seed: "d81c4d8d734fcbfbeade3d3f8a039faa2a2c9957e835ad55b22e75bf57bb556ac8…
26 # Official test vector 2, seed: "64335bf29e5de62842c941766ba129b0643b5e7121ca26cfc190ec7dc354383055…
33 # Official test vector 3, seed: "225d5ce2ceac61930a07503fb59f7c2f936a3e075481da3ca299a80f8c5df9223a…
40 # Official test vector 4, seed: "edc76e7c1523e3862552133fea4d2ab05c69fb54a9354f0846456a2a407e071df4…
47 # Official test vector 5, seed: "aa93649193c2c5985acf8f9e6ac50c36ae16a2526d7c684f7a3bb4abcd7b6ff790…
54 # Official test vector 6, seed: "2e014dc7c2696b9f6d4af555cba4b931b34863ff60e2341d4fdfe472fef2fe2c33…
61 # Official test vector 7, seed: "aefb28fdd34e0ab403a703b535296e3a545ca479c1d8148e2d501b3c8dd8b1034b…
68 # Official test vector 8, seed: "cbe5161e8de02dda7de204aeb0fbb4ca81344ba8c30fe357a4664e5d2988a03b64…
75 # Official test vector 9, seed: "b4663a7a9883386a2ae4cbd93787e247bf26087e3826d1b8dbeb679e49c0bb286e…
[all …]
H A Devppkey_ml_kem_1024_keygen.txt13 # Official test vector 0, seed: "061550234d158c5ec95595fe04ef7a25767f2e24cc2bc479d09d86dc9abcfde705…
20 # Official test vector 1, seed: "d81c4d8d734fcbfbeade3d3f8a039faa2a2c9957e835ad55b22e75bf57bb556ac8…
27 # Official test vector 2, seed: "64335bf29e5de62842c941766ba129b0643b5e7121ca26cfc190ec7dc354383055…
34 # Official test vector 3, seed: "225d5ce2ceac61930a07503fb59f7c2f936a3e075481da3ca299a80f8c5df9223a…
41 # Official test vector 4, seed: "edc76e7c1523e3862552133fea4d2ab05c69fb54a9354f0846456a2a407e071df4…
48 # Official test vector 5, seed: "aa93649193c2c5985acf8f9e6ac50c36ae16a2526d7c684f7a3bb4abcd7b6ff790…
55 # Official test vector 6, seed: "2e014dc7c2696b9f6d4af555cba4b931b34863ff60e2341d4fdfe472fef2fe2c33…
62 # Official test vector 7, seed: "aefb28fdd34e0ab403a703b535296e3a545ca479c1d8148e2d501b3c8dd8b1034b…
69 # Official test vector 8, seed: "cbe5161e8de02dda7de204aeb0fbb4ca81344ba8c30fe357a4664e5d2988a03b64…
76 # Official test vector 9, seed: "b4663a7a9883386a2ae4cbd93787e247bf26087e3826d1b8dbeb679e49c0bb286e…
[all …]
H A Devppkey_ml_kem_768_keygen.txt13 # Official test vector 0, seed: "061550234d158c5ec95595fe04ef7a25767f2e24cc2bc479d09d86dc9abcfde705…
20 # Official test vector 1, seed: "d81c4d8d734fcbfbeade3d3f8a039faa2a2c9957e835ad55b22e75bf57bb556ac8…
27 # Official test vector 2, seed: "64335bf29e5de62842c941766ba129b0643b5e7121ca26cfc190ec7dc354383055…
34 # Official test vector 3, seed: "225d5ce2ceac61930a07503fb59f7c2f936a3e075481da3ca299a80f8c5df9223a…
41 # Official test vector 4, seed: "edc76e7c1523e3862552133fea4d2ab05c69fb54a9354f0846456a2a407e071df4…
48 # Official test vector 5, seed: "aa93649193c2c5985acf8f9e6ac50c36ae16a2526d7c684f7a3bb4abcd7b6ff790…
55 # Official test vector 6, seed: "2e014dc7c2696b9f6d4af555cba4b931b34863ff60e2341d4fdfe472fef2fe2c33…
62 # Official test vector 7, seed: "aefb28fdd34e0ab403a703b535296e3a545ca479c1d8148e2d501b3c8dd8b1034b…
69 # Official test vector 8, seed: "cbe5161e8de02dda7de204aeb0fbb4ca81344ba8c30fe357a4664e5d2988a03b64…
76 # Official test vector 9, seed: "b4663a7a9883386a2ae4cbd93787e247bf26087e3826d1b8dbeb679e49c0bb286e…
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__vector/
H A Dvector_bool.h70 struct hash<vector<bool, _Allocator> >;
73 struct __has_storage_type<vector<bool, _Allocator> > {
78 class vector<bool, _Allocator> {
80 using __self _LIBCPP_NODEBUG = vector;
87 using pointer = __bit_iterator<vector, false>;
88 using const_pointer = __bit_iterator<vector, true>;
105 using reference = __bit_reference<vector>;
109 using const_reference = __bit_const_reference<vector>;
125 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 vector()
128 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 explicit vector(const allocator_type& __a)
[all …]
H A Dcomparison.h27 operator==(const vector<_Tp, _Allocator>& __x, const vector<_Tp, _Allocator>& __y) {
28 const typename vector<_Tp, _Allocator>::size_type __sz = __x.size();
35 inline _LIBCPP_HIDE_FROM_ABI bool operator!=(const vector<_Tp, _Allocator>& __x, const vector<_Tp, …
40 inline _LIBCPP_HIDE_FROM_ABI bool operator<(const vector<_Tp, _Allocator>& __x, const vector<_Tp, _…
45 inline _LIBCPP_HIDE_FROM_ABI bool operator>(const vector<_Tp, _Allocator>& __x, const vector<_Tp, _…
50 inline _LIBCPP_HIDE_FROM_ABI bool operator>=(const vector<_Tp, _Allocator>& __x, const vector<_Tp, …
55 inline _LIBCPP_HIDE_FROM_ABI bool operator<=(const vector<_Tp, _Allocator>& __x, const vector<_Tp, …
63 operator<=>(const vector<_Tp, _Allocator>& __x, const vector<_Tp, _Allocator>& __y) {
/freebsd/contrib/llvm-project/libcxx/include/
H A Dvector16 vector synopsis
22 class vector
38 vector()
40 explicit vector(const allocator_type&);
41 explicit vector(size_type n);
42 explicit vector(size_type n, const allocator_type&); // C++14
43 vector(size_type n, const value_type& value, const allocator_type& = allocator_type());
45 vector(InputIterator first, InputIterator last, const allocator_type& = allocator_type());
47 constexpr vector(from_range_t, R&& rg, const Allocator& = Allocator()); // C++23
48 vector(const vector& x);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h62 std::vector<SUnit*> SUnits;
64 std::vector<SUnit*> TopReadySUs;
65 std::vector<SUnit*> ScheduledSUnits;
75 std::vector<unsigned> InternalAdditionalPressure;
77 std::vector<unsigned> LiveInPressure;
78 std::vector<unsigned> LiveOutPressure;
90 std::vector<unsigned> HasLowLatencyNonWaitedParent;
95 std::vector<SIScheduleBlock*> Preds; // All blocks predecessors.
97 std::vector<std::pair<SIScheduleBlock*, SIScheduleBlockLinkKind>> Succs;
119 const std::vector<SIScheduleBlock*>& getPreds() const { return Preds; } in getPreds()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dvector16 vector synopsis
22 class vector
38 vector()
40 explicit vector(const allocator_type&);
41 explicit vector(size_type n);
42 explicit vector(size_type n, const allocator_type&); // C++14
43 vector(size_type n, const value_type& value, const allocator_type& = allocator_type());
45 vector(InputIterator first, InputIterator last, const allocator_type& = allocator_type());
47 constexpr vector(from_range_t, R&& rg, const Allocator& = Allocator()); // C++23
48 vector(const vector& x);
[all …]
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.h40 std::vector<std::string> ccArgs; // CC-specific arguments.
42 const std::vector<std::string> *CCArgs) in CC()
53 const std::vector<std::string> *Args);
63 const std::string &ProgramFile, const std::vector<std::string> &Args,
66 const std::vector<std::string> &CCArgs = std::vector<std::string>(),
74 const std::vector<std::string> &ArgsForCC);
88 const std::vector<std::string> *Args = nullptr,
89 const std::vector<std::string> *CCArgs = nullptr,
94 const std::vector<std::string> *Args = nullptr);
98 const std::vector<std::string> *Args = nullptr);
[all …]
H A DToolRunner.cpp146 std::vector<std::string> ToolArgs; // Args to pass to LLI
148 LLI(const std::string &Path, const std::vector<std::string> *Args) in LLI()
157 const std::string &Bitcode, const std::vector<std::string> &Args,
159 const std::vector<std::string> &CCArgs,
160 const std::vector<std::string> &SharedLibs = std::vector<std::string>(),
166 const std::vector<std::string> &Args, in ExecuteProgram()
169 const std::vector<std::string> &CCArgs, in ExecuteProgram()
170 const std::vector<std::string> &SharedLibs, in ExecuteProgram()
172 std::vector<StringRef> LLIArgs; in ExecuteProgram()
176 for (std::vector<std::string>::const_iterator i = SharedLibs.begin(), in ExecuteProgram()
[all …]
/freebsd/usr.sbin/ppp/
H A Dauth.c174 char *vector[6], buff[LINE_LEN]; in auth_SetPhoneList() local
186 memset(vector, '\0', sizeof vector); in auth_SetPhoneList()
187 if ((n = MakeArgs(buff, vector, VECSIZE(vector), PARSE_REDUCE)) < 0) in auth_SetPhoneList()
191 if (strcmp(vector[0], name) == 0) { in auth_SetPhoneList()
193 if (*vector[4] == '\0') in auth_SetPhoneList()
195 strncpy(phone, vector[4], phonelen - 1); in auth_SetPhoneList()
219 char *vector[5], buff[LINE_LEN]; in auth_Select() local
247 memset(vector, '\0', sizeof vector); in auth_Select()
248 if ((n = MakeArgs(buff, vector, VECSIZE(vector), PARSE_REDUCE)) < 0) in auth_Select()
252 if (strcmp(vector[0], name) == 0) { in auth_Select()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningTool.h33 using ModuleDepsGraph = std::vector<ModuleDeps>;
47 std::vector<std::string> FileDeps;
51 std::vector<PrebuiltModuleDep> PrebuiltModuleDeps;
58 std::vector<ModuleID> ClangModuleDeps;
62 std::vector<std::string> VisibleModules;
65 std::vector<std::string> NamedModuleDeps;
73 std::vector<Command> Commands;
76 std::vector<std::string> DriverCommandLine;
82 std::vector<P1689ModuleInfo> Requires;
104 getDependencyFile(const std::vector<std::string> &CommandLine, StringRef CWD);
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DWindowsResource.h159 std::vector<std::string> &Duplicates);
161 std::vector<std::string> &Duplicates);
162 LLVM_ABI void cleanUpManifests(std::vector<std::string> &Duplicates);
165 ArrayRef<std::vector<uint8_t>> getData() const { return Data; } in getData()
166 ArrayRef<std::vector<UTF16>> getStringTable() const { return StringTable; } in getStringTable()
204 std::vector<std::vector<uint8_t>> &Data,
205 std::vector<std::vector<UTF16>> &StringTable,
208 std::vector<std::vector<UTF16>> &StringTable);
210 std::vector<std::vector<UTF16>> &StringTable);
212 std::vector<std::vector<uint8_t>> &Data,
[all …]

12345678910>>...119