builtin.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988, 1992 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5. This file is part of the GNU C++ Library.  This library is free
  6. software; you can redistribute it and/or modify it under the terms of
  7. the GNU Library General Public License as published by the Free
  8. Software Foundation; either version 2 of the License, or (at your
  9. option) any later version.  This library is distributed in the hope
  10. that it will be useful, but WITHOUT ANY WARRANTY; without even the
  11. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  12. PURPOSE.  See the GNU Library General Public License for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with this library; if not, write to the Free Software
  15. Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16. Linking this file statically or dynamically with other modules is making
  17. a combined work based on this file.  Thus, the terms and conditions of
  18. the GNU General Public License cover the whole combination.
  19. In addition, as a special exception, the copyright holders of this file
  20. give you permission to combine this file with free software programs or
  21. libraries that are released under the GNU LGPL and with code included in
  22. the standard release of ns-2 under the Apache 2.0 license or under
  23. otherwise-compatible licenses with advertising requirements (or modified
  24. versions of such code, with unchanged license).  You may copy and
  25. distribute such a system following the terms of the GNU GPL for this
  26. file and the licenses of the other code concerned, provided that you
  27. include the source code of that other code when and as the GNU GPL
  28. requires distribution of source code.
  29. Note that people who make modified versions of this file are not
  30. obligated to grant this special exception for their modified versions;
  31. it is their choice whether to do so.  The GNU General Public License
  32. gives permission to release a modified version without this exception;
  33. this exception also makes it possible to release a modified version
  34. which carries forward this exception.
  35. */
  36. /*
  37.   arithmetic, etc. functions on built in types
  38. */
  39. #ifndef _builtin_h
  40. #ifdef __GNUG__
  41. #pragma interface
  42. #endif
  43. #define _builtin_h 1
  44. #include <stddef.h>
  45. // #include <std.h>
  46. // #include <cmath>
  47. #include <stdio.h>
  48. #ifndef __GNUC__
  49. #define __attribute__(x)
  50. #endif
  51. typedef void (*one_arg_error_handler_t)(const char*);
  52. typedef void (*two_arg_error_handler_t)(const char*, const char*);
  53. long         gcd(long, long);
  54. long         lg(unsigned long); 
  55. double       pow(double, long);
  56. long         pow(long, long);
  57. extern "C" double       start_timer();
  58. extern "C" double       return_elapsed_time(double last_time = 0.0);
  59. char*        dtoa(double x, char cvt = 'g', int width = 0, int prec = 6);
  60. unsigned int hashpjw(const char*);
  61. unsigned int multiplicativehash(int);
  62. unsigned int foldhash(double);
  63. extern void default_one_arg_error_handler(const char*) __attribute__ ((noreturn));
  64. extern void default_two_arg_error_handler(const char*, const char*) __attribute__ ((noreturn));
  65. extern two_arg_error_handler_t lib_error_handler;
  66. extern two_arg_error_handler_t 
  67.        set_lib_error_handler(two_arg_error_handler_t f);
  68. #if !defined(IV)
  69. inline short abs(short arg) 
  70. {
  71.   return (arg < 0)? -arg : arg;
  72. }
  73. inline int sign(long arg)
  74. {
  75.   return (arg == 0) ? 0 : ( (arg > 0) ? 1 : -1 );
  76. }
  77. inline int sign(double arg)
  78. {
  79.   return (arg == 0.0) ? 0 : ( (arg > 0.0) ? 1 : -1 );
  80. }
  81. inline long sqr(long arg)
  82. {
  83.   return arg * arg;
  84. }
  85. #if ! _G_MATH_H_INLINES /* hpux and SCO define this in math.h */
  86. inline double sqr(double arg)
  87. {
  88.   return arg * arg;
  89. }
  90. #endif
  91. inline int even(long arg)
  92. {
  93.   return !(arg & 1);
  94. }
  95. inline int odd(long arg)
  96. {
  97.   return (arg & 1);
  98. }
  99. inline long lcm(long x, long y)
  100. {
  101.   return x / gcd(x, y) * y;
  102. }
  103. inline void (setbit)(long& x, long b)
  104. {
  105.   x |= (1 << b);
  106. }
  107. inline void clearbit(long& x, long b)
  108. {
  109.   x &= ~(1 << b);
  110. }
  111. inline int testbit(long x, long b)
  112. {
  113.   return ((x & (1 << b)) != 0);
  114. }
  115. #endif
  116. #endif