Searched refs:DeltaFormat (Results 1 – 8 of 8) sorted by relevance
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/ |
D | DeltaDescriptor.java | 18 import com.google.archivepatcher.shared.PatchConstants.DeltaFormat; 31 private final PatchConstants.DeltaFormat format; 56 DeltaFormat format, in DeltaDescriptor() 70 public PatchConstants.DeltaFormat getFormat() { in getFormat()
|
D | PatchReader.java | 126 PatchConstants.DeltaFormat.BSDIFF.patchValue, in readPatchApplyPlan() 127 PatchConstants.DeltaFormat.BSDIFF.patchValue, in readPatchApplyPlan() 140 PatchConstants.DeltaFormat.fromPatchValue(deltaFormatByte), in readPatchApplyPlan()
|
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/ |
D | PatchConstants.java | 67 public static enum DeltaFormat { enum in PatchConstants 81 private DeltaFormat(byte patchValue) { in DeltaFormat() method in PatchConstants.DeltaFormat 90 public static DeltaFormat fromPatchValue(byte patchValue) { in fromPatchValue()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | otConverters.py | 321 DeltaFormat = tableDict["DeltaFormat"] 322 assert DeltaFormat in (1, 2, 3), "illegal DeltaFormat" 324 nBits = 1 << DeltaFormat 344 DeltaFormat = tableDict["DeltaFormat"] 346 assert DeltaFormat in (1, 2, 3), "illegal DeltaFormat" 348 nBits = 1 << DeltaFormat
|
/external/freetype/src/otvalid/ |
D | otvcommn.c | 311 FT_UInt StartSize, EndSize, DeltaFormat, count; in otv_Device_validate() local 319 DeltaFormat = FT_NEXT_USHORT( p ); in otv_Device_validate() 321 if ( DeltaFormat == 0x8000U ) in otv_Device_validate() 327 if ( DeltaFormat < 1 || DeltaFormat > 3 ) in otv_Device_validate() 334 OTV_LIMIT_CHECK( ( 1 << DeltaFormat ) * count / 8 ); /* DeltaValue */ in otv_Device_validate()
|
/external/pdfium/core/fpdfapi/font/ |
D | cfx_cttgsubtable.h | 83 TDevice() : StartSize(0), EndSize(0), DeltaFormat(0) {} in TDevice() 87 uint16_t DeltaFormat; member
|
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/ |
D | FileByFileV1DeltaApplierTest.java | 195 dataOut.write(PatchConstants.DeltaFormat.BSDIFF.patchValue); in writePatch()
|
D | PatchReaderTest.java | 83 PatchConstants.DeltaFormat.BSDIFF,
|