Home
last modified time | relevance | path

Searched refs:arg_copy (Results 1 – 25 of 122) sorted by relevance

12345

/dports/math/stanmath/math-4.2.0/stan/math/opencl/kernel_generator/
H A Drowwise_reduction.hpp315 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
317 std::move(arg_copy)); in deep_copy()
332 std::move(arg_copy)); in rowwise_sum()
369 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
371 std::move(arg_copy)); in deep_copy()
386 std::move(arg_copy)); in rowwise_prod()
437 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
439 std::move(arg_copy)); in deep_copy()
454 std::move(arg_copy)); in rowwise_max()
506 std::move(arg_copy)); in deep_copy()
[all …]
H A Dreduction_2d.hpp213 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
214 return sum_2d_<std::remove_reference_t<decltype(arg_copy)>>( in deep_copy()
215 std::move(arg_copy)); in deep_copy()
256 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
258 std::move(arg_copy)); in deep_copy()
303 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
304 return max_2d_<std::remove_reference_t<decltype(arg_copy)>>( in deep_copy()
305 std::move(arg_copy)); in deep_copy()
350 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
351 return min_2d_<std::remove_reference_t<decltype(arg_copy)>>( in deep_copy()
[all …]
H A Dcolwise_reduction.hpp204 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
206 std::move(arg_copy)); in deep_copy()
225 auto&& arg_copy = as_operation_cl(std::forward<T>(a)).deep_copy(); in colwise_sum()
248 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
250 std::move(arg_copy)); in deep_copy()
269 auto&& arg_copy = as_operation_cl(std::forward<T>(a)).deep_copy(); in colwise_prod()
297 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
299 std::move(arg_copy)); in deep_copy()
318 auto&& arg_copy = as_operation_cl(std::forward<T>(a)).deep_copy(); in colwise_max()
346 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
[all …]
H A Dunary_operation_cl.hpp88 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
89 return logical_negation_<std::remove_reference_t<decltype(arg_copy)>>{ in deep_copy()
90 std::move(arg_copy)}; in deep_copy()
139 auto&& arg_copy = this->template get_arg<0>().deep_copy(); in deep_copy()
140 return unary_minus_<std::remove_reference_t<decltype(arg_copy)>>{ in deep_copy()
141 std::move(arg_copy)}; in deep_copy()
H A Delt_function_cl.hpp166 auto&& arg_copy = this->template get_arg<0>().deep_copy(); \
167 return fun##_<std::remove_reference_t<decltype(arg_copy)>>{ \
168 std::move(arg_copy)}; \
209 auto&& arg_copy = this->template get_arg<0>().deep_copy(); \
210 return fun##_<std::remove_reference_t<decltype(arg_copy)>>{ \
211 std::move(arg_copy)}; \
242 auto&& arg_copy = this->template get_arg<0>().deep_copy(); \
243 return fun##_<std::remove_reference_t<decltype(arg_copy)>>{ \
244 std::move(arg_copy)}; \
/dports/archivers/zoo/zoo-2.10.1_4/
H A Dneeded.c45 char arg_copy[PATHSIZE]; /* working copy of an argument */ local
74 strcpy(arg_copy,arg);
76 p = findlast(arg_copy, PATH_CH);
80 p = findlast (arg_copy, VER_INPUT);
92 if (!match_half(path_copy, arg_copy)) {
95 path_copy, arg_copy);
112 strcpy (arg_copy, arg); /* local copy of argument */
114 p = findlast(arg_copy, VER_INPUT); /* p is version in argument */
134 if (p == arg_copy) { /* 1st char is version char */
174 if (match_half (justname, nameptr(arg_copy)))
[all …]
/dports/graphics/fpc-pasjpeg/fpc-3.2.2/packages/pasjpeg/examples/
H A Drdswitch.pas428 arg_copy : string;
431 arg_copy := argtxt + #0;
432 if arg_copy[Length(arg_copy)] <> #0 then
433 arg_copy[Length(arg_copy)] := #0;
434 arg := @arg_copy[1];
481 arg_copy : string;
484 arg_copy := argtxt + #0;
485 if arg_copy[Length(arg_copy)] <> #0 then
486 arg_copy[Length(arg_copy)] := #0;
487 arg := @arg_copy[1];
/dports/lang/fpc-source/fpc-3.2.2/packages/pasjpeg/examples/
H A Drdswitch.pas428 arg_copy : string;
431 arg_copy := argtxt + #0;
432 if arg_copy[Length(arg_copy)] <> #0 then
433 arg_copy[Length(arg_copy)] := #0;
434 arg := @arg_copy[1];
481 arg_copy : string;
484 arg_copy := argtxt + #0;
485 if arg_copy[Length(arg_copy)] <> #0 then
486 arg_copy[Length(arg_copy)] := #0;
487 arg := @arg_copy[1];
/dports/devel/py-ujson/ujson-5.0.0/deps/double-conversion/test/cctest/
H A Dcctest.cc85 char* arg_copy = strdup(arg); in main() local
86 char* testname = strchr(arg_copy, '/'); in main()
91 char* file = arg_copy; in main()
106 char* file_or_name = arg_copy; in main()
118 delete[] arg_copy; in main()
/dports/devel/double-conversion/double-conversion-3.1.6/test/cctest/
H A Dcctest.cc85 char* arg_copy = strdup(arg); in main() local
86 char* testname = strchr(arg_copy, '/'); in main()
91 char* file = arg_copy; in main()
106 char* file_or_name = arg_copy; in main()
118 free(arg_copy); in main()
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/www/firefox/firefox-99.0/third_party/rust/glslopt/glsl-optimizer/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/lang/clover/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/glslopt/glsl-optimizer/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/libosmesa/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-libs/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/glslopt/glsl-optimizer/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/glslopt/glsl-optimizer/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()
/dports/graphics/mesa-dri/mesa-21.3.6/src/util/
H A Dstring_buffer.c113 va_list arg_copy; in _mesa_string_buffer_vprintf() local
114 va_copy(arg_copy, args); in _mesa_string_buffer_vprintf()
118 space_left, format, arg_copy); in _mesa_string_buffer_vprintf()
119 va_end(arg_copy); in _mesa_string_buffer_vprintf()

12345