Searched refs:existing (Results 1 - 25 of 245) sorted by last modified time

12345678910

/macosx-10.9.5/xnu-2422.115.4/bsd/dev/dtrace/
H A Ddtrace.c9367 dtrace_difv_t *v = &dp->dtdo_vartab[i], *existing = NULL;
9412 existing = &svar->dtsv_var;
9419 existing = &vstate->dtvs_tlocals[ndx];
9427 existing = &svar->dtsv_var;
9448 if (existing == NULL || existing->dtdv_id == 0)
9451 ASSERT(existing->dtdv_id == v->dtdv_id);
9452 ASSERT(existing->dtdv_scope == v->dtdv_scope);
9454 if (existing->dtdv_kind != v->dtdv_kind)
9457 et = &existing
[all...]
/macosx-10.9.5/Security-55471.14.18/authd/
H A Dengine.c1229 bool existing = (rule_get_id(rule) != 0) ? true : _wildcard_right_exists(engine, right); local
1231 if (existing || force_modify) {
1237 if (existing) {
/macosx-10.9.5/CF-855.17/
H A DCFMessagePort.c361 CFMessagePortRef existing; local
362 if (NULL != __CFAllLocalMessagePorts && CFDictionaryGetValueIfPresent(__CFAllLocalMessagePorts, name, (const void **)&existing)) {
363 CFRetain(existing);
367 if (!CFMessagePortIsValid(existing)) { // must do this outside lock to avoid deadlock
368 CFRelease(existing);
369 existing = NULL;
371 return (CFMessagePortRef)(existing);
461 CFMessagePortRef existing; local
462 if (NULL != __CFAllLocalMessagePorts && CFDictionaryGetValueIfPresent(__CFAllLocalMessagePorts, name, (const void **)&existing)) {
463 CFRetain(existing);
505 CFMessagePortRef existing; local
562 CFMessagePortRef existing; local
620 CFMessagePortRef existing; local
[all...]
H A DCFXMLPreferencesDomain.c406 const void *existing = NULL; local
414 // if (1) the key is present AND value is !NULL and equal to existing, do nothing, or
417 if (CFDictionaryGetValueIfPresent(domain->_domainDict, key, &existing)) {
418 if (NULL != value && (existing == value || CFEqual(existing, value))) {
/macosx-10.9.5/launchd-842.92.1/src/
H A Dcore.c3219 * treated as a singleton, so just return the existing one so that
10124 * jobmgr_import2() will return the existing job. But if we fail to alias
10134 * have a problem because we'll have to account for all existing aliases
10209 * errors with services already existing, so we just ignore them.
11173 * attempts to the root job manager to find existing instances.
11183 job_t existing = job_find(target, name); local
11184 if (existing && existing->p) {
11185 job_log(existing, LOG_DEBUG, "Found existing instanc
[all...]
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A Ddy_framework.c273 _IOServiceGetMatchingServices(mach_port_t masterPort, CFDictionaryRef matching, io_iterator_t *existing) argument
281 return dyfunc ? dyfunc(masterPort, matching, existing) : KERN_FAILURE;
H A Ddy_framework.h171 io_iterator_t *existing
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOKitLib.c433 io_iterator_t * existing )
457 (char *) CFDataGetBytePtr(data), existing );
462 (char *) CFDataGetBytePtr(data), dataLen, &result, existing );
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DElement.cpp2488 PseudoElement* existing = pseudoElement(pseudoId);
2489 if (existing) {
2492 existing->recalcStyle(needsStyleRecalc() ? Force : change);
/macosx-10.9.5/WebCore-7537.78.1/svg/animation/
H A DSVGSMILElement.cpp434 HashSet<double> existing; local
436 existing.add(timeList[n].time().value());
443 else if (!existing.contains(value.value()))
/macosx-10.9.5/ruby-104/ruby/
H A Dtime.c1034 zone_str_update(st_data_t *key, st_data_t *value, st_data_t arg, int existing) argument
1039 if (existing) {
H A Dhash.c290 func##_noinsert(st_data_t *key, st_data_t *val, st_data_t arg, int existing) \
292 if (!existing) no_new_key(); \
293 return func(key, val, arg, existing); \
1164 hash_aset(st_data_t *key, st_data_t *val, st_data_t arg, int existing) argument
1171 hash_aset_str(st_data_t *key, st_data_t *val, st_data_t arg, int existing) argument
1174 return hash_aset(key, val, arg, existing);
1867 rb_hash_update_callback(st_data_t *key, st_data_t *value, st_data_t arg, int existing) argument
1883 rb_hash_update_block_callback(st_data_t *key, st_data_t *value, st_data_t arg, int existing) argument
1886 if (existing) {
1946 rb_hash_update_func_callback(st_data_t *key, st_data_t *value, st_data_t arg0, int existing) argument
[all...]
H A Dgc.c3794 wmap_final_func(st_data_t *key, st_data_t *value, st_data_t arg, int existing) argument
3797 if (!existing) return ST_STOP;
H A Dload.c745 release_thread_shield(st_data_t *key, st_data_t *value, st_data_t done, int existing) argument
748 if (!existing) return ST_STOP;
1032 register_init_ext(st_data_t *key, st_data_t *value, st_data_t init, int existing) argument
1035 if (existing) {
/macosx-10.9.5/IOKitUser-907.100.13/graphics.subproj/
H A DIOGraphicsLib.c995 UInt32 new, existing; local
997 existing = existingScaled ? existingTimingInfo->horizontalScaled
1001 if( new < (existing - 20))
1003 if( new > (existing + 20))
1006 existing = existingScaled ? existingTimingInfo->verticalScaled
1011 if( new < (existing - 20))
1013 if( new > (existing + 20))
1643 // pick up existing config
/macosx-10.9.5/WebCore-7537.78.1/loader/cache/
H A DCachedResourceLoader.cpp205 if (CachedResource* existing = memoryCache()->resourceForRequest(request.resourceRequest())) {
206 if (existing->type() == CachedResource::CSSStyleSheet)
207 return static_cast<CachedCSSStyleSheet*>(existing);
208 memoryCache()->remove(existing);
464 // See if we can use an existing resource from the cache.
/macosx-10.9.5/dyld-239.4/src/
H A Ddyld.cpp718 const dyld_image_info* existing = dyld::gProcessInfo->infoArray; local
719 if ( existing != NULL ) {
721 if ( existing[i].imageLoadAddress == info.imageLoadAddress ) {
1325 // need to append to existing list
1326 const char* const* existing = *storage; local
1328 for(int i=0; existing[i] != NULL; ++i)
1334 for(int i=0; existing[i] != NULL; ++i)
1335 combinedList[index++] = existing[i];
2251 // now sanity check that this loaded image does not have the same install path as any existing image
2523 // look for path match with existing loade
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DReplaceSelectionCommand.cpp383 Position existing = endOfExistingContent.deepEquivalent(); local
386 return isInsideMailBlockquote && (numEnclosingMailBlockquotes(existing) == numEnclosingMailBlockquotes(inserted));
1410 // If the user is inserting a list into an existing list, instead of nesting the list,
1411 // we put the list items into the existing list.
/macosx-10.9.5/dtrace-118.1/libdtrace/
H A Ddt_aggregate.c59 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size) argument
64 existing[i] = existing[i] + new[i];
84 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) argument
86 if (*new < *existing)
87 *existing = *new;
92 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) argument
94 if (*new > *existing)
95 *existing = *new;
130 dt_aggregate_lquantize(int64_t *existing, int64_ argument
213 dt_aggregate_llquantize(int64_t *existing, int64_t *new, size_t size) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/llvm-build/llvmbuild/
H A Dmain.py117 existing = self.component_info_map.get(ci.name)
118 if existing is not None:
121 ci.name, ci.subpath, existing.subpath))
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Unix/
H A DProgram.inc362 // reason other than the file not existing, and return 126 in this case.
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Windows/
H A DPath.inc877 // Find a numeric suffix that isn't used by an existing file. Assume there
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter5/
H A Dcodegen.ml120 * shadows an existing variable, we have to restore it, so save it
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml138 * shadows an existing variable, we have to restore it, so save it
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml191 * shadows an existing variable, we have to restore it, so save it

Completed in 408 milliseconds

12345678910