| /third_party/typescript/tests/baselines/reference/ |
| D | indexedAccessRetainsIndexSignature.symbols | 2 type Diff<T extends keyof any, U extends keyof any> = 3 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0)) 16 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 23 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0)) 27 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 34 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0)) 40 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]}; 46 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0))
|
| D | indexedAccessRetainsIndexSignature.types | 2 type Diff<T extends keyof any, U extends keyof any> = 3 >Diff : Diff<T, U> 8 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 11 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 16 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]};
|
| D | indexedAccessRetainsIndexSignature.js | 2 type Diff<T extends keyof any, U extends keyof any> = 4 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 5 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 8 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]};
|
| /third_party/typescript/tests/cases/compiler/ |
| D | indexedAccessRetainsIndexSignature.ts | 1 type Diff<T extends keyof any, U extends keyof any> = alias 3 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 4 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 7 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]};
|
| /third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
| D | CsvData.java | 142 public abstract static class Diff { class in CsvData 152 Diff() {} in Diff() method in CsvData.Diff 167 public static Diff diff(CsvData before, CsvData after) { in diff() 170 Diff.diff(before.getRanges(), after.getRanges()), in diff() 171 Diff.diff(before.getShortcodes(), after.getShortcodes()), in diff() 172 Diff.diff(before.getExamples(), after.getExamples()), in diff() 173 Diff.diff(before.getFormats(), after.getFormats()), in diff() 174 Diff.diff(before.getOperators(), after.getOperators())); in diff()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | FileUtilities.cpp | 147 double Diff; in CompareNumbers() local 149 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers() 151 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers() 153 Diff = 0; // Both zero. in CompareNumbers() 154 if (Diff > RelTolerance) { in CompareNumbers() 158 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
| D | X86CmovConversion.cpp | 473 unsigned Diff[LoopIterations] = {LoopDepth[0].Depth - LoopDepth[0].OptDepth, in checkForProfitableCmovCandidates() local 503 if (Diff[1] < GainCycleThreshold) in checkForProfitableCmovCandidates() 507 if (Diff[1] == Diff[0]) in checkForProfitableCmovCandidates() 508 WorthOptLoop = Diff[0] * 8 >= LoopDepth[0].Depth; in checkForProfitableCmovCandidates() 509 else if (Diff[1] > Diff[0]) in checkForProfitableCmovCandidates() 511 (Diff[1] - Diff[0]) * 2 >= (LoopDepth[1].Depth - LoopDepth[0].Depth) && in checkForProfitableCmovCandidates() 512 (Diff[1] * 8 >= LoopDepth[1].Depth); in checkForProfitableCmovCandidates()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
| D | ConstantHoisting.cpp | 527 uint64_t Diff = LimVal1 - LimVal2; in calculateOffsetDiff() local 528 return APInt(BW, Diff, true); in calculateOffsetDiff() 589 Optional<APInt> Diff = calculateOffsetDiff( in maximizeConstantsInRange() local 592 if (Diff) { in maximizeConstantsInRange() 594 TTI->getIntImmCodeSizeCost(Opcode, OpndIdx, Diff.getValue(), Ty); in maximizeConstantsInRange() 596 LLVM_DEBUG(dbgs() << "Offset " << Diff.getValue() << " " in maximizeConstantsInRange() 634 APInt Diff = ConstCand->ConstInt->getValue() - ConstInt->getValue(); in findAndMakeBaseConstant() local 635 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff); in findAndMakeBaseConstant() 685 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue(); in findBaseConstants() local 686 if ((Diff.getBitWidth() <= 64) && in findBaseConstants() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
| D | ExpandMemCmp.cpp | 296 Value *Diff = Builder.CreateSub(LoadSrc1, LoadSrc2); in emitLoadCompareByteBlock() local 298 PhiRes->addIncoming(Diff, LoadCmpBlocks[BlockIndex]); in emitLoadCompareByteBlock() 303 Value *Cmp = Builder.CreateICmp(ICmpInst::ICMP_NE, Diff, in emitLoadCompareByteBlock() 304 ConstantInt::get(Diff->getType(), 0)); in emitLoadCompareByteBlock() 323 Value *Diff = nullptr; in getCompareLoadPairs() local 372 Diff = Builder.CreateXor(LoadSrc1, LoadSrc2); in getCompareLoadPairs() 373 Diff = Builder.CreateZExt(Diff, MaxLoadType); in getCompareLoadPairs() 374 XorList.push_back(Diff); in getCompareLoadPairs() 401 assert(Diff && "Failed to find comparison diff"); in getCompareLoadPairs() 402 Cmp = Builder.CreateICmpNE(OrList[0], ConstantInt::get(Diff->getType(), 0)); in getCompareLoadPairs()
|
| /third_party/skia/third_party/externals/tint/tools/src/substr/ |
| D | substr.go | 33 front := func() diff.Diff { return diffs[0] } 34 back := func() diff.Diff { return diffs[len(diffs)-1] }
|
| /third_party/json/doc/mkdocs/docs/features/ |
| D | json_patch.md | 1 # JSON Patch and Diff 21 ## Diff section in JSON Patch and Diff
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
| D | HexagonConstExtenders.cpp | 407 Register ExtR, int32_t &Diff); 1702 Register ExtR, int32_t &Diff) { in replaceInstrExpr() argument 1722 int32_t D = isInt<16>(Diff) ? Diff : (Diff > 0 ? 32767 : -32768); in replaceInstrExpr() 1723 if (Diff > 32767) { in replaceInstrExpr() 1727 uint32_t UD = Diff; in replaceInstrExpr() 1736 Diff -= D; in replaceInstrExpr() 1742 if (!Uses.contains(-Diff)) in replaceInstrExpr() 1743 dbgs() << "Diff: " << -Diff << " out of range " << Uses in replaceInstrExpr() 1745 assert(Uses.contains(-Diff)); in replaceInstrExpr() 1768 Diff = 0; in replaceInstrExpr() [all …]
|
| D | HexagonFixupHwLoops.cpp | 148 unsigned Diff = AbsoluteDifference(InstOffset, in fixupLoopInstrs() local 150 if (Diff > MaxLoopRange) { in fixupLoopInstrs()
|
| /third_party/rust/crates/clap/examples/ |
| D | git-derive.rs | 25 Diff { enumerator 107 Commands::Diff { in main()
|
| /third_party/openssl/util/ |
| D | c-compress-test.pl | 40 use Text::Diff;
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
| D | PPCLoopInstrFormPrep.cpp | 316 const SCEV *Diff = SE->getMinusSCEV(LSCEV, B.BaseSCEV); in addOneCandidate() local 317 if (const auto *CDiff = dyn_cast<SCEVConstant>(Diff)) { in addOneCandidate() 773 const SCEVConstant *Diff = dyn_cast<SCEVConstant>( in alreadyPrepared() local 775 if (Diff && !Diff->getAPInt().urem(Form)) { in alreadyPrepared()
|
| D | PPCMIPeephole.cpp | 1359 int Diff = Imm1 - Imm2; in eliminateRedundantCompare() local 1360 if (Diff < -2 || Diff > 2) in eliminateRedundantCompare() 1367 if (Diff == 2) { in eliminateRedundantCompare() 1375 else if (Diff == 1) { in eliminateRedundantCompare() 1385 else if (Diff == -1) { in eliminateRedundantCompare() 1395 else if (Diff == -2) { in eliminateRedundantCompare()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
| D | NaClBitCodes.h | 311 if (int Diff = OperandList[I].Compare(Abbrev.OperandList[I])) 312 return Diff;
|
| /third_party/typescript/tests/cases/user/chrome-devtools-frontend/ |
| D | definitions.js | 25 var Diff = {}; variable
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
| D | MCWin64EH.cpp | 55 const MCExpr *Diff = in EmitAbsDifference() local 58 Streamer.EmitValue(Diff, 1); in EmitAbsDifference() 254 const MCExpr *Diff = in GetAbsDifference() local 262 if (!Diff->evaluateAsAbsolute(value, OS->getAssembler())) in GetAbsDifference()
|
| D | MCObjectStreamer.cpp | 147 if (Optional<uint64_t> Diff = absoluteSymbolDiff(getAssembler(), Hi, Lo)) { in emitAbsoluteSymbolDiff() local 148 EmitIntValue(*Diff, Size); in emitAbsoluteSymbolDiff() 156 if (Optional<uint64_t> Diff = absoluteSymbolDiff(getAssembler(), Hi, Lo)) { in emitAbsoluteSymbolDiffAsULEB128() local 157 EmitULEB128IntValue(*Diff); in emitAbsoluteSymbolDiffAsULEB128()
|
| D | MCStreamer.cpp | 1025 const MCExpr *Diff = in emitAbsoluteSymbolDiff() local 1031 EmitValue(Diff, Size); in emitAbsoluteSymbolDiff() 1037 EmitAssignment(SetLabel, Diff); in emitAbsoluteSymbolDiff() 1044 const MCExpr *Diff = in emitAbsoluteSymbolDiffAsULEB128() local 1048 EmitULEB128Value(Diff); in emitAbsoluteSymbolDiffAsULEB128()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
| D | LoopCacheAnalysis.cpp | 173 const SCEVConstant *Diff = dyn_cast<SCEVConstant>( in hasSpacialReuse() local 176 if (Diff == nullptr) { in hasSpacialReuse() 184 bool InSameCacheLine = (Diff->getValue()->getSExtValue() < CLS); in hasSpacialReuse()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
| D | AMDGPUPerfHintAnalysis.cpp | 357 uint64_t Diff = Offset > Reference.Offset ? Offset - Reference.Offset in isLargeStride() local 359 bool Result = Diff > LargeStrideThresh; in isLargeStride()
|
| /third_party/json/test/thirdparty/Fuzzer/ |
| D | FuzzerTraceState.cpp | 131 size_t Diff = NumMutations - FirstN; in WantToHandleOneMoreMutation() local 132 size_t DiffLog = sizeof(long) * 8 - __builtin_clzl((long)Diff); in WantToHandleOneMoreMutation()
|