Searched refs:existingValue (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Launcher/mac/
H A DEnvironmentVariables.cpp81 const char* existingValue = get(name); local
82 if (!existingValue) {
88 newValue.append(existingValue, strlen(existingValue));
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebPreferencesStore.cpp179 typename MapType::MappedType existingValue = valueForKey(map, key); local
180 if (existingValue == value)
/macosx-10.9.5/libauto-185.5/
H A Dauto_zone.h89 AUTO_EXPORT boolean_t auto_zone_atomicCompareAndSwap(auto_zone_t *zone, void *existingValue, void *newValue, void *volatile *location, boolean_t isGlobal, boolean_t issueBarrier)
93 AUTO_EXPORT boolean_t auto_zone_atomicCompareAndSwapPtr(auto_zone_t *zone, void *existingValue, void *newValue, void *volatile *location, boolean_t issueBarrier)
H A Dauto_zone.cpp1619 boolean_t auto_zone_atomicCompareAndSwap(auto_zone_t *zone, void *existingValue, void *newValue, void *volatile *location, boolean_t isGlobal, boolean_t issueBarrier) { argument
1630 result = OSAtomicCompareAndSwapPtrBarrier(existingValue, newValue, location);
1632 result = OSAtomicCompareAndSwapPtr(existingValue, newValue, location);
1730 boolean_t auto_zone_atomicCompareAndSwapPtr(auto_zone_t *zone, void *existingValue, void *newValue, void *volatile *location, boolean_t issueBarrier) { argument
1732 return auto_zone_atomicCompareAndSwap(zone, existingValue, newValue, location, azone->is_global_address((void*)location), issueBarrier);

Completed in 191 milliseconds