Lines Matching refs:rawIFD
1192 dng_ifd &rawIFD = *info.fIFD [info.fMainIndex].Get (); in Parse() local
1196 fActiveArea = rawIFD.fActiveArea; in Parse()
1200 fMaskedAreaCount = rawIFD.fMaskedAreaCount; in Parse()
1204 fMaskedArea [j] = rawIFD.fMaskedArea [j]; in Parse()
1209 if (rawIFD.fLinearizationTableCount) in Parse()
1212 uint32 size = SafeUint32Mult (rawIFD.fLinearizationTableCount, in Parse()
1219 stream.SetReadPosition (rawIFD.fLinearizationTableOffset); in Parse()
1221 for (j = 0; j < rawIFD.fLinearizationTableCount; j++) in Parse()
1230 fBlackLevelRepeatRows = rawIFD.fBlackLevelRepeatRows; in Parse()
1231 fBlackLevelRepeatCols = rawIFD.fBlackLevelRepeatCols; in Parse()
1237 fBlackLevel [j] [k] [n] = rawIFD.fBlackLevel [j] [k] [n]; in Parse()
1242 if (rawIFD.fBlackLevelDeltaHCount) in Parse()
1245 uint32 size = SafeUint32Mult (rawIFD.fBlackLevelDeltaHCount, in Parse()
1252 stream.SetReadPosition (rawIFD.fBlackLevelDeltaHOffset); in Parse()
1254 for (j = 0; j < rawIFD.fBlackLevelDeltaHCount; j++) in Parse()
1256 blacks [j] = stream.TagValue_real64 (rawIFD.fBlackLevelDeltaHType); in Parse()
1263 if (rawIFD.fBlackLevelDeltaVCount) in Parse()
1266 uint32 size = SafeUint32Mult (rawIFD.fBlackLevelDeltaVCount, in Parse()
1273 stream.SetReadPosition (rawIFD.fBlackLevelDeltaVOffset); in Parse()
1275 for (j = 0; j < rawIFD.fBlackLevelDeltaVCount; j++) in Parse()
1277 blacks [j] = stream.TagValue_real64 (rawIFD.fBlackLevelDeltaVType); in Parse()
1286 fWhiteLevel [n] = rawIFD.fWhiteLevel [n]; in Parse()