innr.inc 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library and compiler.
  4. Copyright (c) 1993,98 by the Free Pascal development team
  5. Internal Function/Constant Evaluator numbers
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. const
  13. { Internal functions }
  14. in_lo_word = 1;
  15. in_hi_word = 2;
  16. in_lo_long = 3;
  17. in_hi_long = 4;
  18. in_ord_x = 5;
  19. in_length_string = 6;
  20. in_chr_byte = 7;
  21. in_write_x = 14;
  22. in_writeln_x = 15;
  23. in_read_x = 16;
  24. in_readln_x = 17;
  25. in_concat_x = 18;
  26. in_assigned_x = 19;
  27. in_str_x_string = 20;
  28. in_ofs_x = 21;
  29. in_sizeof_x = 22;
  30. in_typeof_x = 23;
  31. in_val_x = 24;
  32. in_reset_x = 25;
  33. in_rewrite_x = 26;
  34. in_low_x = 27;
  35. in_high_x = 28;
  36. in_seg_x = 29;
  37. in_pred_x = 30;
  38. in_succ_x = 31;
  39. in_reset_typedfile = 32;
  40. in_rewrite_typedfile = 33;
  41. in_settextbuf_file_x = 34;
  42. in_inc_x = 35;
  43. in_dec_x = 36;
  44. in_include_x_y = 37;
  45. in_exclude_x_y = 38;
  46. in_break = 39;
  47. in_continue = 40;
  48. in_assert_x_y = 41;
  49. { Internal constant functions }
  50. in_const_trunc = 100;
  51. in_const_round = 101;
  52. in_const_frac = 102;
  53. in_const_abs = 103;
  54. in_const_int = 104;
  55. in_const_sqr = 105;
  56. in_const_odd = 106;
  57. in_const_ptr = 107;
  58. in_const_swap_word = 108;
  59. in_const_swap_long = 109;
  60. in_const_pi = 110;
  61. in_const_sqrt = 111;
  62. in_const_arctan = 112;
  63. in_const_cos = 113;
  64. in_const_exp = 114;
  65. in_const_ln = 115;
  66. in_const_sin = 116;
  67. {
  68. $Log$
  69. Revision 1.6 1998-10-05 12:32:50 peter
  70. + assert() support
  71. Revision 1.9 1998/10/02 09:24:20 peter
  72. * more constant expression evaluators
  73. Revision 1.4 1998/09/14 10:48:17 peter
  74. * FPC_ names
  75. * Heap manager is now system independent
  76. Revision 1.3 1998/09/01 17:36:19 peter
  77. + internconst
  78. }