Home
last modified time | relevance | path

Searched refs:kXOR (Results 1 – 23 of 23) sorted by relevance

/dports/x11/xcalc/xcalc-1.1.0/
H A Dmath.c535 case kXOR: acc = (long)acc ^ (long)dnum; break; in twoop()
576 case kXOR: acc = (long)acc ^ (long)dnum; break; in twof()
648 case kXOR: acc = (long)acc ^ (long)dnum; in equf()
727 case kXOR: acc = (long)acc ^ (long)dnum; in rparf()
1014 case kXOR: return(1); in priority()
H A Dxcalc.h112 #define kXOR 54 /* bitwise xor */ macro
H A Dactions.c558 XCALC_PRE_OP(kXOR); in xor()
559 rpn ? twof(kXOR) : twoop(kXOR); in xor()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/sksg/include/
H A DSkSGMerge.h36 kXOR, enumerator
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/sksg/include/
H A DSkSGMerge.h36 kXOR, enumerator
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skottie/src/layers/shapelayer/
H A DMergePaths.cpp38 sksg::Merge::Mode::kXOR , // "mm": 5 in AttachMergeGeometryEffect()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skottie/src/layers/shapelayer/
H A DMergePaths.cpp38 sksg::Merge::Mode::kXOR , // "mm": 5 in AttachMergeGeometryEffect()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/sksg/src/
H A DSkSGMerge.cpp54 case Merge::Mode::kXOR: in mode_to_op()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/sksg/src/
H A DSkSGMerge.cpp55 case Merge::Mode::kXOR: in mode_to_op()
/dports/audio/faust/faust-2.37.3/compiler/transform/
H A DsigPromotion.cpp97 case kXOR: in transformation()
/dports/audio/faust/faust-2.37.3/compiler/signals/
H A Dbinop.hh216 … kAdd, kSub, kMul, kDiv, kRem, kLsh, kARsh, kLRsh, kGT, kLT, kGE, kLE, kEQ, kNE, kAND, kOR, kXOR }; enumerator
H A Dbinop.cpp228 …o == kAdd) || (o == kMul) || (o == kEQ) || (o == kNE) || (o == kAND) || (o == kOR) || (o == kXOR)); in isCommutativeOpcode()
233 return (o >= kAND && o <= kXOR); in isLogicalOpcode()
H A Dsigtyperules.cpp919 case kXOR: in arithmetic()
H A Dsignals.cpp407 return sigBinOp(kXOR, x, y); in sigXOR()
/dports/audio/faust/faust-2.37.3/compiler/generator/
H A Dlibfaust-signal-c.h46 … kAdd, kSub, kMul, kDiv, kRem, kLsh, kARsh, kLRsh, kGT, kLT, kGE, kLE, kEQ, kNE, kAND, kOR, kXOR }; enumerator
H A Dlibfaust-signal.h41 … kAdd, kSub, kMul, kDiv, kRem, kLsh, kARsh, kLRsh, kGT, kLT, kGE, kLE, kEQ, kNE, kAND, kOR, kXOR }; enumerator
H A Dlibfaust-box-c.h45 … kAdd, kSub, kMul, kDiv, kRem, kLsh, kARsh, kLRsh, kGT, kLT, kGE, kLE, kEQ, kNE, kAND, kOR, kXOR }; enumerator
H A Dlibfaust-box.h41 … kAdd, kSub, kMul, kDiv, kRem, kLsh, kARsh, kLRsh, kGT, kLT, kGE, kLE, kEQ, kNE, kAND, kOR, kXOR }; enumerator
H A Dinstructions.hh2548 static BinopInst* genXOr(ValueInst* a1, ValueInst* a2) { return genBinopInst(kXOR, a1, a2); } in genXOr()
/dports/audio/faust/faust-2.37.3/compiler/generator/julia/
H A Djulia_instructions.hh451 if (inst->fOpcode == kXOR) { in visit()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skottie/src/
H A DLayer.cpp46 { SkBlendMode::kXor , sksg::Merge::Mode::kXOR , false }; in GetMaskInfo()
/dports/audio/faust/faust-2.37.3/compiler/documentator/
H A Ddoc_compile.cpp441 …rn (opcode == kAdd) || (opcode == kMul) || (opcode == kAND) || (opcode == kOR) || (opcode == kXOR); in associative()
/dports/audio/faust/faust-2.37.3/compiler/
H A Dlibcode.cpp2727 faustassert(op >= kAdd && op <= kXOR); in boxBinOp()