Home
last modified time | relevance | path

Searched refs:Do (Results 1 - 25 of 84) sorted by relevance

1234

/third_party/gn/src/base/numerics/
H A Dsafe_math_clang_gcc_impl.h26 static constexpr bool Do(T, U, V*) { in Do() function
36 static constexpr V Do(T, U) { in Do() function
46 static constexpr V Do(T, U) { in Do() function
56 static constexpr V Do(T, U) { in Do() function
68 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V* result) { in Do() function
77 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V* result) { in Do() function
98 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V* result) { in Do() function
100 ? CheckedMulFastAsmOp<T, U>::Do(x, y, result) in Do()
109 __attribute__((always_inline)) static V Do(T x, U y) { in Do() function
110 return ClampedAddFastAsmOp<T, U>::template Do< in Do()
118 __attribute__((always_inline)) static V Do(T x, U y) { Do() function
127 __attribute__((always_inline)) static V Do(T x, U y) { Do() function
135 __attribute__((always_inline)) static T Do(T value) { Do() function
[all...]
H A Dclamped_math_impl.h32 : ClampedNegFastOp<T>::Do(value); in SaturatedNegWrapper()
81 static constexpr V Do(T x, U y) { in Do() function
83 return ClampedAddFastOp<T, U>::template Do<V>(x, y); in Do()
91 return BASE_NUMERICS_LIKELY((CheckedAddOp<T, U>::Do(x, y, &result))) in Do()
107 static constexpr V Do(T x, U y) { in Do() function
110 return ClampedSubFastOp<T, U>::template Do<V>(x, y); in Do()
118 return BASE_NUMERICS_LIKELY((CheckedSubOp<T, U>::Do(x, y, &result))) in Do()
134 static constexpr V Do(T x, U y) { in Do() function
137 return ClampedMulFastOp<T, U>::template Do<V>(x, y); in Do()
142 return BASE_NUMERICS_LIKELY((CheckedMulOp<T, U>::Do( in Do()
158 static constexpr V Do(T x, U y) { Do() function
178 static constexpr V Do(T x, U y) { Do() function
198 static constexpr V Do(T x, U shift) { Do() function
222 static constexpr V Do(T x, U shift) { Do() function
243 static constexpr V Do(T x, U y) { Do() function
260 static constexpr V Do(T x, U y) { Do() function
277 static constexpr V Do(T x, U y) { Do() function
293 static constexpr V Do(T x, U y) { Do() function
310 static constexpr V Do(T x, U y) { Do() function
[all...]
H A Dchecked_math_impl.h51 static constexpr bool Do(T x, U y, V* result) { in Do() function
54 return CheckedAddFastOp<T, U>::Do(x, y, result); in Do()
111 static constexpr bool Do(T x, U y, V* result) { in Do() function
114 return CheckedSubFastOp<T, U>::Do(x, y, result); in Do()
173 static constexpr bool Do(T x, U y, V* result) {
176 return CheckedMulFastOp<T, U>::Do(x, y, result);
190 is_valid = CheckedMulFastOp<Promotion, Promotion>::Do(x, y, &presult);
214 static constexpr bool Do(T x, U y, V* result) {
253 static constexpr bool Do(T x, U y, V* result) {
277 static constexpr bool Do(
[all...]
H A Dsafe_math_shared_impl.h41 static constexpr bool Do(T, U, V*) { in Do() function
51 static constexpr bool Do(T, U, V*) { in Do() function
61 static constexpr bool Do(T, U, V*) { in Do() function
71 static constexpr V Do(T, U) { in Do() function
81 static constexpr V Do(T, U) { in Do() function
91 static constexpr V Do(T, U) { in Do() function
100 static constexpr T Do(T) { in Do() function
H A Dsafe_conversions.h25 static constexpr Dst Do(Src) { in Do() function
38 static constexpr bool Do(Src value) { in Do() function
55 static constexpr bool Do(Src value) { in Do() function
73 static constexpr bool Do(Src value) { in Do() function
86 ? internal::IsValueInRangeFastOp<Dst, SrcType>::Do( in IsValueInRangeForNumericType()
151 static constexpr Dst Do(Src value) { in Do() function
164 static Dst Do(Src value) { in Do() function
166 return SaturateFastAsmOp<Dst, Src>::Do(value); in Do()
169 // optimization heuristics across compilers. Do not change without in Do()
193 ? SaturateFastOp<Dst, SrcType>::Do(static_cas in saturated_cast()
[all...]
H A Dclamped_math.h101 ClampedMaxOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Max()
109 ClampedMinOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Min()
151 Math::template Do<T>(Wrapper<L>::value(lhs), Wrapper<R>::value(rhs))); in MathOp()
159 ClampedNumeric<T>(Math::template Do<T>(value_, Wrapper<R>::value(rhs))); in MathOp()
H A Dchecked_math.h113 // in the the tests. Do not implement it in production code, because the
235 Math::Do(Wrapper<L>::value(lhs), Wrapper<R>::value(rhs), &result); in MathOp()
245 Math::Do(state_.value(), Wrapper<R>::value(rhs), &result); in MathOp()
255 bool success = CheckedSubOp<T, T>::Do(T(0), state_.value(), &result); in FastRuntimeNegate()
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dsafe_math_clang_gcc_impl.h36 static constexpr bool Do(T, U, V *) in Do() function
48 static constexpr V Do(T, U) in Do() function
60 static constexpr V Do(T, U) in Do() function
72 static constexpr V Do(T, U) in Do() function
86 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V *result) in Do() function
97 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V *result) in Do() function
119 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V *result) in Do() function
121 return CheckedMulFastAsmOp<T, U>::is_supported ? CheckedMulFastAsmOp<T, U>::Do(x, y, result) in Do()
131 __attribute__((always_inline)) static V Do(T x, U y) in Do() function
133 return ClampedAddFastAsmOp<T, U>::template Do< in Do()
142 __attribute__((always_inline)) static V Do(T x, U y) Do() function
153 __attribute__((always_inline)) static V Do(T x, U y) Do() function
163 __attribute__((always_inline)) static T Do(T value) Do() function
[all...]
H A Dclamped_math_impl.h37 : ClampedNegFastOp<T>::Do(value); in SaturatedNegWrapper()
86 static constexpr V Do(T x, U y) in Do() function
89 return ClampedAddFastOp<T, U>::template Do<V>(x, y); in Do()
97 return BASE_NUMERICS_LIKELY((CheckedAddOp<T, U>::Do(x, y, &result))) ? result : saturated; in Do()
113 static constexpr V Do(T x, U y) in Do() function
117 return ClampedSubFastOp<T, U>::template Do<V>(x, y); in Do()
125 return BASE_NUMERICS_LIKELY((CheckedSubOp<T, U>::Do(x, y, &result))) ? result : saturated; in Do()
141 static constexpr V Do(T x, U y) in Do() function
145 return ClampedMulFastOp<T, U>::template Do<V>(x, y); in Do()
149 return BASE_NUMERICS_LIKELY((CheckedMulOp<T, U>::Do( in Do()
165 static constexpr V Do(T x, U y) Do() function
188 static constexpr V Do(T x, U y) Do() function
209 static constexpr V Do(T x, U shift) Do() function
237 static constexpr V Do(T x, U shift) Do() function
261 static constexpr V Do(T x, U y) Do() function
281 static constexpr V Do(T x, U y) Do() function
301 static constexpr V Do(T x, U y) Do() function
319 static constexpr V Do(T x, U y) Do() function
337 static constexpr V Do(T x, U y) Do() function
[all...]
H A Dsafe_math_shared_impl.h49 static constexpr bool Do(T, U, V *) in Do() function
61 static constexpr bool Do(T, U, V *) in Do() function
73 static constexpr bool Do(T, U, V *) in Do() function
85 static constexpr V Do(T, U) in Do() function
97 static constexpr V Do(T, U) in Do() function
109 static constexpr V Do(T, U) in Do() function
120 static constexpr T Do(T) in Do() function
H A Dsafe_math_arm_impl.h37 __attribute__((always_inline)) static bool Do(T x, U y, V *result) in Do() function
58 __attribute__((always_inline)) static V Do(T x, U y) in Do() function
84 __attribute__((always_inline)) static V Do(T x, U y) in Do() function
108 __attribute__((always_inline)) static V Do(T x, U y) in Do() function
116 return CheckedMulFastAsmOp<T, U>::Do(x, y, &result) in Do()
H A Dchecked_math_impl.h59 static constexpr bool Do(T x, U y, V *result) in Do() function
63 return CheckedAddFastOp<T, U>::Do(x, y, result); in Do()
128 static constexpr bool Do(T x, U y, V *result) in Do() function
132 return CheckedSubFastOp<T, U>::Do(x, y, result); in Do()
200 static constexpr bool Do(T x, U y, V *result) in Do() function
204 return CheckedMulFastOp<T, U>::Do(x, y, result); in Do()
220 is_valid = CheckedMulFastOp<Promotion, Promotion>::Do(x, y, &presult); in Do()
252 static constexpr bool Do(T x, U y, V *result) in Do() function
297 static constexpr bool Do(T x, U y, V *result) in Do() function
336 static constexpr bool Do( function
372 static bool Do(T x, U shift, V *result) Do() function
402 static constexpr bool Do(T x, U y, V *result) Do() function
426 static constexpr bool Do(T x, U y, V *result) Do() function
450 static constexpr bool Do(T x, U y, V *result) Do() function
474 static constexpr bool Do(T x, U y, V *result) Do() function
499 static constexpr bool Do(T x, U y, V *result) Do() function
[all...]
H A Dsafe_conversions.h39 static constexpr Dst Do(Src) in Do() function
54 static constexpr bool Do(Src value) in Do() function
72 static constexpr bool Do(Src value) in Do() function
91 static constexpr bool Do(Src value) in Do() function
106 ? internal::IsValueInRangeFastOp<Dst, SrcType>::Do(static_cast<SrcType>(value)) in IsValueInRangeForNumericType()
168 static constexpr Dst Do(Src value) in Do() function
183 static constexpr Dst Do(Src value) { return SaturateFastAsmOp<Dst, Src>::Do(value); } in Do() function
194 static constexpr Dst Do(Src value) in Do() function
197 // optimization heuristics across compilers. Do no in Do()
[all...]
H A Dclamped_math.h109 return ClampedNumeric<result_type>(ClampedMaxOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Max()
116 return ClampedNumeric<result_type>(ClampedMinOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Min()
160 Math::template Do<T>(Wrapper<L>::value(lhs), Wrapper<R>::value(rhs))); in MathOp()
168 *this = ClampedNumeric<T>(Math::template Do<T>(value_, Wrapper<R>::value(rhs))); in MathOp()
H A Dsafe_conversions_arm_impl.h32 __attribute__((always_inline)) static Dst Do(Src value) in Do() function
/third_party/node/deps/v8/src/base/
H A Dsafe_conversions.h43 static constexpr Dst Do(Src) { in Do() function
56 static constexpr bool Do(Src value) { in Do() function
72 static constexpr bool Do(Src value) { in Do() function
89 static constexpr bool Do(Src value) { in Do() function
102 ? internal::IsValueInRangeFastOp<Dst, SrcType>::Do( in IsValueInRangeForNumericType()
166 static constexpr Dst Do(Src value) { in Do() function
179 static constexpr Dst Do(Src value) { in Do() function
180 return SaturateFastAsmOp<Dst, Src>::Do(value); in Do()
191 static constexpr Dst Do(Src value) { in Do() function
193 // optimization heuristics across compilers. Do no in Do()
[all...]
H A Dsafe_conversions_arm_impl.h35 __attribute__((always_inline)) static Dst Do(Src value) { in Do() function
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/
H A Dhash_testing.h307 static Out Do(const Container& values) { in Do() function
324 static Out Do(const std::tuple<T...>& values) { in Do() function
331 static std::vector<VariantForTypes<int>> Do(std::tuple<>) { return {}; } in Do() function
347 hash_internal::ContainerAsVector<Container>::Do(values), in VerifyTypeImplementsAbslHashCorrectly()
355 hash_internal::ContainerAsVector<Container>::Do(values), equals); in VerifyTypeImplementsAbslHashCorrectly()
362 hash_internal::ContainerAsVector<std::initializer_list<T>>::Do(values), in VerifyTypeImplementsAbslHashCorrectly()
371 hash_internal::ContainerAsVector<std::initializer_list<T>>::Do(values), in VerifyTypeImplementsAbslHashCorrectly()
/third_party/node/deps/v8/src/runtime/
H A Druntime-atomics.cc285 static inline Object Do(Isolate* isolate, void* buffer, size_t index) { in Do() function
293 static inline void Do(Isolate* isolate, void* buffer, size_t index, in Do() function
302 static inline Object Do(Isolate* isolate, void* buffer, size_t index, in Do() function
322 static inline Object Do(Isolate* isolate, void* buffer, size_t index, in Do() function
332 static inline Object Do(Isolate* isolate, void* buffer, size_t index, in Do() function
342 static inline Object Do(Isolate* isolate, void* buffer, size_t index, in Do() function
352 static inline Object Do(Isolate* isolate, void* buffer, size_t index, in Do() function
362 static inline Object Do(Isolate* isolate, void* buffer, size_t index, in Do() function
416 return Op<int64_t>::Do(isolate, source, index, bigint); in GetModifySetValueInBuffer()
419 return Op<uint64_t>::Do(isolat in GetModifySetValueInBuffer()
[all...]
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/export_to_sheets/
H A Dmain.go81 spreadsheet, err := srv.Spreadsheets.Get(*spreadsheetID).Do()
177 if _, err := srv.Spreadsheets.Values.BatchUpdate(*spreadsheetID, &req).Do(); err != nil {
252 data, err := srv.Spreadsheets.Values.Get(spreadsheet.SpreadsheetId, rng).Do()
262 data, err := srv.Spreadsheets.Values.Get(spreadsheet.SpreadsheetId, rng).Do()
289 if _, err := srv.Spreadsheets.BatchUpdate(*spreadsheetID, &req).Do(); err != nil {
298 spreadsheet, err := srv.Spreadsheets.Get(*spreadsheetID).Do()
330 if _, err := srv.Spreadsheets.BatchUpdate(*spreadsheetID, &spreadsheetReq).Do(); err != nil {
335 if _, err := srv.Spreadsheets.Values.BatchUpdate(*spreadsheetID, &updateReq).Do(); err != nil {
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/
H A Dperf_puppeteer_skottie_frames.go165 err := td.Do(ctx, td.Props("locate lottie folders"), func(ctx context.Context) error {
194 err = td.Do(ctx, td.Props("Benchmark "+name), func(ctx context.Context) error {
246 err := td.Do(ctx, td.Props("locate input JSON files"), func(ctx context.Context) error {
262 err = td.Do(ctx, td.Props("Process "+lottie), func(ctx context.Context) error {
289 err = td.Do(ctx, td.Props("Writing perf JSON file to "+outputFilePath), func(ctx context.Context) error {
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/
H A Dperf_puppeteer_render_skps.go167 err := td.Do(ctx, td.Props("locate skpfiles"), func(ctx context.Context) error {
194 err = td.Do(ctx, td.Props(fmt.Sprintf("Benchmark %s", name)), func(ctx context.Context) error {
245 err := td.Do(ctx, td.Props("locate input JSON files"), func(ctx context.Context) error {
261 err = td.Do(ctx, td.Props("Process "+skp), func(ctx context.Context) error {
290 err = td.Do(ctx, td.Props("Writing perf JSON file to "+outputFilePath), func(ctx context.Context) error {
/third_party/python/Tools/msi/
H A Dbuildrelease.bat15 rem Do not change the scheme to https. Otherwise, releases built with this
236 echo --skip-build (-B) Do not build Python (just do the installers)
237 echo --skip-doc (-D) Do not build documentation
240 echo --skip-msi Do not build executable/MSI packages
241 echo --skip-nuget Do not build Nuget packages
242 echo --skip-zip Do not build embeddable package
/third_party/skia/infra/bots/task_drivers/recreate_skps/
H A Drecreate_skps.go31 return td.Do(ctx, td.Props("bot_update").Infra(), func(ctx context.Context) error {
192 if err := td.Do(ctx, td.Props("Check out depot_tools"), func(ctx context.Context) error {
213 if err := td.Do(ctx, td.Props("Build Chrome"), func(ctx context.Context) error {
/third_party/ffmpeg/libavcodec/arm/
H A Dvp9itxfm_neon.S44 @ Do four 4x4 transposes, using q registers for the subtransposes that don't
804 @ Do four 4x4 transposes. Originally, d16-d31 contain the
988 @ Do four 4x4 transposes. Originally, d16-d31 contain the
1048 @ Do four 4x4 transposes. Originally, d16-d31 contain the
1313 @ Do an 32-point IDCT of a 4x32 slice out of a 32x32 matrix.
1362 @ Do four 4x4 transposes. Originally, d16-d31 contain the

Completed in 14 milliseconds

1234