/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | KnownBits.h | 23 APInt Zero; member 28 KnownBits(APInt Zero, APInt One) in KnownBits() 29 : Zero(std::move(Zero)), One(std::move(One)) {} in KnownBits() 32 // Default construct Zero and One. 36 KnownBits(unsigned BitWidth) : Zero(BitWidth, 0), One(BitWidth, 0) {} in KnownBits() 40 assert(Zero.getBitWidth() == One.getBitWidth() && in getBitWidth() 41 "Zero and One should have the same width!"); in getBitWidth() 42 return Zero.getBitWidth(); in getBitWidth() 46 bool hasConflict() const { return Zero [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
H A D | GISelKnownBits.cpp | 62 Known.Zero.setLowBits(Log2(Alignment)); in computeKnownBitsForAlignment() 85 return getKnownBits(R).Zero; in getKnownZeroes() 147 Known.Zero = ~Known.One; in computeKnownBitsImpl() 166 Known.Zero.setLowBits(KnownZeroLow); in computeKnownBitsImpl() 176 APInt KnownZeroOut = (Known.Zero & Known2.Zero) | (Known.One & Known2.One); in computeKnownBitsImpl() 178 Known.One = (Known.Zero & Known2.One) | (Known.One & Known2.Zero); in computeKnownBitsImpl() 179 Known.Zero = KnownZeroOut; in computeKnownBitsImpl() 205 Known.Zero in computeKnownBitsImpl() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | importCallExpressionInCJS5.js | 19 this.myModule.then(Zero => { 20 console.log(Zero.foo()); 33 this.myModule.then(Zero => { 34 console.log(Zero.foo()); 69 this.myModule.then(Zero => {
70 console.log(Zero.foo());
84 this.myModule.then(Zero => {
85 console.log(Zero.foo());
|
H A D | importCallExpressionNoModuleKindSpecified.js | 19 this.myModule.then(Zero => { 20 console.log(Zero.foo()); 92 this.myModule.then(function (Zero) {
93 console.log(Zero.foo());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSimplifyDemanded.cpp | 102 /// expression. Known.Zero contains all the bits that are known to be zero in 106 /// Known.One and Known.Zero always follow the invariant that: 107 /// Known.One & Known.Zero == 0. 109 /// Known.Zero may only be accurate for those bits set in DemandedMask. Note 110 /// also that the bitwidth of V, DemandedMask, Known.Zero and Known.One must all 168 // If either the LHS or the RHS are Zero, the result is zero. in SimplifyDemandedUseBits() 170 SimplifyDemandedBits(I, 0, DemandedMask & ~RHSKnown.Zero, LHSKnown, in SimplifyDemandedUseBits() 177 APInt IKnownZero = RHSKnown.Zero | LHSKnown.Zero; in SimplifyDemandedUseBits() 188 if (DemandedMask.isSubsetOf(LHSKnown.Zero | RHSKnow in SimplifyDemandedUseBits() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | KnownBits.cpp | 28 APInt CarryKnownZero = ~(PossibleSumZero ^ LHS.Zero ^ RHS.Zero); in computeForAddCarry() 32 APInt LHSKnownUnion = LHS.Zero | LHS.One; in computeForAddCarry() 33 APInt RHSKnownUnion = RHS.Zero | RHS.One; in computeForAddCarry() 42 KnownOut.Zero = ~std::move(PossibleSumZero) & Known; in computeForAddCarry() 51 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue()); in computeForAddCarry() 63 std::swap(RHS.Zero, RHS.One); in computeForAddSub()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
H A D | TextureGL.cpp | 223 uint8_t clearColor = (clearValue == TextureBase::ClearValue::Zero) ? 0 : 1; in ClearTexture() 224 float fClearColor = (clearValue == TextureBase::ClearValue::Zero) ? 0.f : 1.f; in ClearTexture() 271 if (clearValue == TextureBase::ClearValue::Zero && in ClearTexture() 294 if (clearValue == TextureBase::ClearValue::Zero && in ClearTexture() 330 clearColorData.fill((clearValue == TextureBase::ClearValue::Zero) ? 0u : 1u); in ClearTexture() 336 fClearColorData.fill((clearValue == TextureBase::ClearValue::Zero) ? 0.f : 1.f); in ClearTexture() 357 if (clearValue == TextureBase::ClearValue::Zero && in ClearTexture() 368 clearValue == TextureBase::ClearValue::Zero in ClearTexture() 388 clearValue == TextureBase::ClearValue::Zero in ClearTexture() 395 clearValue == TextureBase::ClearValue::Zero in ClearTexture() [all...] |
/third_party/jerryscript/jerry-libm/ |
H A D | fmod.c | 36 static const double Zero[] = { 0.0, -0.0, }; variable 66 return Zero[(unsigned) sx >> 31]; in fmod() 173 return Zero[(unsigned) sx >> 31]; in fmod() 194 return Zero[(unsigned) sx >> 31]; in fmod()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 212 return (LHSKnown.Zero | RHSKnown.Zero).isAllOnesValue(); in haveNoCommonBitsSet() 410 unsigned TrailBitsKnown0 = (Known.Zero | Known.One).countTrailingOnes(); in computeKnownBitsMul() 411 unsigned TrailBitsKnown1 = (Known2.Zero | Known2.One).countTrailingOnes(); in computeKnownBitsMul() 425 Known.Zero.setHighBits(LeadZ); in computeKnownBitsMul() 426 Known.Zero |= (~BottomKnown).getLoBits(ResultBitsKnown); in computeKnownBitsMul() 446 Known.Zero.setAllBits(); in computeKnownBitsFromRangeMetadata() 462 Known.Zero &= ~Range.getUnsignedMax() & Mask; in computeKnownBitsFromRangeMetadata() 710 Known.Zero |= RHSKnown.Zero; in computeKnownBitsFromAssume() [all...] |
H A D | MemoryBuiltins.cpp | 581 Zero = APInt::getNullValue(IntTyBits); in compute() 638 return std::make_pair(align(Size, I.getAlignment()), Zero); in visitAllocaInst() 649 Zero); in visitAllocaInst() 662 return std::make_pair(align(Size, A.getParamAlignment()), Zero); in visitArgument() 687 return std::make_pair(Size, Zero); in visitCallSite() 700 return std::make_pair(Size, Zero); in visitCallSite() 712 return Overflow ? unknown() : std::make_pair(Size, Zero); in visitCallSite() 734 return std::make_pair(Zero, Zero); in visitConstantPointerNull() 768 return std::make_pair(align(Size, GV.getAlignment()), Zero); in visitGlobalVariable() [all...] |
/third_party/json/tests/thirdparty/Fuzzer/test/ |
H A D | TimeoutEmptyTest.cpp | 9 static volatile int Zero = 0; in LLVMFuzzerTestOneInput() local 11 while(!Zero) in LLVMFuzzerTestOneInput()
|
H A D | SimpleDictionaryTest.cpp | 14 static volatile int Zero = 0; variable 21 if (Expected[i] + Zero == Data[i]) in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | IntegerDivision.cpp | 160 ConstantInt *Zero; in generateUnsignedDivisionCode() local 166 Zero = Builder.getInt64(0); in generateUnsignedDivisionCode() 172 Zero = Builder.getInt32(0); in generateUnsignedDivisionCode() 251 Value *Ret0_1 = Builder.CreateICmpEQ(Divisor, Zero); in generateUnsignedDivisionCode() 252 Value *Ret0_2 = Builder.CreateICmpEQ(Dividend, Zero); in generateUnsignedDivisionCode() 260 Value *RetVal = Builder.CreateSelect(Ret0, Zero, Dividend); in generateUnsignedDivisionCode() 274 Value *SkipLoop = Builder.CreateICmpEQ(SR_1, Zero); in generateUnsignedDivisionCode() 320 Value *Tmp12 = Builder.CreateICmpEQ(SR_2, Zero); in generateUnsignedDivisionCode() 344 Carry_1->addIncoming(Zero, Preheader); in generateUnsignedDivisionCode() 356 Carry_2->addIncoming(Zero, BB in generateUnsignedDivisionCode() [all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
H A D | TestCornerCases.cs | 46 Values = { NegativeEnum.Zero, NegativeEnum.MinusOne, NegativeEnum.FiveBelow },
in TestRoundTripNegativeEnums() 47 PackedValues = { NegativeEnum.Zero, NegativeEnum.MinusOne, NegativeEnum.FiveBelow }
in TestRoundTripNegativeEnums()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | TestCornerCases.cs | 46 Values = { NegativeEnum.Zero, NegativeEnum.MinusOne, NegativeEnum.FiveBelow },
in TestRoundTripNegativeEnums() 47 PackedValues = { NegativeEnum.Zero, NegativeEnum.MinusOne, NegativeEnum.FiveBelow }
in TestRoundTripNegativeEnums()
|
/third_party/skia/third_party/externals/angle2/util/ |
H A D | shader_utils.h | 68 ANGLE_UTIL_EXPORT const char *Zero(); 124 ANGLE_UTIL_EXPORT const char *Zero(); 166 ANGLE_UTIL_EXPORT const char *Zero();
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | UniformTest.cpp | 42 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 64 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 88 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 112 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 136 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 160 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 184 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 208 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 235 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShader); in TEST_P() 264 ANGLE_GL_PROGRAM(program, essl1_shaders::vs::Zero(), kFragShade in TEST_P() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 691 if (DemandedBits.isSubsetOf(LHSKnown.Zero | RHSKnown.One)) in SimplifyMultipleUseDemandedBits() 693 if (DemandedBits.isSubsetOf(RHSKnown.Zero | LHSKnown.One)) in SimplifyMultipleUseDemandedBits() 704 if (DemandedBits.isSubsetOf(LHSKnown.One | RHSKnown.Zero)) in SimplifyMultipleUseDemandedBits() 706 if (DemandedBits.isSubsetOf(RHSKnown.One | LHSKnown.Zero)) in SimplifyMultipleUseDemandedBits() 716 if (DemandedBits.isSubsetOf(RHSKnown.Zero)) in SimplifyMultipleUseDemandedBits() 718 if (DemandedBits.isSubsetOf(LHSKnown.Zero)) in SimplifyMultipleUseDemandedBits() 828 Known.Zero = ~Known.One; in SimplifyDemandedBits() 916 Known.Zero &= KnownVec.Zero; in SimplifyDemandedBits() 948 Known.Zero in SimplifyDemandedBits() 2871 SDValue Zero = DAG.getConstant(0, DL, OpVT); foldSetCCWithAnd() local 3170 SDValue Zero = DAG.getConstant(0, dl, N0.getValueType()); SimplifySetCC() local 3202 SDValue Zero = DAG.getConstant(0, dl, CTVT); SimplifySetCC() local 5448 SDValue Zero = prepareSREMEqFold() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUISelLowering.cpp | 1335 const SDValue Zero = DAG.getConstant(0, SL, MVT::i32); in split64BitValue() local 1338 SDValue Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, Zero); in split64BitValue() 1348 const SDValue Zero = DAG.getConstant(0, SL, MVT::i32); in getLoHalf64() local 1349 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, Zero); in getLoHalf64() 1646 SDValue Zero = DAG.getConstant(0, DL, HalfVT); in LowerUDIVREM64() local 1650 SDValue LHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, LHS, Zero); in LowerUDIVREM64() 1654 SDValue RHS_Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, HalfVT, RHS, Zero); in LowerUDIVREM64() 1663 SDValue DIV = DAG.getBuildVector(MVT::v2i32, DL, {Res.getValue(0), Zero}); in LowerUDIVREM64() 1664 SDValue REM = DAG.getBuildVector(MVT::v2i32, DL, {Res.getValue(1), Zero}); in LowerUDIVREM64() 1708 Zero); in LowerUDIVREM64() 1971 SDValue Zero = DAG.getConstant(0, DL, VT); LowerSDIVREM() local 2049 const SDValue Zero = DAG.getConstantFP(0.0, SL, MVT::f64); LowerFCEIL() local 2085 const SDValue Zero = DAG.getConstant(0, SL, MVT::i32); LowerFTRUNC() local 2181 const SDValue Zero = DAG.getConstantFP(0.0, SL, VT); LowerFROUND_LegalFTRUNC() local 2203 const SDValue Zero = DAG.getConstant(0, SL, MVT::i32); LowerFROUND64() local 2276 const SDValue Zero = DAG.getConstantFP(0.0, SL, MVT::f64); LowerFFLOOR() local 2344 const SDValue Zero = DAG.getConstant(0, SL, MVT::i32); LowerCTLZ_CTTZ() local 2629 SDValue Zero = DAG.getConstant(0, DL, MVT::i32); LowerFP_TO_FP16() local 3107 const SDValue Zero = DAG.getConstant(0, SL, MVT::i32); performShlCombine() local 3184 SDValue Zero = DAG.getConstant(0, SL, MVT::i32); performSrlCombine() local [all...] |
/third_party/node/deps/v8/src/base/numbers/ |
H A D | bignum.cc | 27 Zero(); in AssignUInt16() 38 Zero(); in AssignUInt64() 79 Zero(); in AssignDecimalString() 104 Zero(); in AssignHexString() 217 Zero(); in MultiplyByUInt32() 242 Zero(); in MultiplyByUInt64() 382 Zero(); in AssignPowerUInt16() 625 // Zero. in Clamp() 634 void Bignum::Zero() { in Zero() function in v8::base::Bignum
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonAsmPrinter.cpp | 291 const MCConstantExpr *Zero = MCConstantExpr::create(0, OutContext); in HexagonProcessInstruction() local 293 Inst.addOperand(MCOperand::createExpr(Zero)); in HexagonProcessInstruction() 298 const MCConstantExpr *Zero = MCConstantExpr::create(0, OutContext); in HexagonProcessInstruction() local 300 Inst.addOperand(MCOperand::createExpr(Zero)); in HexagonProcessInstruction() 305 const MCConstantExpr *Zero = MCConstantExpr::create(0, OutContext); in HexagonProcessInstruction() local 307 Inst.addOperand(MCOperand::createExpr(Zero)); in HexagonProcessInstruction() 312 const MCConstantExpr *Zero = MCConstantExpr::create(0, OutContext); in HexagonProcessInstruction() local 314 Inst.addOperand(MCOperand::createExpr(Zero)); in HexagonProcessInstruction() 528 const MCExpr *Zero = MCConstantExpr::create(0, OutContext); in HexagonProcessInstruction() local 529 const HexagonMCExpr *E = HexagonMCExpr::create(Zero, OutContex in HexagonProcessInstruction() [all...] |
/third_party/gptfdisk/ |
H A D | guid.cc | 36 Zero(); in GUIDData() 81 Zero(); in operator =() 131 void GUIDData::Zero(void) { in Zero() function in GUIDData 133 } // GUIDData::Zero() in Zero()
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | bignum.cc | 57 Zero(); in AssignUInt16() 66 Zero(); in AssignUInt64() 100 Zero(); in AssignDecimalString() 133 Zero(); in AssignHexString() 255 Zero(); in MultiplyByUInt32() 284 Zero(); in MultiplyByUInt64() 434 Zero(); 720 // Zero.
|
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-bignum.cpp | 71 Zero(); in AssignUInt16() 80 Zero(); in AssignUInt64() 114 Zero(); in AssignDecimalString() 147 Zero(); in AssignHexString() 269 Zero(); in MultiplyByUInt32() 298 Zero(); in MultiplyByUInt64() 448 Zero(); 734 // Zero.
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-bignum.cpp | 71 Zero(); in AssignUInt16() 80 Zero(); in AssignUInt64() 114 Zero(); in AssignDecimalString() 147 Zero(); in AssignHexString() 269 Zero(); in MultiplyByUInt32() 298 Zero(); in MultiplyByUInt64() 448 Zero(); 734 // Zero.
|