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

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashFunctions.h 99 unsigned highBits = static_cast<unsigned>(product >> (sizeof(uint64_t) - sizeof(unsigned)));
100 return highBits;
  /external/deqp/framework/delibs/deutil/
deFile.c 316 LONG highBits = (LONG)((offset >> 32) & 0xFFFFFFFFll);
328 return SetFilePointer(file->handle, lowBits, &highBits, method) != INVALID_SET_FILE_POINTER;
333 LONG highBits = 0;
334 LONG lowBits = SetFilePointer(file->handle, 0, &highBits, FILE_CURRENT);
336 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
341 DWORD highBits = 0;
342 DWORD lowBits = GetFileSize(file->handle, &highBits);
344 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
  /external/deqp/modules/gles31/functional/
es31fMultisampleTests.cpp     [all...]

Completed in 263 milliseconds