HomeSort by relevance Sort by last modified time
    Searched defs:highBits (Results 1 - 2 of 2) sorted by null

  /external/deqp/framework/delibs/deutil/
deFile.c 317 LONG highBits = (LONG)((offset >> 32) & 0xFFFFFFFFll);
329 return SetFilePointer(file->handle, lowBits, &highBits, method) != INVALID_SET_FILE_POINTER;
334 LONG highBits = 0;
335 LONG lowBits = SetFilePointer(file->handle, 0, &highBits, FILE_CURRENT);
337 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
342 DWORD highBits = 0;
343 DWORD lowBits = GetFileSize(file->handle, &highBits);
345 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
  /external/deqp/modules/gles31/functional/
es31fMultisampleTests.cpp     [all...]

Completed in 162 milliseconds