Home
last modified time | relevance | path

Searched refs:DirIndex (Results 1 – 3 of 3) sorted by relevance

/external/jhead/
Dexif.c1177 int* DirIndex, in writeExifTagAndData() argument
1181 Put16u(Buffer+ (*DirIndex), tag); // Tag in writeExifTagAndData()
1182 Put16u(Buffer+(*DirIndex) + 2, format); // Format in writeExifTagAndData()
1199 Put32u(Buffer+(*DirIndex) + 4, components); // Components in writeExifTagAndData()
1200 componentsPosition = Buffer+(*DirIndex) + 4; // components # can change for lists in writeExifTagAndData()
1206 strcpy(Buffer+(*DirIndex) + 8, (char*)value); in writeExifTagAndData()
1208 Put32u(Buffer+(*DirIndex) + 8, (*DataWriteIndex)-8); // Pointer in writeExifTagAndData()
1218 memcpy(Buffer+(*DirIndex) + 8, (char*)value, components); in writeExifTagAndData()
1220 Put32u(Buffer+(*DirIndex) + 8, (*DataWriteIndex)-8); // Pointer in writeExifTagAndData()
1226 Put32u(Buffer+(*DirIndex) + 8, value); // Value in writeExifTagAndData()
[all …]
/external/llvm/lib/MC/
DMCContext.cpp287 unsigned DirIndex; in GetDwarfFile() local
290 DirIndex = 0; in GetDwarfFile()
292 DirIndex = 0; in GetDwarfFile()
293 for (unsigned End = MCDwarfDirs.size(); DirIndex < End; DirIndex++) { in GetDwarfFile()
294 if (Directory == MCDwarfDirs[DirIndex]) in GetDwarfFile()
297 if (DirIndex >= MCDwarfDirs.size()) { in GetDwarfFile()
306 DirIndex++; in GetDwarfFile()
313 File = new (*this) MCDwarfFile(StringRef(Buf, FileName.size()), DirIndex); in GetDwarfFile()
/external/llvm/include/llvm/MC/
DMCDwarf.h45 unsigned DirIndex; variable
50 : Name(name), DirIndex(dirIndex) {} in MCDwarfFile()
59 unsigned getDirIndex() const { return DirIndex; } in getDirIndex()