ut0byte.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*******************************************************************
  2. Byte utilities
  3. (c) 1994, 1995 Innobase Oy
  4. Created 5/11/1994 Heikki Tuuri
  5. ********************************************************************/
  6. #include "ut0byte.h"
  7. #ifdef UNIV_NONINL
  8. #include "ut0byte.ic"
  9. #endif
  10. #include "ut0sort.h"
  11. /* Zero value for a dulint */
  12. dulint ut_dulint_zero  = {0, 0};
  13. /* Maximum value for a dulint */
  14. dulint ut_dulint_max  = {0xFFFFFFFFUL, 0xFFFFFFFFUL};
  15. /****************************************************************
  16. Sort function for dulint arrays. */
  17. void
  18. ut_dulint_sort(dulint* arr, dulint* aux_arr, ulint low, ulint high)
  19. /*===============================================================*/
  20. {
  21. UT_SORT_FUNCTION_BODY(ut_dulint_sort, arr, aux_arr, low, high,
  22. ut_dulint_cmp);
  23. }