HomeSort by relevance Sort by last modified time
    Searched refs:boolVector (Results 1 - 5 of 5) sorted by null

  /external/lzma/CPP/7zip/Archive/7z/
7zOut.cpp 304 void COutArchive::WriteBoolVector(const CBoolVector &boolVector)
308 FOR_VECTOR (i, boolVector)
310 if (boolVector[i])
326 void COutArchive::WritePropBoolVector(Byte id, const CBoolVector &boolVector)
329 WriteNumber(Bv_GetSizeInBytes(boolVector));
330 WriteBoolVector(boolVector);
676 CBoolVector boolVector;
677 boolVector.ClearAndSetSize(db.Files.Size());
684 boolVector[i] = defined;
692 WriteAlignedBoolHeader(boolVector, numDefined, NID::kWinAttrib, 4);
    [all...]
7zOut.h 244 void WriteBoolVector(const CBoolVector &boolVector);
245 void WritePropBoolVector(Byte id, const CBoolVector &boolVector);
7zIn.cpp 1221 CBoolVector boolVector;
1222 ReadBoolVector2(db.Files.Size(), boolVector);
1228 file.AttribDefined = boolVector[i];
1243 // CBoolVector boolVector;
1244 // ReadBoolVector2(db.Files.Size(), boolVector);
1247 CBoolVector boolVector;
1248 ReadBoolVector2(db.Files.Size(), boolVector);
1255 // if (boolVector[i])
1257 file.IsAltStream = !boolVector[i];
    [all...]
  /external/deqp/modules/gles2/functional/
es2fIntegerStateQueryTests.cpp 244 StateQueryMemoryWriteGuard<GLboolean[2]> boolVector;
245 glGetBooleanv(name, boolVector);
247 if (!boolVector.verifyValidity(testCtx))
258 if (boolVector[ndx] == GL_TRUE) // state is non-zero, could be greater than any integer
262 else if (boolVector[ndx] == GL_FALSE) // state is zero
    [all...]
  /external/deqp/modules/gles3/functional/
es3fIntegerStateQueryTests.cpp 276 StateQueryMemoryWriteGuard<GLboolean[2]> boolVector;
277 glGetBooleanv(name, boolVector);
279 if (!boolVector.verifyValidity(testCtx))
290 if (boolVector[ndx] == GL_TRUE) // state is non-zero, could be greater than any integer
294 else if (boolVector[ndx] == GL_FALSE) // state is zero
    [all...]

Completed in 112 milliseconds