Lines Matching refs:DirIndex
1198 int* DirIndex, in writeExifTagAndData() argument
1202 Put16u(Buffer+ (*DirIndex), tag); // Tag in writeExifTagAndData()
1203 Put16u(Buffer+(*DirIndex) + 2, format); // Format in writeExifTagAndData()
1220 Put32u(Buffer+(*DirIndex) + 4, components); // Components in writeExifTagAndData()
1221 componentsPosition = Buffer+(*DirIndex) + 4; // components # can change for lists in writeExifTagAndData()
1227 strcpy(Buffer+(*DirIndex) + 8, (char*)value); in writeExifTagAndData()
1229 Put32u(Buffer+(*DirIndex) + 8, (*DataWriteIndex)-8); // Pointer in writeExifTagAndData()
1239 memcpy(Buffer+(*DirIndex) + 8, (char*)value, components); in writeExifTagAndData()
1241 Put32u(Buffer+(*DirIndex) + 8, (*DataWriteIndex)-8); // Pointer in writeExifTagAndData()
1247 Put32u(Buffer+(*DirIndex) + 8, value); // Value in writeExifTagAndData()
1249 Put32u(Buffer+(*DirIndex) + 8, (*DataWriteIndex)-8); // Pointer in writeExifTagAndData()
1297 Put32u(Buffer+(*DirIndex) + 8, value); // Value in writeExifTagAndData()
1303 (*DirIndex) += 12; in writeExifTagAndData()
1334 int DirIndex; in create_EXIF_internal() local
1350 DirIndex = DataWriteIndex; in create_EXIF_internal()
1362 Put16u(Buffer+DirIndex, NumEntries); // Number of entries in create_EXIF_internal()
1363 DirIndex += 2; in create_EXIF_internal()
1384 &DirIndex, in create_EXIF_internal()
1407 &DirIndex, in create_EXIF_internal()
1419 &DirIndex, in create_EXIF_internal()
1428 DirExifLink = DirIndex; in create_EXIF_internal()
1435 &DirIndex, in create_EXIF_internal()
1440 Put32u(Buffer+DirIndex, 0); in create_EXIF_internal()
1441 printf("Ending Exif section DirIndex = %d DataWriteIndex %d", DirIndex, DataWriteIndex); in create_EXIF_internal()
1447 DirIndex = DataWriteIndex; in create_EXIF_internal()
1448 printf("Starting GPS section DirIndex = %d", DirIndex); in create_EXIF_internal()
1452 Put16u(Buffer+DirIndex, NumEntries); // Number of entries in create_EXIF_internal()
1453 DirIndex += 2; in create_EXIF_internal()
1473 &DirIndex, in create_EXIF_internal()
1479 Put32u(Buffer+DirIndex, 0); in create_EXIF_internal()
1480 printf("Ending GPS section DirIndex = %d DataWriteIndex %d", DirIndex, DataWriteIndex); in create_EXIF_internal()
1487 printf("Starting Thumbnail section DirIndex = %d", DirIndex); in create_EXIF_internal()
1488 DirIndex = DataWriteIndex; in create_EXIF_internal()
1492 Put16u(Buffer+DirIndex, NumEntries); // Number of entries in create_EXIF_internal()
1493 DirIndex += 2; in create_EXIF_internal()
1502 &DirIndex, in create_EXIF_internal()
1514 &DirIndex, in create_EXIF_internal()
1519 Put32u(Buffer+DirIndex, 0); in create_EXIF_internal()
1520 … printf("Ending Thumbnail section DirIndex = %d DataWriteIndex %d", DirIndex, DataWriteIndex); in create_EXIF_internal()