Searched refs:fileHeaderLength (Results 1 – 3 of 3) sorted by relevance
309 const fileHeaderLength = 14;311 const headerLength = fileHeaderLength + bitmapInfoLength;
299 const fileHeaderLength = 14;301 const headerLength = fileHeaderLength + bitmapInfoLength;
2469 constexpr size_t fileHeaderLength = sizeof(uint64_t); in IsValidPandaFile() local2470 uint8_t fileHeader[fileHeaderLength] = { 0 }; in IsValidPandaFile()2473 if (fileSize < fileHeaderLength) { in IsValidPandaFile()2478 abcStream.read(reinterpret_cast<char*>(fileHeader), fileHeaderLength); in IsValidPandaFile()2480 return IsValidScriptBuffer(fileHeader, fileHeaderLength); in IsValidPandaFile()