Home
last modified time | relevance | path

Searched defs:desired (Results 1 – 25 of 94) sorted by relevance

1234

/third_party/boost/boost/atomic/detail/
Datomic_impl.hpp221 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
230 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
235 …BOOST_FORCEINLINE bool compare_exchange_weak(value_type& expected, value_arg_type desired, memory_… in compare_exchange_weak()
244 …BOOST_FORCEINLINE bool compare_exchange_weak(value_type& expected, value_arg_type desired, memory_… in compare_exchange_weak()
261 …CEINLINE bool compare_exchange_strong_impl(value_type& expected, value_arg_type desired, memory_or… in compare_exchange_strong_impl()
270 …CEINLINE bool compare_exchange_strong_impl(value_type& expected, value_arg_type desired, memory_or… in compare_exchange_strong_impl()
278 …BOOST_FORCEINLINE bool compare_exchange_weak_impl(value_type& expected, value_arg_type desired, me… in compare_exchange_weak_impl()
287 …BOOST_FORCEINLINE bool compare_exchange_weak_impl(value_type& expected, value_arg_type desired, me… in compare_exchange_weak_impl()
356 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
365 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
[all …]
Datomic_ref_impl.hpp187 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
196 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
201 …BOOST_FORCEINLINE bool compare_exchange_weak(value_type& expected, value_arg_type desired, memory_… in compare_exchange_weak()
210 …BOOST_FORCEINLINE bool compare_exchange_weak(value_type& expected, value_arg_type desired, memory_… in compare_exchange_weak()
226 …CEINLINE bool compare_exchange_strong_impl(value_type& expected, value_arg_type desired, memory_or… in compare_exchange_strong_impl()
235 …CEINLINE bool compare_exchange_strong_impl(value_type& expected, value_arg_type desired, memory_or… in compare_exchange_strong_impl()
243 …BOOST_FORCEINLINE bool compare_exchange_weak_impl(value_type& expected, value_arg_type desired, me… in compare_exchange_weak_impl()
252 …BOOST_FORCEINLINE bool compare_exchange_weak_impl(value_type& expected, value_arg_type desired, me… in compare_exchange_weak_impl()
323 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
332 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
[all …]
Datomic_template.hpp229 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
238 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
243 …BOOST_FORCEINLINE bool compare_exchange_weak(value_type& expected, value_arg_type desired, memory_… in compare_exchange_weak()
252 …BOOST_FORCEINLINE bool compare_exchange_weak(value_type& expected, value_arg_type desired, memory_… in compare_exchange_weak()
261 …CEINLINE bool compare_exchange_strong_impl(value_type& expected, value_arg_type desired, memory_or… in compare_exchange_strong_impl()
270 …CEINLINE bool compare_exchange_strong_impl(value_type& expected, value_arg_type desired, memory_or… in compare_exchange_strong_impl()
278 …BOOST_FORCEINLINE bool compare_exchange_weak_impl(value_type& expected, value_arg_type desired, me… in compare_exchange_weak_impl()
287 …BOOST_FORCEINLINE bool compare_exchange_weak_impl(value_type& expected, value_arg_type desired, me… in compare_exchange_weak_impl()
356 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
365 …BOOST_FORCEINLINE bool compare_exchange_strong(value_type& expected, value_arg_type desired, memor… in compare_exchange_strong()
[all …]
/third_party/grpc/src/core/lib/gprpp/
Datomic.h52 T Exchange(T desired, MemoryOrder order) { in Exchange()
56 bool CompareExchangeWeak(T* expected, T desired, MemoryOrder success, in CompareExchangeWeak()
63 bool CompareExchangeStrong(T* expected, T desired, MemoryOrder success, in CompareExchangeStrong()
/third_party/ffmpeg/compat/atomics/pthread/
Dstdatomic.h91 static inline void atomic_store(intptr_t *object, intptr_t desired) in atomic_store()
98 #define atomic_store_explicit(object, desired, order) \ argument
113 static inline intptr_t atomic_exchange(intptr_t *object, intptr_t desired) in atomic_exchange()
123 #define atomic_exchange_explicit(object, desired, order) \ argument
127 intptr_t desired) in atomic_compare_exchange_strong()
142 #define atomic_compare_exchange_strong_explicit(object, expected, desired, success, failure) \ argument
145 #define atomic_compare_exchange_weak(object, expected, desired) \ argument
148 #define atomic_compare_exchange_weak_explicit(object, expected, desired, success, failure) \ argument
/third_party/ffmpeg/compat/atomics/dummy/
Dstdatomic.h85 #define atomic_store(object, desired) \ argument
90 #define atomic_store_explicit(object, desired, order) \ argument
99 static inline intptr_t atomic_exchange(intptr_t *object, intptr_t desired) in atomic_exchange()
106 #define atomic_exchange_explicit(object, desired, order) \ argument
110 intptr_t desired) in atomic_compare_exchange_strong()
123 #define atomic_compare_exchange_strong_explicit(object, expected, desired, success, failure) \ argument
126 #define atomic_compare_exchange_weak(object, expected, desired) \ argument
129 #define atomic_compare_exchange_weak_explicit(object, expected, desired, success, failure) \ argument
/third_party/boost/libs/fiber/examples/
Dadapt_nonblocking.cpp64 int NonblockingAPI::read( std::string & data, std::size_t desired) { in read()
104 int read_chunk( NonblockingAPI & api, std::string & data, std::size_t desired) { in read_chunk()
118 int read_desired( NonblockingAPI & api, std::string & data, std::size_t desired) { in read_desired()
157 std::string read( NonblockingAPI & api, std::size_t desired) { in read()
/third_party/ffmpeg/compat/atomics/gcc/
Dstdatomic.h86 #define atomic_store(object, desired) \ argument
92 #define atomic_store_explicit(object, desired, order) \ argument
101 #define atomic_exchange(object, desired) \ argument
111 #define atomic_exchange_explicit(object, desired, order) \ argument
114 #define atomic_compare_exchange_strong(object, expected, desired) \ argument
122 #define atomic_compare_exchange_strong_explicit(object, expected, desired, success, failure) \ argument
125 #define atomic_compare_exchange_weak(object, expected, desired) \ argument
128 #define atomic_compare_exchange_weak_explicit(object, expected, desired, success, failure) \ argument
/third_party/ffmpeg/compat/atomics/suncc/
Dstdatomic.h83 static inline void atomic_store(intptr_t *object, intptr_t desired) in atomic_store()
89 #define atomic_store_explicit(object, desired, order) \ argument
101 #define atomic_exchange(object, desired) \ argument
104 #define atomic_exchange_explicit(object, desired, order) \ argument
108 intptr_t desired) in atomic_compare_exchange_strong()
115 #define atomic_compare_exchange_strong_explicit(object, expected, desired, success, failure) \ argument
118 #define atomic_compare_exchange_weak(object, expected, desired) \ argument
121 #define atomic_compare_exchange_weak_explicit(object, expected, desired, success, failure) \ argument
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DLocaleDistanceMapper.java231 private final LsrSpec desired; field in LocaleDistanceMapper.LanguageMatchRule
236 public LanguageMatchRule(LsrSpec desired, LsrSpec supported, int distance, boolean oneway) { in LanguageMatchRule()
245 "mismatched rule specifications in: %s, %s", desired, supported); in LanguageMatchRule() local
247 "wildcard mismatch for languages in: %s, %s", desired, supported); in LanguageMatchRule() local
249 "wildcard mismatch for scripts in: %s, %s", desired, supported); in LanguageMatchRule() local
251 "wildcard mismatch for languages in: %s, %s", desired, supported); in LanguageMatchRule() local
/third_party/ffmpeg/compat/atomics/win32/
Dstdatomic.h83 #define atomic_store(object, desired) \ argument
89 #define atomic_store_explicit(object, desired, order) \ argument
98 #define atomic_exchange(object, desired) \ argument
101 #define atomic_exchange_explicit(object, desired, order) \ argument
105 intptr_t desired) in atomic_compare_exchange_strong()
113 #define atomic_compare_exchange_strong_explicit(object, expected, desired, success, failure) \ argument
116 #define atomic_compare_exchange_weak(object, expected, desired) \ argument
119 #define atomic_compare_exchange_weak_explicit(object, expected, desired, success, failure) \ argument
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DLocaleMatcherTest.java157 Locale desired = new Locale("en", "US"); // distinct object from Locale.US in testBasics() local
337 ULocale desired = new ULocale("ar-SA-u-nu-latn"); in testResolvedLocale() local
491 private void showDistance(LocaleMatcher matcher, String desired, String supported) { in showDistance()
632 LocalePriorityList desired = LocalePriorityList.add("fr-CH, de-CH, it").build(); in testDemotion() local
646 List<ULocale> desired = Arrays.asList(new ULocale("arz-EG"), new ULocale("nb-DK")); in testDirection() local
668 ULocale desired; field in LocaleMatcherTest.PerfCase
776 final ULocale desired = pc.desired; in testPerf() local
796 private static long timeLocaleMatcher(ULocale desired, LocaleMatcher matcher, int iterations) { in timeLocaleMatcher()
859 String desired = ""; field in LocaleMatcherTest.TestCase
1049 LocalePriorityList desired = LocalePriorityList.add(test.desired).build(); in dataDriven() local
[all …]
DLocaleDistanceTest.java41 final ULocale desired; field in LocaleDistanceTest.Arguments
85 final ULocale desired = test.desired; in testTiming() local
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/locale/
DLocaleDistanceBuilder.java111 final List<String> desired; field in LocaleDistanceBuilder.Rule
116 Rule(List<String> desired, List<String> supported, int distance, boolean oneway) { in Rule()
202 private int getDistance(String desired, String supported, in getDistance()
242 DistanceTable addSubtable(String desired, String supported, int distance) { in addSubtable()
260 private DistanceTable getNode(String desired, String supported) { in getNode()
272 String desired, String supported, in addSubtables()
409 String desired = desSuppNode.getKey(); in toTrie() local
526 List<String> desired = new ArrayList<>(bar.splitToList(tuple[0])); in build() local
566 List<String> desired = rule.desired; in build() local
615 private static int checkStars(String desired, String supported, boolean allStars) { in checkStars()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleMatcherTest.java154 Locale desired = new Locale("en", "US"); // distinct object from Locale.US in testBasics() local
358 ULocale desired = new ULocale("ar-SA-u-nu-latn"); in testResolvedLocale() local
510 private void showDistance(LocaleMatcher matcher, String desired, String supported) { in showDistance()
651 LocalePriorityList desired = LocalePriorityList.add("fr-CH, de-CH, it").build(); in testDemotion() local
665 List<ULocale> desired = Arrays.asList(new ULocale("arz-EG"), new ULocale("nb-DK")); in testDirection() local
710 ULocale desired; field in LocaleMatcherTest.PerfCase
818 final ULocale desired = pc.desired; in testPerf() local
838 private static long timeLocaleMatcher(ULocale desired, LocaleMatcher matcher, int iterations) { in timeLocaleMatcher()
901 String desired = ""; field in LocaleMatcherTest.TestCase
1091 LocalePriorityList desired = LocalePriorityList.add(test.desired).build(); in dataDriven() local
[all …]
DLocaleDistanceTest.java38 final ULocale desired; field in LocaleDistanceTest.Arguments
82 final ULocale desired = test.desired; in testTiming() local
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/tool/locale/
DLocaleDistanceBuilder.java111 final List<String> desired; field in LocaleDistanceBuilder.Rule
116 Rule(List<String> desired, List<String> supported, int distance, boolean oneway) { in Rule()
202 private int getDistance(String desired, String supported, in getDistance()
242 DistanceTable addSubtable(String desired, String supported, int distance) { in addSubtable()
260 private DistanceTable getNode(String desired, String supported) { in getNode()
272 String desired, String supported, in addSubtables()
409 String desired = desSuppNode.getKey(); in toTrie() local
526 List<String> desired = new ArrayList<>(bar.splitToList(tuple[0])); in build() local
566 List<String> desired = rule.desired; in build() local
615 private static int checkStars(String desired, String supported, boolean allStars) { in checkStars()
[all …]
/third_party/node/deps/histogram/src/
Dhdr_atomic.h77 …_inline hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int64_t desired) in hdr_atomic_compare_exchange_64()
90 #define hdr_atomic_compare_exchange_64(field, expected, desired) __atomic_compare_exchange_n(field,… argument
133 …ne bool hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int64_t desired) in hdr_atomic_compare_exchange_64()
/third_party/icu/icu4c/source/test/intltest/
Dlocalematchertest.cpp35 CharString desired; member
230 Locale desired("en_GB"); // distinct object from Locale.UK in testBasics() local
335 Locale desired[] = { "fr-CH", "de-CH", "it" }; in testDemotion() local
358 Locale desired[] = { "arz-EG", "nb-DK" }; in testDirection() local
449 Locale desired("ar-SA-u-nu-latn"); in testResolvedLocale() local
600 LocalePriorityList desired(test.desired.toStringPiece(), errorCode); in dataDriven() local
617 LocalePriorityList desired(test.desired.toStringPiece(), errorCode); in dataDriven() local
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_audio.c144 SDL_AudioSpec desired; in audio_initOpenCloseQuitAudio() local
233 SDL_AudioSpec desired; in audio_pauseUnpauseAudio() local
702 SDL_AudioSpec desired, obtained; in audio_openCloseAndGetAudioStatus() local
760 SDL_AudioSpec desired, obtained; in audio_lockUnlockOpenAudioDevice() local
922 SDL_AudioSpec desired, obtained; in audio_openCloseAudioDeviceConnected() local
/third_party/icu/icu4c/source/common/
Dlocdistance.cpp110 const LSR &desired, in getBestIndexAndDistance()
259 BytesTrie &iter, uint64_t startState, const char *desired, const char *supported) { in getDesSuppScriptDistance()
284 char desired = *desiredPartitions++; in getRegionPartitionsDistance() local
/third_party/node/deps/icu-small/source/common/
Dlocdistance.cpp110 const LSR &desired, in getBestIndexAndDistance()
259 BytesTrie &iter, uint64_t startState, const char *desired, const char *supported) { in getDesSuppScriptDistance()
284 char desired = *desiredPartitions++; in getRegionPartitionsDistance() local
/third_party/skia/third_party/externals/icu/source/common/
Dlocdistance.cpp110 const LSR &desired, in getBestIndexAndDistance()
259 BytesTrie &iter, uint64_t startState, const char *desired, const char *supported) { in getDesSuppScriptDistance()
284 char desired = *desiredPartitions++; in getRegionPartitionsDistance() local
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DLocaleMatcher.java199 Locale desired, Locale supported, in Result()
553 public Builder setMaxDistance(Locale desired, Locale supported) { in setMaxDistance()
581 public Builder setMaxDistance(ULocale desired, ULocale supported) { in setMaxDistance()
1099 public boolean isMatch(Locale desired, Locale supported) { in isMatch()
1117 public boolean isMatch(ULocale desired, ULocale supported) { in isMatch()
1143 …public double match(ULocale desired, ULocale desiredMax, ULocale supported, ULocale supportedMax) { in match()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DLocaleDistance.java228 public int testOnlyDistance(ULocale desired, ULocale supported, in testOnlyDistance()
245 public int getBestIndexAndDistance(LSR desired, LSR[] supportedLSRs, int supportedLSRsLength, in getBestIndexAndDistance()
391 private boolean isMatch(LSR desired, LSR supported, in isMatch()
399 String desired, String supported) { in getDesSuppScriptDistance()

1234