innr.inc 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. {$ifdef VER0_99_5}
  22. in_inc_byte = 8;
  23. in_inc_word = 9;
  24. in_inc_dword = 10;
  25. in_dec_byte = 11;
  26. in_dec_word = 12;
  27. in_dec_dword = 13;
  28. {$endif}
  29. in_write_x = 14;
  30. in_writeln_x = 15;
  31. in_read_x = 16;
  32. in_readln_x = 17;
  33. in_concat_x = 18;
  34. in_assigned_x = 19;
  35. in_str_x_string = 20;
  36. in_ofs_x = 21;
  37. in_sizeof_x = 22;
  38. in_typeof_x = 23;
  39. in_val_x = 24;
  40. in_reset_x = 25;
  41. in_rewrite_x = 26;
  42. in_low_x = 27;
  43. in_high_x = 28;
  44. in_seg_x = 29;
  45. in_pred_x = 30;
  46. in_succ_x = 31;
  47. in_reset_typedfile = 32;
  48. in_rewrite_typedfile = 33;
  49. in_settextbuf_file_x = 34;
  50. in_inc_x = 35;
  51. in_dec_x = 36;
  52. in_include_x_y = 37;
  53. in_exclude_x_y = 38;
  54. in_break = 39;
  55. in_continue = 40;
  56. in_assert_x = 41;
  57. { Internal constant functions }
  58. in_const_trunc = 100;
  59. in_const_round = 101;
  60. in_const_frac = 102;
  61. in_const_abs = 103;
  62. in_const_int = 104;
  63. in_const_sqr = 105;
  64. in_const_odd = 106;
  65. in_const_ptr = 107;
  66. in_const_swap_word = 108;
  67. in_const_swap_long = 109;
  68. {
  69. $Log$
  70. Revision 1.7 1998-09-01 17:39:46 peter
  71. + internal constant functions
  72. }