Home
last modified time | relevance | path

Searched +defs:u +defs:G (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
H A Deval.pass.cpp27 typedef std::minstd_rand G; in main() typedef
31 std::vector<D::result_type> u(d.max()+1); in main() local
44 typedef std::minstd_rand G; in main() typedef
49 std::vector<D::result_type> u(d.max()+1); in main() local
62 typedef std::minstd_rand G; in main() typedef
67 std::vector<D::result_type> u(d.max()+1); in main() local
80 typedef std::minstd_rand G; in main() typedef
85 std::vector<D::result_type> u(d.max()+1); in main() local
98 typedef std::minstd_rand G; in main() typedef
103 std::vector<D::result_type> u(d.max()+1); in main() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.samp/rand.dist.samp.discrete/
H A Deval.pass.cpp32 typedef std::minstd_rand G; in tests() typedef
36 std::vector<Frequency> u(static_cast<std::size_t>(d.max()+1)); in tests() local
50 typedef std::minstd_rand G; in tests() typedef
55 std::vector<Frequency> u(static_cast<std::size_t>(d.max()+1)); in tests() local
69 typedef std::minstd_rand G; in tests() typedef
74 std::vector<Frequency> u(static_cast<std::size_t>(d.max()+1)); in tests() local
88 typedef std::minstd_rand G; in tests() typedef
93 std::vector<Frequency> u(static_cast<std::size_t>(d.max()+1)); in tests() local
107 typedef std::minstd_rand G; in tests() typedef
112 std::vector<Frequency> u(static_cast<std::size_t>(d.max()+1)); in tests() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
H A Deval.pass.cpp37 typedef std::minstd_rand0 G; in main() typedef
41 std::vector<D::result_type> u; in main() local
78 typedef std::minstd_rand G; in main() typedef
82 std::vector<D::result_type> u; in main() local
119 typedef std::mt19937 G; in main() typedef
123 std::vector<D::result_type> u; in main() local
160 typedef std::mt19937_64 G; in main() typedef
164 std::vector<D::result_type> u; in main() local
201 typedef std::ranlux24_base G; in main() typedef
205 std::vector<D::result_type> u; in main() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
H A Deval.pass.cpp37 typedef std::minstd_rand0 G; in main() typedef
41 std::vector<D::result_type> u; in main() local
77 typedef std::minstd_rand G; in main() typedef
81 std::vector<D::result_type> u; in main() local
117 typedef std::mt19937 G; in main() typedef
121 std::vector<D::result_type> u; in main() local
157 typedef std::mt19937_64 G; in main() typedef
161 std::vector<D::result_type> u; in main() local
197 typedef std::ranlux24_base G; in main() typedef
201 std::vector<D::result_type> u; in main() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.uni/rand.dist.uni.real/
H A Deval.pass.cpp38 typedef std::minstd_rand0 G; in main() typedef
42 std::vector<D::result_type> u; in main() local
78 typedef std::minstd_rand G; in main() typedef
82 std::vector<D::result_type> u; in main() local
118 typedef std::mt19937 G; in main() typedef
122 std::vector<D::result_type> u; in main() local
158 typedef std::mt19937_64 G; in main() typedef
162 std::vector<D::result_type> u; in main() local
198 typedef std::ranlux24_base G; in main() typedef
202 std::vector<D::result_type> u; in main() local
[all …]
/aosp_15_r20/external/webp/src/dsp/
H A Dyuv_sse2.c35 __m128i* const G, in ConvertYUV444ToRGB_SSE2()
86 const uint8_t* const u, in YUV444ToRGB_SSE2()
88 __m128i* const R, __m128i* const G, in YUV444ToRGB_SSE2()
97 const uint8_t* const u, in YUV420ToRGB_SSE2()
99 __m128i* const R, __m128i* const G, in YUV420ToRGB_SSE2()
108 const __m128i* const G, in PackAndStore4_SSE2()
124 const __m128i* const G, in PackAndStore4444_SSE2()
146 const __m128i* const G, in PackAndStore565_SSE2()
196 void VP8YuvToRgba32_SSE2(const uint8_t* y, const uint8_t* u, const uint8_t* v, in VP8YuvToRgba32_SSE2()
201 __m128i R, G, B; in VP8YuvToRgba32_SSE2() local
[all …]
H A Dupsampling_msa.c115 #define CALC_RGB16(y, u, v, R, G, B) do { \ argument
135 #define CALC_RGB8(y, u, v, R, G, B) do { \ argument
221 #define CALC_RGBA4444(y, u, v, out0, out1, N, dst) do { \ argument
231 #define CALC_RGB565(y, u, v, out0, out1, N, dst) do { \ argument
247 static void YuvToRgb(int y, int u, int v, uint8_t* const rgb) { in YuvToRgb()
257 static void YuvToBgr(int y, int u, int v, uint8_t* const bgr) { in YuvToBgr()
268 static void YuvToRgb565(int y, int u, int v, uint8_t* const rgb) { in YuvToRgb565()
287 static void YuvToRgba4444(int y, int u, int v, uint8_t* const argb) { in YuvToRgba4444()
306 static void YuvToArgb(uint8_t y, uint8_t u, uint8_t v, uint8_t* const argb) { in YuvToArgb()
312 static void YuvToBgra(uint8_t y, uint8_t u, uint8_t v, uint8_t* const bgra) { in YuvToBgra()
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
H A Deval.pass.cpp36 typedef std::mt19937_64 G; in test1() typedef
40 std::vector<D::result_type> u; in test1() local
79 typedef std::mt19937 G; in test2() typedef
83 std::vector<D::result_type> u; in test2() local
122 typedef std::mt19937 G; in test3() typedef
126 std::vector<D::result_type> u; in test3() local
165 typedef std::mt19937 G; in test4() typedef
169 std::vector<D::result_type> u; in test4() local
214 typedef std::mt19937 G; in test5() typedef
218 std::vector<D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.bin/
H A Deval.pass.cpp35 typedef std::mt19937_64 G; in test1() typedef
39 std::vector<typename D::result_type> u; in test1() local
77 typedef std::mt19937 G; in test2() typedef
81 std::vector<typename D::result_type> u; in test2() local
119 typedef std::mt19937 G; in test3() typedef
123 std::vector<typename D::result_type> u; in test3() local
161 typedef std::mt19937 G; in test4() typedef
165 std::vector<typename D::result_type> u; in test4() local
210 typedef std::mt19937 G; in test5() typedef
214 std::vector<typename D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.samp/rand.dist.samp.pconst/
H A Deval.pass.cpp39 typedef std::mt19937_64 G; in test1() typedef
46 std::vector<D::result_type> u; in test1() local
102 typedef std::mt19937_64 G; in test2() typedef
109 std::vector<D::result_type> u; in test2() local
165 typedef std::mt19937_64 G; in test3() typedef
172 std::vector<D::result_type> u; in test3() local
228 typedef std::mt19937_64 G; in test4() typedef
235 std::vector<D::result_type> u; in test4() local
291 typedef std::mt19937_64 G; in test5() typedef
298 std::vector<D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
H A Deval.pass.cpp38 typedef std::mt19937_64 G; in test1() typedef
45 std::vector<D::result_type> u; in test1() local
101 typedef std::mt19937_64 G; in test2() typedef
108 std::vector<D::result_type> u; in test2() local
164 typedef std::mt19937_64 G; in test3() typedef
171 std::vector<D::result_type> u; in test3() local
227 typedef std::mt19937_64 G; in test4() typedef
234 std::vector<D::result_type> u; in test4() local
290 typedef std::mt19937_64 G; in test5() typedef
297 std::vector<D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/
H A Deval.pass.cpp36 typedef std::minstd_rand G; in test1() typedef
40 std::vector<D::result_type> u; in test1() local
79 typedef std::mt19937 G; in test2() typedef
83 std::vector<D::result_type> u; in test2() local
122 typedef std::mt19937 G; in test3() typedef
126 std::vector<D::result_type> u; in test3() local
165 typedef std::mt19937 G; in test4() typedef
169 std::vector<D::result_type> u; in test4() local
206 typedef std::mt19937 G; in test5() typedef
210 std::vector<D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.negbin/
H A Deval.pass.cpp41 typedef std::minstd_rand G; in test1() typedef
45 std::vector<typename D::result_type> u; in test1() local
83 typedef std::mt19937 G; in test2() typedef
87 std::vector<typename D::result_type> u; in test2() local
125 typedef std::mt19937 G; in test3() typedef
129 std::vector<typename D::result_type> u; in test3() local
167 typedef std::mt19937 G; in test4() typedef
171 std::vector<typename D::result_type> u; in test4() local
211 typedef std::mt19937 G; in test5() typedef
215 std::vector<typename D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/
H A Deval.pass.cpp50 typedef std::mt19937 G; in test1() typedef
54 std::vector<D::result_type> u; in test1() local
93 typedef std::mt19937 G; in test2() typedef
97 std::vector<D::result_type> u; in test2() local
136 typedef std::minstd_rand G; in test3() typedef
140 std::vector<D::result_type> u; in test3() local
179 typedef std::mt19937 G; in test4() typedef
183 std::vector<D::result_type> u; in test4() local
222 typedef std::mt19937 G; in test5() typedef
226 std::vector<D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.geo/
H A Deval.pass.cpp44 typedef std::mt19937 G; in test1() typedef
48 std::vector<typename D::result_type> u; in test1() local
86 typedef std::mt19937 G; in test2() typedef
90 std::vector<typename D::result_type> u; in test2() local
128 typedef std::minstd_rand G; in test3() typedef
132 std::vector<typename D::result_type> u; in test3() local
170 typedef std::mt19937 G; in test4() typedef
174 std::vector<typename D::result_type> u; in test4() local
212 typedef std::mt19937 G; in test5() typedef
216 std::vector<typename D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
H A Deval.pass.cpp47 typedef std::mt19937_64 G; in test1() typedef
54 std::vector<D::result_type> u; in test1() local
99 typedef std::mt19937_64 G; in test2() typedef
106 std::vector<D::result_type> u; in test2() local
151 typedef std::mt19937_64 G; in test3() typedef
158 std::vector<D::result_type> u; in test3() local
203 typedef std::mt19937_64 G; in test4() typedef
210 std::vector<D::result_type> u; in test4() local
256 typedef std::mt19937_64 G; in test5() typedef
263 std::vector<D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.samp/rand.dist.samp.plinear/
H A Deval.pass.cpp46 typedef std::mt19937_64 G; in test1() typedef
53 std::vector<D::result_type> u; in test1() local
98 typedef std::mt19937_64 G; in test2() typedef
105 std::vector<D::result_type> u; in test2() local
150 typedef std::mt19937_64 G; in test3() typedef
157 std::vector<D::result_type> u; in test3() local
202 typedef std::mt19937_64 G; in test4() typedef
209 std::vector<D::result_type> u; in test4() local
255 typedef std::mt19937_64 G; in test5() typedef
262 std::vector<D::result_type> u; in test5() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.lognormal/
H A Deval.pass.cpp37 typedef std::mt19937 G; in test1() typedef
41 std::vector<D::result_type> u; in test1() local
81 typedef std::mt19937 G; in test2() typedef
85 std::vector<D::result_type> u; in test2() local
125 typedef std::mt19937 G; in test3() typedef
129 std::vector<D::result_type> u; in test3() local
169 typedef std::mt19937 G; in test4() typedef
173 std::vector<D::result_type> u; in test4() local
213 typedef std::mt19937 G; in test5() typedef
217 std::vector<D::result_type> u; in test5() local
H A Deval_param.pass.cpp38 typedef std::mt19937 G; in test1() typedef
43 std::vector<D::result_type> u; in test1() local
84 typedef std::mt19937 G; in test2() typedef
89 std::vector<D::result_type> u; in test2() local
130 typedef std::mt19937 G; in test3() typedef
135 std::vector<D::result_type> u; in test3() local
176 typedef std::mt19937 G; in test4() typedef
181 std::vector<D::result_type> u; in test4() local
222 typedef std::mt19937 G; in test5() typedef
227 std::vector<D::result_type> u; in test5() local
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
H A Deval.pass.cpp36 typedef std::mt19937 G; in test1() typedef
40 std::vector<D::result_type> u; in test1() local
80 typedef std::mt19937 G; in test2() typedef
84 std::vector<D::result_type> u; in test2() local
124 typedef std::mt19937 G; in test3() typedef
128 std::vector<D::result_type> u; in test3() local
168 typedef std::mt19937 G; in test4() typedef
172 std::vector<D::result_type> u; in test4() local
212 typedef std::mt19937 G; in test5() typedef
216 std::vector<D::result_type> u; in test5() local
H A Deval_param.pass.cpp37 typedef std::mt19937 G; in test1() typedef
42 std::vector<D::result_type> u; in test1() local
83 typedef std::mt19937 G; in test2() typedef
88 std::vector<D::result_type> u; in test2() local
129 typedef std::mt19937 G; in test3() typedef
134 std::vector<D::result_type> u; in test3() local
175 typedef std::mt19937 G; in test4() typedef
180 std::vector<D::result_type> u; in test4() local
221 typedef std::mt19937 G; in test5() typedef
226 std::vector<D::result_type> u; in test5() local
/aosp_15_r20/external/pigweed/pw_result/public/pw_result/internal/
H A Dexpected_impl.h223 constexpr explicit expected(U&& u) in expected()
235 constexpr /* implicit */ expected(U&& u) in expected()
360 constexpr T value_or(U&& u) && { in value_or()
365 constexpr T value_or(U&& u) const& { in value_or()
417 using G = remove_cvref_t<std::invoke_result_t<F, decltype(error())>>; in or_else() local
426 using G = remove_cvref_t<std::invoke_result_t<F, decltype(error())>>; in or_else() local
435 using G = remove_cvref_t<std::invoke_result_t<F, decltype(error())>>; in or_else() local
444 using G = remove_cvref_t<std::invoke_result_t<F, decltype(error())>>; in or_else() local
491 using G = std::remove_cv_t<std::invoke_result_t<F, decltype(error())>>; in transform_error() local
500 using G = std::remove_cv_t<std::invoke_result_t<F, decltype(error())>>; in transform_error() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/
H A Deval.pass.cpp36 typedef std::mt19937 G; in test1() typedef
40 std::vector<D::result_type> u; in test1() local
77 typedef std::mt19937 G; in test2() typedef
81 std::vector<D::result_type> u; in test2() local
118 typedef std::mt19937 G; in test3() typedef
122 std::vector<D::result_type> u; in test3() local
159 typedef std::mt19937 G; in test4() typedef
163 std::vector<D::result_type> u; in test4() local
H A Deval_param.pass.cpp37 typedef std::mt19937 G; in test1() typedef
42 std::vector<D::result_type> u; in test1() local
80 typedef std::mt19937 G; in test2() typedef
85 std::vector<D::result_type> u; in test2() local
123 typedef std::mt19937 G; in test3() typedef
128 std::vector<D::result_type> u; in test3() local
166 typedef std::mt19937 G; in test4() typedef
171 std::vector<D::result_type> u; in test4() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.pois/rand.dist.pois.extreme/
H A Deval.pass.cpp37 typedef std::mt19937 G; in test1() typedef
41 std::vector<D::result_type> u; in test1() local
78 typedef std::mt19937 G; in test2() typedef
82 std::vector<D::result_type> u; in test2() local
119 typedef std::mt19937 G; in test3() typedef
123 std::vector<D::result_type> u; in test3() local
160 typedef std::mt19937 G; in test4() typedef
164 std::vector<D::result_type> u; in test4() local

12345678910>>...18