Home
last modified time | relevance | path

Searched refs:newMask (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/bmake/
H A Dhash.c226 unsigned newMask = newSize - 1; in HashTable_Enlarge() local
237 he->next = newBuckets[he->hash & newMask]; in HashTable_Enlarge()
238 newBuckets[he->hash & newMask] = he; in HashTable_Enlarge()
246 t->bucketsMask = newMask; in HashTable_Enlarge()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIModeRegister.cpp49 Status mergeUnknown(unsigned newMask) { in mergeUnknown()
50 return Status(Mask & ~newMask, Mode & ~newMask); in mergeUnknown()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h708 mask_t newMask, sysMask, retval; in get_system_affinity() local
709 if (!GetProcessAffinityMask(GetCurrentProcess(), &newMask, &sysMask)) { in get_system_affinity()
717 retval = SetThreadAffinityMask(GetCurrentThread(), newMask); in get_system_affinity()
726 newMask = SetThreadAffinityMask(GetCurrentThread(), retval); in get_system_affinity()
727 if (!newMask) { in get_system_affinity()
/freebsd/sys/netgraph/
H A Dng_bridge.c1097 u_int newMask; in ng_bridge_rehash() local
1108 newMask = newNumBuckets - 1; in ng_bridge_rehash()
1125 newBucket = HASH(host->addr, newMask); in ng_bridge_rehash()
1138 priv->hashMask = newMask; in ng_bridge_rehash()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp3199 SmallVector<int, 16> newMask; in visitShuffleVectorInst() local
3260 newMask.push_back(eltMask); in visitShuffleVectorInst()
3265 if (isSplat || newMask == LHSMask || newMask == RHSMask || newMask == Mask) { in visitShuffleVectorInst()
3268 return new ShuffleVectorInst(newLHS, newRHS, newMask); in visitShuffleVectorInst()
/freebsd/contrib/expat/lib/
H A Dxmlparse.c8056 unsigned long newMask = (unsigned long)newSize - 1; local
8072 size_t j = newHash & newMask;
8076 step = PROBE_STEP(newHash, newMask, newPower);
8085 i = h & newMask;
8089 step = PROBE_STEP(h, newMask, newPower);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp4885 APInt newMask = APInt::getLowBitsSet(maskWidth, width); in SimplifySetCC() local
4890 if (Mask.isSubsetOf(newMask)) { in SimplifySetCC()
4908 newMask <<= 8; in SimplifySetCC()