Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/frontends/hgl/
Dhgl.c163 unsigned stAttachmentMask, newMask; in hgl_st_framebuffer_validate() local
177 newMask = stAttachmentMask & ~buffer->mask; in hgl_st_framebuffer_validate()
182 if (resized || newMask) { in hgl_st_framebuffer_validate()
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoakeyboard.m307 unsigned int oldMask, newMask;
313 newMask = newMods & device_independent_mask;
315 if (oldMask && oldMask != newMask) {
317 } else if (newMask && oldMask != newMask) {
464 unsigned int oldMask, newMask;
467 newMask = newMods & bit;
472 if (newMask) {
480 else if (oldMask && oldMask != newMask) {
/third_party/mesa3d/src/mesa/swrast/
Ds_stencil.c277 const GLubyte newMask[], in compute_pass_fail_masks() argument
282 assert(newMask[i] == 0 || newMask[i] == 1); in compute_pass_fail_masks()
283 passMask[i] = origMask[i] & newMask[i]; in compute_pass_fail_masks()
284 failMask[i] = origMask[i] & (newMask[i] ^ 1); in compute_pass_fail_masks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIModeRegister.cpp59 Status mergeUnknown(unsigned newMask) { in mergeUnknown()
60 return Status(Mask & ~newMask, Mode & ~newMask); in mergeUnknown()
/third_party/mesa3d/src/mesa/drivers/dri/i915/
Di830_state.c476 GLuint newMask; in i830PolygonStipple() local
506 newMask = (((p[0] & 0xf) << 0) | in i830PolygonStipple()
511 if (newMask == 0xffff || newMask == 0x0) { in i830PolygonStipple()
518 i830->state.Stipple[I830_STPREG_ST1] |= newMask; in i830PolygonStipple()
Di915_state.c442 GLuint newMask; in i915PolygonStipple() local
472 newMask = (((p[0] & 0xf) << 0) | in i915PolygonStipple()
477 if (newMask == 0xffff || newMask == 0x0) { in i915PolygonStipple()
484 i915->state.Stipple[I915_STPREG_ST1] |= newMask; in i915PolygonStipple()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp2160 SmallVector<int, 16> newMask; in visitShuffleVectorInst() local
2221 newMask.push_back(eltMask); in visitShuffleVectorInst()
2226 if (isSplat || newMask == LHSMask || newMask == RHSMask || newMask == Mask) { in visitShuffleVectorInst()
2228 for (unsigned i = 0, e = newMask.size(); i != e; ++i) { in visitShuffleVectorInst()
2229 if (newMask[i] < 0) { in visitShuffleVectorInst()
2232 Elts.push_back(ConstantInt::get(Int32Ty, newMask[i])); in visitShuffleVectorInst()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_negative.cpp5059 AutoPtr<dng_image> newMask (host.Make_dng_image (fStage3Image->Bounds (), in ResizeTransparencyToMatchStage3() local
5066 *newMask); in ResizeTransparencyToMatchStage3()
5068 fTransparencyMask.Reset (newMask.Release ()); in ResizeTransparencyToMatchStage3()
/third_party/expat/lib/
Dxmlparse.c6944 unsigned long newMask = (unsigned long)newSize - 1; in lookup() local
6959 size_t j = newHash & newMask; in lookup()
6963 step = PROBE_STEP(newHash, newMask, newPower); in lookup()
6972 i = h & newMask; in lookup()
6976 step = PROBE_STEP(h, newMask, newPower); in lookup()
/third_party/skia/third_party/externals/expat/expat/lib/
Dxmlparse.c6753 unsigned long newMask = (unsigned long)newSize - 1; in lookup() local
6762 size_t j = newHash & newMask; in lookup()
6766 step = PROBE_STEP(newHash, newMask, newPower); in lookup()
6775 i = h & newMask; in lookup()
6779 step = PROBE_STEP(h, newMask, newPower); in lookup()
/third_party/python/Modules/expat/
Dxmlparse.c6753 unsigned long newMask = (unsigned long)newSize - 1; in lookup() local
6762 size_t j = newHash & newMask; in lookup()
6766 step = PROBE_STEP(newHash, newMask, newPower); in lookup()
6775 i = h & newMask; in lookup()
6779 step = PROBE_STEP(h, newMask, newPower); in lookup()
/third_party/vk-gl-cts/framework/common/
DtcuRasterizationVerifier.cpp1786 const deUint32 newMask = (previousMask) | ((deUint32)1u << bitNdx); in setMaskMapCoverageBitForLine() local
1788 maskMap.setPixel(tcu::UVec4(newMask, 0, 0, 0), fragPos.x(), fragPos.y()); in setMaskMapCoverageBitForLine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp3326 APInt newMask = APInt::getLowBitsSet(maskWidth, width); in SimplifySetCC() local
3328 if (Mask.isSubsetOf(newMask)) { in SimplifySetCC()
3337 newMask <<= width; in SimplifySetCC()