| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ | 
| sanitizer_atomic_clang.h | 76                                            typename T::Type xchg, 81   prev = __sync_val_compare_and_swap(&a->val_dont_use, cmpv, xchg);
 90                                          typename T::Type xchg,
 92   return atomic_compare_exchange_strong(a, cmp, xchg, mo);
 
 | 
| sanitizer_atomic_msvc.h | 206                                            uptr xchg, 210       (void*volatile*)&a->val_dont_use, (void*)xchg, (void*)cmpv);
 219                                            u16 xchg,
 223       (volatile short*)&a->val_dont_use, (short)xchg, (short)cmpv);
 232                                            u32 xchg,
 236       (volatile long*)&a->val_dont_use, (long)xchg, (long)cmpv);
 245                                            u64 xchg,
 249       (volatile long long*)&a->val_dont_use, (long long)xchg, (long long)cmpv);
 259                                          typename T::Type xchg,
 261   return atomic_compare_exchange_strong(a, cmp, xchg, mo)
 [all...]
 | 
| sanitizer_atomic_clang_mips.h | 68                                            atomic_uint64_t::Type xchg, 83     ptr->val_dont_use = xchg;
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/ | 
| i915_gem_throttle.c | 58 		if (target && xchg(&target->file_priv, NULL)) 
 | 
| /src/sys/external/bsd/drm2/dist/drm/qxl/ | 
| qxl_irq.c | 43 	pending = xchg(&qdev->ram_header->int_pending, 0); 
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ | 
| intel_gt_requests.c | 59 	struct intel_timeline *tl = xchg(&engine->retire, NULL); 62 		struct intel_timeline *next = xchg(&tl->retire, NULL);
 
 | 
| selftest_timeline.c | 59 	tl = xchg(&state->history[idx], tl); 
 | 
| selftest_hangcheck.c | 1544 	error = xchg(&global->first_error, (void *)-1); 1548 	xchg(&global->first_error, error);
 
 | 
| intel_reset.c | 75 	prev_hang = xchg(&file_priv->hang_timestamp, jiffies); 
 | 
| intel_lrc.c | 2200 	for (port = xchg(&execlists->active, execlists->pending); *port; port++) 
 | 
| /src/sys/arch/i386/stand/fatboot/ | 
| fatboot.S | 144 	xchg	%ax,%dx			/* FAT size now in %edx */ 
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/ | 
| i915_sw_fence.c | 485 	fence = xchg(&cb->base.fence, NULL); 506 	fence = xchg(&cb->base.fence, NULL);
 
 | 
| i915_gem_fence_reg.c | 258 	old = xchg(&fence->vma, NULL); 
 | 
| i915_active.c | 917 	 * A does the xchg first, and so it sees C or NULL depending 934 	prev = xchg(__active_fence_slot(active), fence);
 
 | 
| i915_request.c | 191 	file_priv = xchg(&request->file_priv, NULL); 
 | 
| i915_gpu_error.c | 1879 	if (!xchg(&warned, true) && 
 | 
| intel_uncore.c | 417 	if (xchg(&domain->active, false)) 
 | 
| i915_perf.c | 3332 			config = xchg(&stream->oa_config, config); 
 | 
| /src/sys/external/bsd/drm2/include/linux/ | 
| atomic.h | 42 #define	xchg(P, V)		__sync_lock_test_and_set(P, V)  macro 
 | 
| /src/sys/netinet/ | 
| tcp_subr.c | 745 #define xchg(a,b,type) { type t; t=a; a=b; b=t; }  macro 751 			xchg(ip->ip_dst, ip->ip_src, struct in_addr);
 759 			xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr);
 764 		xchg(th->th_dport, th->th_sport, u_int16_t);
 765 #undef xchg
 
 | 
| /src/sys/arch/i386/stand/mbr/ | 
| mbr.S | 254 	xchg	%ecx, %edx		/* save base of ext ptn chain */ 
 |