HomeSort by relevance Sort by last modified time
    Searched refs:remainder (Results 226 - 250 of 594) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/include/GL/
wglext.h 647 extern INT64 WINAPI wglSwapBuffersMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
648 extern INT64 WINAPI wglSwapLayerBuffersMscOML (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
649 extern BOOL WINAPI wglWaitForMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
654 typedef INT64 (WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
655 typedef INT64 (WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC) (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
656 typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
    [all...]
  /external/mesa3d/include/GL/
glxext.h 631 extern int glXWaitVideoSyncSGI (int divisor, int remainder, unsigned int *count);
634 typedef int ( * PFNGLXWAITVIDEOSYNCSGIPROC) (int divisor, int remainder, unsigned int *count);
    [all...]
wglext.h 647 extern INT64 WINAPI wglSwapBuffersMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
648 extern INT64 WINAPI wglSwapLayerBuffersMscOML (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
649 extern BOOL WINAPI wglWaitForMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
654 typedef INT64 (WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
655 typedef INT64 (WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC) (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
656 typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/include/GL/
wglext.h 647 extern INT64 WINAPI wglSwapBuffersMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
648 extern INT64 WINAPI wglSwapLayerBuffersMscOML (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
649 extern BOOL WINAPI wglWaitForMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
654 typedef INT64 (WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
655 typedef INT64 (WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC) (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
656 typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
    [all...]
  /external/chromium_org/net/quic/
reliable_quic_stream.cc 294 StringPiece remainder(data.substr(consumed_data.bytes_consumed));
295 queued_data_.push_back(PendingData(remainder.as_string(), proxy_delegate));
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseMultipleFieldsDateAndTimeInputType.cpp 588 || !stepRange.minimum().remainder(static_cast<int>(msPerMinute)).isZero()
589 || !stepRange.step().remainder(static_cast<int>(msPerMinute)).isZero();
  /external/chromium_org/third_party/mesa/src/src/glx/
glxclient.h 116 int64_t divisor, int64_t remainder);
122 int64_t divisor, int64_t remainder, int64_t *ust,
  /external/chromium_org/tools/binary_size/
explain_binary_size_delta.py 243 remainder = (allFiles - new_sources - removed_sources -
245 assert len(remainder) == 0
  /external/clang/test/CodeGen/
libcall-declarations.c 145 double remainder(double, double);
291 F(remainder), F(remainderf), F(remainderl), F(rint), F(rintf),
444 // CHECK-NOERRNO: declare double @remainder(double, double) [[NUW]]
  /external/freetype/src/smooth/
ftgrays.c 317 /* remainder, cast to a specific type. This macro also ensures that */
318 /* the remainder is always positive. */
319 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
322 (remainder) = (type)( (dividend) % (divisor) ); \
323 if ( (remainder) < 0 ) \
326 (remainder) += (type)(divisor); \
337 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
340 (remainder) = (type)( (dividend) - (quotient) * (divisor) ); \
341 if ( (remainder) < 0 ) \
344 (remainder) += (type)(divisor);
    [all...]
  /external/mesa3d/src/glx/
glxclient.h 116 int64_t divisor, int64_t remainder);
122 int64_t divisor, int64_t remainder, int64_t *ust,
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactTileAdapter.java 601 // If we have a remainder, some tiles will have 1 pixel larger width than its height.
611 // The actual width may be 1 pixel larger than this if we have a remainder.
613 final int remainder = width - (imageSize * mColumnCount) - totalWhitespaceInPixels;
618 // Compensate for the remainder
619 + (i < remainder ? 1 : 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
mathcalls.h 175 /* Nearest integer, absolute value, and remainder functions. */
187 /* Floating-point modulo remainder of X/Y. */
207 /* Return the remainder of X/Y. */
288 /* Return the remainder of integer divison X / Y with infinite precision. */
289 __MATHCALL (remainder,, (_Mdouble_ __x, _Mdouble_ __y));
316 /* Compute remainder of X and Y and put in *QUO a value with sign of x/y
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
tgmath.h 340 /* Nearest integer, absolute value, and remainder functions. */
351 /* Floating-point modulo remainder of X/Y. */
366 /* Compute remainder of X and Y and put in *QUO a value with sign of x/y
402 /* Return the remainder of integer divison X / Y with infinite precision. */
403 #define remainder(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, remainder) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 175 /* Nearest integer, absolute value, and remainder functions. */
187 /* Floating-point modulo remainder of X/Y. */
207 /* Return the remainder of X/Y. */
288 /* Return the remainder of integer divison X / Y with infinite precision. */
289 __MATHCALL (remainder,, (_Mdouble_ __x, _Mdouble_ __y));
316 /* Compute remainder of X and Y and put in *QUO a value with sign of x/y
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 340 /* Nearest integer, absolute value, and remainder functions. */
351 /* Floating-point modulo remainder of X/Y. */
366 /* Compute remainder of X and Y and put in *QUO a value with sign of x/y
402 /* Return the remainder of integer divison X / Y with infinite precision. */
403 #define remainder(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, remainder) macro
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
socket_test.cc 765 // Recv remainder
839 int remainder = SEND_BYTES; local
840 while (remainder > 0) {
841 int rtn = ki_recv(new_sock, buffer, remainder, 0);
843 remainder -= rtn;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
glxapi.h 114 int (*WaitVideoSyncSGI)(int divisor, int remainder, unsigned int *count);
realglx.h 179 _real_glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count);
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 120 /// New operations: sqrt, IEEE remainder, C90 fmod, nexttoward.
298 /// IEEE remainder.
299 opStatus remainder(const APFloat &);
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.h 114 int (*WaitVideoSyncSGI)(int divisor, int remainder, unsigned int *count);
realglx.h 179 _real_glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count);
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalArithmeticTest.java 436 BigDecimal result = aNumber.remainder(bNumber);
452 res = a.remainder(b, mc);
458 res = a.remainder(b, mc);
465 res = a.remainder(b, mc);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp     [all...]

Completed in 1668 milliseconds

1 2 3 4 5 6 7 8 91011>>