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

  /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...]
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 719 int highBits = (int) (bits >>> 32);
720 hx = highBits & 0x7fffffff;
721 xsb = (highBits >>> 31) & 1;
817 int highBits = (int) (bits >>> 32);
819 int hx = highBits & 0x7fffffff; // caution: should be unsigned!
820 xsb = highBits & 0x80000000; /* sign bit of x */
    [all...]

Completed in 222 milliseconds