/src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
i915_random.c | 63 size_t swp; local in function:i915_prandom_shuffle 65 swp = i915_prandom_u32_max_state(count + 1, state); 66 if (swp == count) 70 memcpy(arr + count * elsz, arr + swp * elsz, elsz); 71 memcpy(arr + swp * elsz, stack, elsz);
|
/src/common/lib/libc/arch/arm/atomic/ |
atomic_swap.S | 35 * While SWP{B} is sufficient on its own for pre-ARMv7 CPUs, on MP ARMv7 cores 36 * SWP{B} is disabled since it's no longer atomic among multiple CPUs. They 39 * So if we use the LDREX/STREX template, but use a SWP instruction followed 41 * for the SWP UNDEFINED exception enough information to "patch" this instance 42 * SWP with correct forms of LDREX/STREX. (note that this would happen even 66 swp r0, r1, [ip]
|
/src/sys/altq/ |
altq_wfq.c | 514 wfq_setweight(struct wfq_setweight *swp) 520 if (swp->weight < 0) 523 if ((wfqp = altq_lookup(swp->iface.wfq_ifacename, ALTQT_WFQ)) == NULL) 526 if (swp->qid < 0 || swp->qid >= wfqp->nums) 529 queue = &wfqp->queue[swp->qid]; 531 queue->weight = swp->weight; 532 swp->weight = old;
|
/src/sys/external/bsd/ipf/netinet/ |
ip_raudio_pxy.c | 197 u_char swp; local in function:ipf_p_raudio_in 272 swp = ip->ip_p; 339 ip->ip_p = swp;
|
/src/sys/netinet/ |
portalgo.c | 216 u_int16_t swp; local in function:pcb_getports 218 swp = *mymin; 220 *mymax = swp;
|
/src/common/lib/libc/arch/aarch64/atomic/ |
__aarch64_lse.S | 128 #define SWP _CONCAT4(swp, ACQ, REL, OPSFX) 148 SWP R0, R0, [x1]
|
/src/sys/fs/nilfs/ |
nilfs_vfsops.c | 378 int sb1ok, sb2ok, swp; local in function:nilfs_read_superblock 419 swp = sb2ok && (last_cno2 > last_cno1); 421 if (swp) {
|
/src/sys/nfs/ |
nfs_serv.c | 1066 struct nfsrv_descript *wp, *nfsd, *owp, *swp; local in function:nfsrv_writegather 1291 swp = nfsd; 1306 *tl++ = txdr_unsigned(swp->nd_stable); 1330 if (nfsd != swp) { 1334 nfsd = LIST_FIRST(&swp->nd_coalesce); 1340 swp->nd_time = 0; 1343 LIST_INSERT_HEAD(&slp->ns_tq, swp, nd_tq);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_lrc.c | 4745 int swp; local in function:virtual_engine_initial_hint 4760 swp = prandom_u32_max(ve->num_siblings); 4761 if (!swp) 4764 swap(ve->siblings[swp], ve->siblings[0]);
|