annotate agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/DebugVC50ReservedTypes.java @ 1552:c18cbe5936b8

6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
author trims
date Thu, 27 May 2010 19:08:38 -0700
parents a61af66fc99e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 package sun.jvm.hotspot.debugger.win32.coff;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 /** <p> Enumerates the reserved types referenced in the $$TYPES section
a61af66fc99e Initial load
duke
parents:
diff changeset
28 (see {@link
a61af66fc99e Initial load
duke
parents:
diff changeset
29 sun.jvm.hotspot.debugger.win32.coff.DebugVC50SSGlobalTypes}). (Some
a61af66fc99e Initial load
duke
parents:
diff changeset
30 of the descriptions are taken directly from Microsoft's
a61af66fc99e Initial load
duke
parents:
diff changeset
31 documentation and are copyrighted by Microsoft.) </p>
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 <p> These values are interpreted as bit fields with the following
a61af66fc99e Initial load
duke
parents:
diff changeset
34 meanings:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 <table> border="1" width = "50%"
a61af66fc99e Initial load
duke
parents:
diff changeset
36 <tr> <td> 11 <td> 10 - 8 <td> 7 - 4 <td> 3 <td> 2 - 0
a61af66fc99e Initial load
duke
parents:
diff changeset
37 <tr> <td> reserved <td> mode <td> type <td> reserved <td> size
a61af66fc99e Initial load
duke
parents:
diff changeset
38 </table>
a61af66fc99e Initial load
duke
parents:
diff changeset
39 </p>
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 <p>
a61af66fc99e Initial load
duke
parents:
diff changeset
42 <table border="1" width="50%">
a61af66fc99e Initial load
duke
parents:
diff changeset
43 <tr> <td> <i>type</i> <td> Type
a61af66fc99e Initial load
duke
parents:
diff changeset
44 <tr> <td> 0x00 <td> Special
a61af66fc99e Initial load
duke
parents:
diff changeset
45 <tr> <td> 0x01 <td> Signed integral value
a61af66fc99e Initial load
duke
parents:
diff changeset
46 <tr> <td> 0x02 <td> Unsigned integral value
a61af66fc99e Initial load
duke
parents:
diff changeset
47 <tr> <td> 0x03 <td> Boolean
a61af66fc99e Initial load
duke
parents:
diff changeset
48 <tr> <td> 0x04 <td> Real
a61af66fc99e Initial load
duke
parents:
diff changeset
49 <tr> <td> 0x05 <td> Complex
a61af66fc99e Initial load
duke
parents:
diff changeset
50 <tr> <td> 0x06 <td> Special2
a61af66fc99e Initial load
duke
parents:
diff changeset
51 <tr> <td> 0x07 <td> Really int value
a61af66fc99e Initial load
duke
parents:
diff changeset
52 <tr> <td> 0x08 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
53 <tr> <td> 0x09 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
54 <tr> <td> 0x0a <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
55 <tr> <td> 0x0b <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
56 <tr> <td> 0x0c <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
57 <tr> <td> 0x0d <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
58 <tr> <td> 0x0e <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
59 <tr> <td> 0x0f <td> Reserved for CodeView expression evaluator use
a61af66fc99e Initial load
duke
parents:
diff changeset
60 </table>
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 <p>
a61af66fc99e Initial load
duke
parents:
diff changeset
63 <table border="1" width="50%">
a61af66fc99e Initial load
duke
parents:
diff changeset
64 <tr> <td> <i>size</i> <td> Enumerated value for each of the types
a61af66fc99e Initial load
duke
parents:
diff changeset
65 <tr> <td colspan="2"> Type = special:
a61af66fc99e Initial load
duke
parents:
diff changeset
66 <tr> <td> 0x00 <td> No type
a61af66fc99e Initial load
duke
parents:
diff changeset
67 <tr> <td> 0x01 <td> Absolute symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
68 <tr> <td> 0x02 <td> Segment
a61af66fc99e Initial load
duke
parents:
diff changeset
69 <tr> <td> 0x03 <td> Void
a61af66fc99e Initial load
duke
parents:
diff changeset
70 <tr> <td> 0x04 <td> Basic 8-byte currency value
a61af66fc99e Initial load
duke
parents:
diff changeset
71 <tr> <td> 0x05 <td> Near Basic string
a61af66fc99e Initial load
duke
parents:
diff changeset
72 <tr> <td> 0x06 <td> Far Basic string
a61af66fc99e Initial load
duke
parents:
diff changeset
73 <tr> <td> 0x07 <td> Untranslated type from CV 3.x format
a61af66fc99e Initial load
duke
parents:
diff changeset
74 <tr> <td colspan="2"> Type = signed/unsigned integral and Boolean values:
a61af66fc99e Initial load
duke
parents:
diff changeset
75 <tr> <td> 0x00 <td> 1 byte
a61af66fc99e Initial load
duke
parents:
diff changeset
76 <tr> <td> 0x01 <td> 2 byte
a61af66fc99e Initial load
duke
parents:
diff changeset
77 <tr> <td> 0x02 <td> 4 byte
a61af66fc99e Initial load
duke
parents:
diff changeset
78 <tr> <td> 0x03 <td> 8 byte
a61af66fc99e Initial load
duke
parents:
diff changeset
79 <tr> <td> 0x04 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
80 <tr> <td> 0x05 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
81 <tr> <td> 0x06 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
82 <tr> <td> 0x07 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
83 <tr> <td colspan="2"> Type = real and complex:
a61af66fc99e Initial load
duke
parents:
diff changeset
84 <tr> <td> 0x00 <td> 32 bit
a61af66fc99e Initial load
duke
parents:
diff changeset
85 <tr> <td> 0x01 <td> 64 bit
a61af66fc99e Initial load
duke
parents:
diff changeset
86 <tr> <td> 0x02 <td> 80 bit
a61af66fc99e Initial load
duke
parents:
diff changeset
87 <tr> <td> 0x03 <td> 128 bit
a61af66fc99e Initial load
duke
parents:
diff changeset
88 <tr> <td> 0x04 <td> 48 bit
a61af66fc99e Initial load
duke
parents:
diff changeset
89 <tr> <td> 0x05 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
90 <tr> <td> 0x06 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
91 <tr> <td> 0x07 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
92 <tr> <td colspan="2"> Type = special2:
a61af66fc99e Initial load
duke
parents:
diff changeset
93 <tr> <td> 0x00 <td> Bit
a61af66fc99e Initial load
duke
parents:
diff changeset
94 <tr> <td> 0x01 <td> Pascal CHAR
a61af66fc99e Initial load
duke
parents:
diff changeset
95 <tr> <td colspan="2"> Type = Really int:
a61af66fc99e Initial load
duke
parents:
diff changeset
96 <tr> <td> 0x00 <td> Char
a61af66fc99e Initial load
duke
parents:
diff changeset
97 <tr> <td> 0x01 <td> Wide character
a61af66fc99e Initial load
duke
parents:
diff changeset
98 <tr> <td> 0x02 <td> 2 byte signed integer
a61af66fc99e Initial load
duke
parents:
diff changeset
99 <tr> <td> 0x03 <td> 2 byte unsigned integer
a61af66fc99e Initial load
duke
parents:
diff changeset
100 <tr> <td> 0x04 <td> 4 byte signed integer
a61af66fc99e Initial load
duke
parents:
diff changeset
101 <tr> <td> 0x05 <td> 4 byte unsigned integer
a61af66fc99e Initial load
duke
parents:
diff changeset
102 <tr> <td> 0x06 <td> 8 byte signed integer
a61af66fc99e Initial load
duke
parents:
diff changeset
103 <tr> <td> 0x07 <td> 8 byte unsigned integer
a61af66fc99e Initial load
duke
parents:
diff changeset
104 </table>
a61af66fc99e Initial load
duke
parents:
diff changeset
105 </p>
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 <p>
a61af66fc99e Initial load
duke
parents:
diff changeset
108 <table border="1" width="50%">
a61af66fc99e Initial load
duke
parents:
diff changeset
109 <tr> <td> <i> mode </i> <td> Mode
a61af66fc99e Initial load
duke
parents:
diff changeset
110 <tr> <td> 0x00 <td> Direct; not a pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
111 <tr> <td> 0x01 <td> Near pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
112 <tr> <td> 0x02 <td> Far pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
113 <tr> <td> 0x03 <td> Huge pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
114 <tr> <td> 0x04 <td> 32 bit near pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
115 <tr> <td> 0x05 <td> 32 bit far pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
116 <tr> <td> 0x06 <td> 64 bit near pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
117 <tr> <td> 0x07 <td> Reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
118 </table>
a61af66fc99e Initial load
duke
parents:
diff changeset
119 </p>
a61af66fc99e Initial load
duke
parents:
diff changeset
120 */
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 public interface DebugVC50ReservedTypes {
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 //
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Special types
a61af66fc99e Initial load
duke
parents:
diff changeset
126 //
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 /** Uncharacterized type (no type) */
a61af66fc99e Initial load
duke
parents:
diff changeset
129 public static final int T_NOTYPE = 0x0000;
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 /** Absolute symbol */
a61af66fc99e Initial load
duke
parents:
diff changeset
132 public static final int T_ABS = 0x0001;
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 /** Segment type */
a61af66fc99e Initial load
duke
parents:
diff changeset
135 public static final int T_SEGMENT = 0x0002;
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 /** Void */
a61af66fc99e Initial load
duke
parents:
diff changeset
138 public static final int T_VOID = 0x0003;
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 /** Near pointer to void */
a61af66fc99e Initial load
duke
parents:
diff changeset
141 public static final int T_PVOID = 0x0103;
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 /** Far pointer to void */
a61af66fc99e Initial load
duke
parents:
diff changeset
144 public static final int T_PFVOID = 0x0203;
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 /** Huge pointer to void */
a61af66fc99e Initial load
duke
parents:
diff changeset
147 public static final int T_PHVOID = 0x0303;
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 /** 32 bit near pointer to void */
a61af66fc99e Initial load
duke
parents:
diff changeset
150 public static final int T_32PVOID = 0x0403;
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 /** 32 bit far pointer to void */
a61af66fc99e Initial load
duke
parents:
diff changeset
153 public static final int T_32PFVOID = 0x0503;
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 /** 64 bit pointer to void */
a61af66fc99e Initial load
duke
parents:
diff changeset
156 public static final int T_64PVOID = 0x0603;
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 /** Basic 8 byte currency value */
a61af66fc99e Initial load
duke
parents:
diff changeset
159 public static final int T_CURRENCY = 0x0004;
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 /** Near Basic string */
a61af66fc99e Initial load
duke
parents:
diff changeset
162 public static final int T_NBASICSTR = 0x0005;
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 /** Far Basic string */
a61af66fc99e Initial load
duke
parents:
diff changeset
165 public static final int T_FBASICSTR = 0x0006;
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 /** Untranslated type record from CV 3.x format */
a61af66fc99e Initial load
duke
parents:
diff changeset
168 public static final int T_NOTTRANS = 0x0007;
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 /** Bit */
a61af66fc99e Initial load
duke
parents:
diff changeset
171 public static final int T_BIT = 0x0060;
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 /** Pascal CHAR */
a61af66fc99e Initial load
duke
parents:
diff changeset
174 public static final int T_PASCHAR = 0x0061;
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 //
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // Character types
a61af66fc99e Initial load
duke
parents:
diff changeset
178 //
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 /** 8-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
181 public static final int T_CHAR = 0x0010;
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 /** 8-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
184 public static final int T_UCHAR = 0x0020;
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 /** Near pointer to 8-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
187 public static final int T_PCHAR = 0x0110;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 /** Near pointer to 8-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
190 public static final int T_PUCHAR = 0x0120;
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 /** Far pointer to 8-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
193 public static final int T_PFCHAR = 0x0210;
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 /** Far pointer to 8-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
196 public static final int T_PFUCHAR = 0x0220;
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 /** Huge pointer to 8-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
199 public static final int T_PHCHAR = 0x0310;
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 /** Huge pointer to 8-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
202 public static final int T_PHUCHAR = 0x0320;
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 /** 16:32 near pointer to 8-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
205 public static final int T_32PCHAR = 0x0410;
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 /** 16:32 near pointer to 8-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
208 public static final int T_32PUCHAR = 0x0420;
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 /** 16:32 far pointer to 8-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
211 public static final int T_32PFCHAR = 0x0510;
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 /** 16:32 far pointer to 8-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
214 public static final int T_32PFUCHAR = 0x0520;
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 /** 64 bit pointer to 8 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
217 public static final int T_64PCHAR = 0x0610;
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 /** 64 bit pointer to 8 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
220 public static final int T_64PUCHAR = 0x0620;
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 //
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Really a character types
a61af66fc99e Initial load
duke
parents:
diff changeset
224 //
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 /** real char */
a61af66fc99e Initial load
duke
parents:
diff changeset
227 public static final int T_RCHAR = 0x0070;
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 /** near pointer to a real char */
a61af66fc99e Initial load
duke
parents:
diff changeset
230 public static final int T_PRCHAR = 0x0170;
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 /** far pointer to a real char */
a61af66fc99e Initial load
duke
parents:
diff changeset
233 public static final int T_PFRCHAR = 0x0270;
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 /** huge pointer to a real char */
a61af66fc99e Initial load
duke
parents:
diff changeset
236 public static final int T_PHRCHAR = 0x0370;
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 /** 16:32 near pointer to a real char */
a61af66fc99e Initial load
duke
parents:
diff changeset
239 public static final int T_32PRCHAR = 0x0470;
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 /** 16:32 far pointer to a real char */
a61af66fc99e Initial load
duke
parents:
diff changeset
242 public static final int T_32PFRCHAR = 0x0570;
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 /** 64 bit pointer to a real char */
a61af66fc99e Initial load
duke
parents:
diff changeset
245 public static final int T_64PRCHAR = 0x0670;
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 //
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // Wide character types
a61af66fc99e Initial load
duke
parents:
diff changeset
249 //
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 /** wide char */
a61af66fc99e Initial load
duke
parents:
diff changeset
252 public static final int T_WCHAR = 0x0071;
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 /** near pointer to a wide char */
a61af66fc99e Initial load
duke
parents:
diff changeset
255 public static final int T_PWCHAR = 0x0171;
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 /** far pointer to a wide char */
a61af66fc99e Initial load
duke
parents:
diff changeset
258 public static final int T_PFWCHAR = 0x0271;
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 /** huge pointer to a wide char */
a61af66fc99e Initial load
duke
parents:
diff changeset
261 public static final int T_PHWCHAR = 0x0371;
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 /** 16:32 near pointer to a wide char */
a61af66fc99e Initial load
duke
parents:
diff changeset
264 public static final int T_32PWCHAR = 0x0471;
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 /** 16:32 far pointer to a wide char */
a61af66fc99e Initial load
duke
parents:
diff changeset
267 public static final int T_32PFWCHAR = 0x0571;
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 /** 64 bit pointer to a wide char */
a61af66fc99e Initial load
duke
parents:
diff changeset
270 public static final int T_64PWCHAR = 0x0671;
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 //
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // Really 16 bit integer types
a61af66fc99e Initial load
duke
parents:
diff changeset
274 //
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 /** really 16 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
277 public static final int T_INT2 = 0x0072;
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 /** really 16 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
280 public static final int T_UINT2 = 0x0073;
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 /** near pointer to 16 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
283 public static final int T_PINT2 = 0x0172;
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 /** near pointer to 16 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
286 public static final int T_PUINT2 = 0x0173;
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 /** far pointer to 16 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
289 public static final int T_PFINT2 = 0x0272;
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 /** far pointer to 16 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
292 public static final int T_PFUINT2 = 0x0273;
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294 /** huge pointer to 16 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
295 public static final int T_PHINT2 = 0x0372;
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 /** huge pointer to 16 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
298 public static final int T_PHUINT2 = 0x0373;
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 /** 16:32 near pointer to 16 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
301 public static final int T_32PINT2 = 0x0472;
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 /** 16:32 near pointer to 16 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
304 public static final int T_32PUINT2 = 0x0473;
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 /** 16:32 far pointer to 16 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
307 public static final int T_32PFINT2 = 0x0572;
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 /** 16:32 far pointer to 16 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
310 public static final int T_32PFUINT2 = 0x0573;
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 /** 64 bit pointer to 16 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
313 public static final int T_64PINT2 = 0x0672;
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 /** 64 bit pointer to 16 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
316 public static final int T_64PUINT2 = 0x0673;
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 //
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // 16-bit short types
a61af66fc99e Initial load
duke
parents:
diff changeset
320 //
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322 /** 16-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
323 public static final int T_SHORT = 0x0011;
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 /** 16-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
326 public static final int T_USHORT = 0x0021;
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 /** Near pointer to 16-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
329 public static final int T_PSHORT = 0x0111;
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 /** Near pointer to 16-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
332 public static final int T_PUSHORT = 0x0121;
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 /** Far pointer to 16-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
335 public static final int T_PFSHORT = 0x0211;
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 /** Far pointer to 16-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
338 public static final int T_PFUSHORT = 0x0221;
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 /** Huge pointer to 16-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
341 public static final int T_PHSHORT = 0x0311;
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 /** Huge pointer to 16-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
344 public static final int T_PHUSHORT = 0x0321;
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 /** 16:32 near pointer to 16 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
347 public static final int T_32PSHORT = 0x0411;
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 /** 16:32 near pointer to 16 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
350 public static final int T_32PUSHORT = 0x0421;
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 /** 16:32 far pointer to 16 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
353 public static final int T_32PFSHORT = 0x0511;
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 /** 16:32 far pointer to 16 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
356 public static final int T_32PFUSHORT = 0x0521;
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 /** 64 bit pointer to 16 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
359 public static final int T_64PSHORT = 0x0611;
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 /** 64 bit pointer to 16 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
362 public static final int T_64PUSHORT = 0x0621;
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 //
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // Really 32 bit integer types
a61af66fc99e Initial load
duke
parents:
diff changeset
366 //
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 /** really 32 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
369 public static final int T_INT4 = 0x0074;
a61af66fc99e Initial load
duke
parents:
diff changeset
370
a61af66fc99e Initial load
duke
parents:
diff changeset
371 /** really 32 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
372 public static final int T_UINT4 = 0x0075;
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 /** near pointer to 32 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
375 public static final int T_PINT4 = 0x0174;
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 /** near pointer to 32 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
378 public static final int T_PUINT4 = 0x0175;
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380 /** far pointer to 32 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
381 public static final int T_PFINT4 = 0x0274;
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 /** far pointer to 32 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
384 public static final int T_PFUINT4 = 0x0275;
a61af66fc99e Initial load
duke
parents:
diff changeset
385
a61af66fc99e Initial load
duke
parents:
diff changeset
386 /** huge pointer to 32 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
387 public static final int T_PHINT4 = 0x0374;
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 /** huge pointer to 32 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
390 public static final int T_PHUINT4 = 0x0375;
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 /** 16:32 near pointer to 32 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
393 public static final int T_32PINT4 = 0x0474;
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 /** 16:32 near pointer to 32 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
396 public static final int T_32PUINT4 = 0x0475;
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 /** 16:32 far pointer to 32 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
399 public static final int T_32PFINT4 = 0x0574;
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 /** 16:32 far pointer to 32 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
402 public static final int T_32PFUINT4 = 0x0575;
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 /** 64 bit pointer to 32 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
405 public static final int T_64PINT4 = 0x0674;
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 /** 64 bit pointer to 32 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
408 public static final int T_64PUINT4 = 0x0675;
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410 //
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // 32-bit long types
a61af66fc99e Initial load
duke
parents:
diff changeset
412 //
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 /** 32-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
415 public static final int T_LONG = 0x0012;
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417 /** 32-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
418 public static final int T_ULONG = 0x0022;
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 /** Near pointer to 32-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
421 public static final int T_PLONG = 0x0112;
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 /** Near pointer to 32-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
424 public static final int T_PULONG = 0x0122;
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 /** Far pointer to 32-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
427 public static final int T_PFLONG = 0x0212;
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 /** Far pointer to 32-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
430 public static final int T_PFULONG = 0x0222;
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 /** Huge pointer to 32-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
433 public static final int T_PHLONG = 0x0312;
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 /** Huge pointer to 32-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
436 public static final int T_PHULONG = 0x0322;
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 /** 16:32 near pointer to 32 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
439 public static final int T_32PLONG = 0x0412;
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 /** 16:32 near pointer to 32 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
442 public static final int T_32PULONG = 0x0422;
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444 /** 16:32 far pointer to 32 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
445 public static final int T_32PFLONG = 0x0512;
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 /** 16:32 far pointer to 32 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
448 public static final int T_32PFULONG = 0x0522;
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 /** 64 bit pointer to 32 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
451 public static final int T_64PLONG = 0x0612;
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 /** 64 bit pointer to 32 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
454 public static final int T_64PULONG = 0x0622;
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 //
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // Really 64-bit integer types
a61af66fc99e Initial load
duke
parents:
diff changeset
458 //
a61af66fc99e Initial load
duke
parents:
diff changeset
459
a61af66fc99e Initial load
duke
parents:
diff changeset
460 /** 64-bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
461 public static final int T_INT8 = 0x0076;
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 /** 64-bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
464 public static final int T_UINT8 = 0x0077;
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 /** Near pointer to 64-bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
467 public static final int T_PINT8 = 0x0176;
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 /** Near pointer to 64-bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
470 public static final int T_PUINT8 = 0x0177;
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 /** Far pointer to 64-bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
473 public static final int T_PFINT8 = 0x0276;
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 /** Far pointer to 64-bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
476 public static final int T_PFUINT8 = 0x0277;
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 /** Huge pointer to 64-bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
479 public static final int T_PHINT8 = 0x0376;
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 /** Huge pointer to 64-bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
482 public static final int T_PHUINT8 = 0x0377;
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 /** 16:32 near pointer to 64 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
485 public static final int T_32PINT8 = 0x0476;
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 /** 16:32 near pointer to 64 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
488 public static final int T_32PUINT8 = 0x0477;
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490 /** 16:32 far pointer to 64 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
491 public static final int T_32PFINT8 = 0x0576;
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 /** 16:32 far pointer to 64 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
494 public static final int T_32PFUINT8 = 0x0577;
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 /** 64 bit pointer to 64 bit signed int */
a61af66fc99e Initial load
duke
parents:
diff changeset
497 public static final int T_64PINT8 = 0x0676;
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 /** 64 bit pointer to 64 bit unsigned int */
a61af66fc99e Initial load
duke
parents:
diff changeset
500 public static final int T_64PUINT8 = 0x0677;
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 //
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // 64-bit integral types
a61af66fc99e Initial load
duke
parents:
diff changeset
504 //
a61af66fc99e Initial load
duke
parents:
diff changeset
505
a61af66fc99e Initial load
duke
parents:
diff changeset
506 /** 64-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
507 public static final int T_QUAD = 0x0013;
a61af66fc99e Initial load
duke
parents:
diff changeset
508
a61af66fc99e Initial load
duke
parents:
diff changeset
509 /** 64-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
510 public static final int T_UQUAD = 0x0023;
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 /** Near pointer to 64-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
513 public static final int T_PQUAD = 0x0113;
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515 /** Near pointer to 64-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
516 public static final int T_PUQUAD = 0x0123;
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518 /** Far pointer to 64-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
519 public static final int T_PFQUAD = 0x0213;
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 /** Far pointer to 64-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
522 public static final int T_PFUQUAD = 0x0223;
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 /** Huge pointer to 64-bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
525 public static final int T_PHQUAD = 0x0313;
a61af66fc99e Initial load
duke
parents:
diff changeset
526
a61af66fc99e Initial load
duke
parents:
diff changeset
527 /** Huge pointer to 64-bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
528 public static final int T_PHUQUAD = 0x0323;
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530 /** 16:32 near pointer to 64 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
531 public static final int T_32PQUAD = 0x0413;
a61af66fc99e Initial load
duke
parents:
diff changeset
532
a61af66fc99e Initial load
duke
parents:
diff changeset
533 /** 16:32 near pointer to 64 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
534 public static final int T_32PUQUAD = 0x0423;
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 /** 16:32 far pointer to 64 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
537 public static final int T_32PFQUAD = 0x0513;
a61af66fc99e Initial load
duke
parents:
diff changeset
538
a61af66fc99e Initial load
duke
parents:
diff changeset
539 /** 16:32 far pointer to 64 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
540 public static final int T_32PFUQUAD = 0x0523;
a61af66fc99e Initial load
duke
parents:
diff changeset
541
a61af66fc99e Initial load
duke
parents:
diff changeset
542 /** 64 bit pointer to 64 bit signed */
a61af66fc99e Initial load
duke
parents:
diff changeset
543 public static final int T_64PQUAD = 0x0613;
a61af66fc99e Initial load
duke
parents:
diff changeset
544
a61af66fc99e Initial load
duke
parents:
diff changeset
545 /** 64 bit pointer to 64 bit unsigned */
a61af66fc99e Initial load
duke
parents:
diff changeset
546 public static final int T_64PUQUAD = 0x0623;
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 //
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // 32-bit real types
a61af66fc99e Initial load
duke
parents:
diff changeset
550 //
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 /** 32-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
553 public static final int T_REAL32 = 0x0040;
a61af66fc99e Initial load
duke
parents:
diff changeset
554
a61af66fc99e Initial load
duke
parents:
diff changeset
555 /** Near pointer to 32-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
556 public static final int T_PREAL32 = 0x0140;
a61af66fc99e Initial load
duke
parents:
diff changeset
557
a61af66fc99e Initial load
duke
parents:
diff changeset
558 /** Far pointer to 32-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
559 public static final int T_PFREAL32 = 0x0240;
a61af66fc99e Initial load
duke
parents:
diff changeset
560
a61af66fc99e Initial load
duke
parents:
diff changeset
561 /** Huge pointer to 32-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
562 public static final int T_PHREAL32 = 0x0340;
a61af66fc99e Initial load
duke
parents:
diff changeset
563
a61af66fc99e Initial load
duke
parents:
diff changeset
564 /** 16:32 near pointer to 32 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
565 public static final int T_32PREAL32 = 0x0440;
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 /** 16:32 far pointer to 32 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
568 public static final int T_32PFREAL32 = 0x0540;
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 /** 64 pointer to 32 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
571 public static final int T_64PREAL32 = 0x0640;
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 //
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // 48-bit real types
a61af66fc99e Initial load
duke
parents:
diff changeset
575 //
a61af66fc99e Initial load
duke
parents:
diff changeset
576
a61af66fc99e Initial load
duke
parents:
diff changeset
577 /** 48-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
578 public static final int T_REAL48 = 0x0044;
a61af66fc99e Initial load
duke
parents:
diff changeset
579
a61af66fc99e Initial load
duke
parents:
diff changeset
580 /** Near pointer to 48-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
581 public static final int T_PREAL48 = 0x0144;
a61af66fc99e Initial load
duke
parents:
diff changeset
582
a61af66fc99e Initial load
duke
parents:
diff changeset
583 /** Far pointer to 48-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
584 public static final int T_PFREAL48 = 0x0244;
a61af66fc99e Initial load
duke
parents:
diff changeset
585
a61af66fc99e Initial load
duke
parents:
diff changeset
586 /** Huge pointer to 48-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
587 public static final int T_PHREAL48 = 0x0344;
a61af66fc99e Initial load
duke
parents:
diff changeset
588
a61af66fc99e Initial load
duke
parents:
diff changeset
589 /** 16:32 near pointer to 48 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
590 public static final int T_32PREAL48 = 0x0444;
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 /** 16:32 far pointer to 48 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
593 public static final int T_32PFREAL48 = 0x0544;
a61af66fc99e Initial load
duke
parents:
diff changeset
594
a61af66fc99e Initial load
duke
parents:
diff changeset
595 /** 64 bit pointer to 48 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
596 public static final int T_64PREAL48 = 0x0644;
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598 //
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // 64-bit real types
a61af66fc99e Initial load
duke
parents:
diff changeset
600 //
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602 /** 64-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
603 public static final int T_REAL64 = 0x0041;
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 /** Near pointer to 64-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
606 public static final int T_PREAL64 = 0x0141;
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 /** Far pointer to 64-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
609 public static final int T_PFREAL64 = 0x0241;
a61af66fc99e Initial load
duke
parents:
diff changeset
610
a61af66fc99e Initial load
duke
parents:
diff changeset
611 /** Huge pointer to 64-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
612 public static final int T_PHREAL64 = 0x0341;
a61af66fc99e Initial load
duke
parents:
diff changeset
613
a61af66fc99e Initial load
duke
parents:
diff changeset
614 /** 16:32 near pointer to 64 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
615 public static final int T_32PREAL64 = 0x0441;
a61af66fc99e Initial load
duke
parents:
diff changeset
616
a61af66fc99e Initial load
duke
parents:
diff changeset
617 /** 16:32 far pointer to 64 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
618 public static final int T_32PFREAL64 = 0x0541;
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 /** 64 bit pointer to 64 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
621 public static final int T_64PREAL64 = 0x0641;
a61af66fc99e Initial load
duke
parents:
diff changeset
622
a61af66fc99e Initial load
duke
parents:
diff changeset
623 //
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // 80-bit real types
a61af66fc99e Initial load
duke
parents:
diff changeset
625 //
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 /** 80-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
628 public static final int T_REAL80 = 0x0042;
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 /** Near pointer to 80-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
631 public static final int T_PREAL80 = 0x0142;
a61af66fc99e Initial load
duke
parents:
diff changeset
632
a61af66fc99e Initial load
duke
parents:
diff changeset
633 /** Far pointer to 80-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
634 public static final int T_PFREAL80 = 0x0242;
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 /** Huge pointer to 80-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
637 public static final int T_PHREAL80 = 0x0342;
a61af66fc99e Initial load
duke
parents:
diff changeset
638
a61af66fc99e Initial load
duke
parents:
diff changeset
639 /** 16:32 near pointer to 80 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
640 public static final int T_32PREAL80 = 0x0442;
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642 /** 16:32 far pointer to 80 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
643 public static final int T_32PFREAL80 = 0x0542;
a61af66fc99e Initial load
duke
parents:
diff changeset
644
a61af66fc99e Initial load
duke
parents:
diff changeset
645 /** 64 bit pointer to 80 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
646 public static final int T_64PREAL80 = 0x0642;
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 //
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // 128-bit real types
a61af66fc99e Initial load
duke
parents:
diff changeset
650 //
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652 /** 128-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
653 public static final int T_REAL128 = 0x0043;
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 /** Near pointer to 128-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
656 public static final int T_PREAL128 = 0x0143;
a61af66fc99e Initial load
duke
parents:
diff changeset
657
a61af66fc99e Initial load
duke
parents:
diff changeset
658 /** Far pointer to 128-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
659 public static final int T_PFREAL128 = 0x0243;
a61af66fc99e Initial load
duke
parents:
diff changeset
660
a61af66fc99e Initial load
duke
parents:
diff changeset
661 /** Huge pointer to 128-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
662 public static final int T_PHREAL128 = 0x0343;
a61af66fc99e Initial load
duke
parents:
diff changeset
663
a61af66fc99e Initial load
duke
parents:
diff changeset
664 /** 16:32 near pointer to 128 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
665 public static final int T_32PREAL128 = 0x0443;
a61af66fc99e Initial load
duke
parents:
diff changeset
666
a61af66fc99e Initial load
duke
parents:
diff changeset
667 /** 16:32 far pointer to 128 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
668 public static final int T_32PFREAL128 = 0x0543;
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 /** 64 bit pointer to 128 bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
671 public static final int T_64PREAL128 = 0x0643;
a61af66fc99e Initial load
duke
parents:
diff changeset
672
a61af66fc99e Initial load
duke
parents:
diff changeset
673 //
a61af66fc99e Initial load
duke
parents:
diff changeset
674 // 32-bit complex types
a61af66fc99e Initial load
duke
parents:
diff changeset
675 //
a61af66fc99e Initial load
duke
parents:
diff changeset
676
a61af66fc99e Initial load
duke
parents:
diff changeset
677 /** 32-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
678 public static final int T_CPLX32 = 0x0050;
a61af66fc99e Initial load
duke
parents:
diff changeset
679
a61af66fc99e Initial load
duke
parents:
diff changeset
680 /** Near pointer to 32-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
681 public static final int T_PCPLX32 = 0x0150;
a61af66fc99e Initial load
duke
parents:
diff changeset
682
a61af66fc99e Initial load
duke
parents:
diff changeset
683 /** Far pointer to 32-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
684 public static final int T_PFCPLX32 = 0x0250;
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 /** Huge pointer to 32-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
687 public static final int T_PHCPLX32 = 0x0350;
a61af66fc99e Initial load
duke
parents:
diff changeset
688
a61af66fc99e Initial load
duke
parents:
diff changeset
689 /** 16:32 near pointer to 32 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
690 public static final int T_32PCPLX32 = 0x0450;
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 /** 16:32 far pointer to 32 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
693 public static final int T_32PFCPLX32 = 0x0550;
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 /** 64 bit pointer to 32 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
696 public static final int T_64PCPLX32 = 0x0650;
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 //
a61af66fc99e Initial load
duke
parents:
diff changeset
699 // 64-bit complex types
a61af66fc99e Initial load
duke
parents:
diff changeset
700 //
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 /** 64-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
703 public static final int T_CPLX64 = 0x0051;
a61af66fc99e Initial load
duke
parents:
diff changeset
704
a61af66fc99e Initial load
duke
parents:
diff changeset
705 /** Near pointer to 64-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
706 public static final int T_PCPLX64 = 0x0151;
a61af66fc99e Initial load
duke
parents:
diff changeset
707
a61af66fc99e Initial load
duke
parents:
diff changeset
708 /** Far pointer to 64-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
709 public static final int T_PFCPLX64 = 0x0251;
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 /** Huge pointer to 64-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
712 public static final int T_PHCPLX64 = 0x0351;
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 /** 16:32 near pointer to 64 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
715 public static final int T_32PCPLX64 = 0x0451;
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 /** 16:32 far pointer to 64 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
718 public static final int T_32PFCPLX64 = 0x0551;
a61af66fc99e Initial load
duke
parents:
diff changeset
719
a61af66fc99e Initial load
duke
parents:
diff changeset
720 /** 64 bit pointer to 64 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
721 public static final int T_64PCPLX64 = 0x0651;
a61af66fc99e Initial load
duke
parents:
diff changeset
722
a61af66fc99e Initial load
duke
parents:
diff changeset
723 //
a61af66fc99e Initial load
duke
parents:
diff changeset
724 // 80-bit complex types
a61af66fc99e Initial load
duke
parents:
diff changeset
725 //
a61af66fc99e Initial load
duke
parents:
diff changeset
726
a61af66fc99e Initial load
duke
parents:
diff changeset
727 /** 80-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
728 public static final int T_CPLX80 = 0x0052;
a61af66fc99e Initial load
duke
parents:
diff changeset
729
a61af66fc99e Initial load
duke
parents:
diff changeset
730 /** Near pointer to 80-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
731 public static final int T_PCPLX80 = 0x0152;
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733 /** Far pointer to 80-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
734 public static final int T_PFCPLX80 = 0x0252;
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736 /** Huge pointer to 80-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
737 public static final int T_PHCPLX80 = 0x0352;
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739 /** 16:32 near pointer to 80 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
740 public static final int T_32PCPLX80 = 0x0452;
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 /** 16:32 far pointer to 80 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
743 public static final int T_32PFCPLX80 = 0x0552;
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 /** 64 bit pointer to 80 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
746 public static final int T_64PCPLX80 = 0x0652;
a61af66fc99e Initial load
duke
parents:
diff changeset
747
a61af66fc99e Initial load
duke
parents:
diff changeset
748 //
a61af66fc99e Initial load
duke
parents:
diff changeset
749 // 128-bit complex types
a61af66fc99e Initial load
duke
parents:
diff changeset
750 //
a61af66fc99e Initial load
duke
parents:
diff changeset
751
a61af66fc99e Initial load
duke
parents:
diff changeset
752 /** 128-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
753 public static final int T_CPLX128 = 0x0053;
a61af66fc99e Initial load
duke
parents:
diff changeset
754
a61af66fc99e Initial load
duke
parents:
diff changeset
755 /** Near pointer to 128-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
756 public static final int T_PCPLX128 = 0x0153;
a61af66fc99e Initial load
duke
parents:
diff changeset
757
a61af66fc99e Initial load
duke
parents:
diff changeset
758 /** Far pointer to 128-bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
759 public static final int T_PFCPLX128 = 0x0253;
a61af66fc99e Initial load
duke
parents:
diff changeset
760
a61af66fc99e Initial load
duke
parents:
diff changeset
761 /** Huge pointer to 128-bit real */
a61af66fc99e Initial load
duke
parents:
diff changeset
762 public static final int T_PHCPLX128 = 0x0353;
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 /** 16:32 near pointer to 128 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
765 public static final int T_32PCPLX128 = 0x0453;
a61af66fc99e Initial load
duke
parents:
diff changeset
766
a61af66fc99e Initial load
duke
parents:
diff changeset
767 /** 16:32 far pointer to 128 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
768 public static final int T_32PFCPLX128 = 0x0553;
a61af66fc99e Initial load
duke
parents:
diff changeset
769
a61af66fc99e Initial load
duke
parents:
diff changeset
770 /** 64 bit pointer to 128 bit complex */
a61af66fc99e Initial load
duke
parents:
diff changeset
771 public static final int T_64PCPLX128 = 0x0653;
a61af66fc99e Initial load
duke
parents:
diff changeset
772
a61af66fc99e Initial load
duke
parents:
diff changeset
773 //
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // Boolean types
a61af66fc99e Initial load
duke
parents:
diff changeset
775 //
a61af66fc99e Initial load
duke
parents:
diff changeset
776
a61af66fc99e Initial load
duke
parents:
diff changeset
777 /** 8-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
778 public static final int T_BOOL08 = 0x0030;
a61af66fc99e Initial load
duke
parents:
diff changeset
779
a61af66fc99e Initial load
duke
parents:
diff changeset
780 /** 16-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
781 public static final int T_BOOL16 = 0x0031;
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 /** 32-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
784 public static final int T_BOOL32 = 0x0032;
a61af66fc99e Initial load
duke
parents:
diff changeset
785
a61af66fc99e Initial load
duke
parents:
diff changeset
786 /** 64-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
787 public static final int T_BOOL64 = 0x0033;
a61af66fc99e Initial load
duke
parents:
diff changeset
788
a61af66fc99e Initial load
duke
parents:
diff changeset
789 /** Near pointer to 8-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
790 public static final int T_PBOOL08 = 0x0130;
a61af66fc99e Initial load
duke
parents:
diff changeset
791
a61af66fc99e Initial load
duke
parents:
diff changeset
792 /** Near pointer to 16-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
793 public static final int T_PBOOL16 = 0x0131;
a61af66fc99e Initial load
duke
parents:
diff changeset
794
a61af66fc99e Initial load
duke
parents:
diff changeset
795 /** Near pointer to 32-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
796 public static final int T_PBOOL32 = 0x0132;
a61af66fc99e Initial load
duke
parents:
diff changeset
797
a61af66fc99e Initial load
duke
parents:
diff changeset
798 /** Near pointer to 64-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
799 public static final int T_PBOOL64 = 0x0133;
a61af66fc99e Initial load
duke
parents:
diff changeset
800
a61af66fc99e Initial load
duke
parents:
diff changeset
801 /** Far pointer to 8-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
802 public static final int T_PFBOOL08 = 0x0230;
a61af66fc99e Initial load
duke
parents:
diff changeset
803
a61af66fc99e Initial load
duke
parents:
diff changeset
804 /** Far pointer to 16-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
805 public static final int T_PFBOOL16 = 0x0231;
a61af66fc99e Initial load
duke
parents:
diff changeset
806
a61af66fc99e Initial load
duke
parents:
diff changeset
807 /** Far pointer to 32-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
808 public static final int T_PFBOOL32 = 0x0232;
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 /** Far pointer to 64-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
811 public static final int T_PFBOOL64 = 0x0233;
a61af66fc99e Initial load
duke
parents:
diff changeset
812
a61af66fc99e Initial load
duke
parents:
diff changeset
813 /** Huge pointer to 8-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
814 public static final int T_PHBOOL08 = 0x0330;
a61af66fc99e Initial load
duke
parents:
diff changeset
815
a61af66fc99e Initial load
duke
parents:
diff changeset
816 /** Huge pointer to 16-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
817 public static final int T_PHBOOL16 = 0x0331;
a61af66fc99e Initial load
duke
parents:
diff changeset
818
a61af66fc99e Initial load
duke
parents:
diff changeset
819 /** Huge pointer to 32-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
820 public static final int T_PHBOOL32 = 0x0332;
a61af66fc99e Initial load
duke
parents:
diff changeset
821
a61af66fc99e Initial load
duke
parents:
diff changeset
822 /** Huge pointer to 64-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
823 public static final int T_PHBOOL64 = 0x0333;
a61af66fc99e Initial load
duke
parents:
diff changeset
824
a61af66fc99e Initial load
duke
parents:
diff changeset
825 /** 16:32 near pointer to 8 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
826 public static final int T_32PBOOL08 = 0x0430;
a61af66fc99e Initial load
duke
parents:
diff changeset
827
a61af66fc99e Initial load
duke
parents:
diff changeset
828 /** 16:32 far pointer to 8 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
829 public static final int T_32PFBOOL08 = 0x0530;
a61af66fc99e Initial load
duke
parents:
diff changeset
830
a61af66fc99e Initial load
duke
parents:
diff changeset
831 /** 16:32 near pointer to 16 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
832 public static final int T_32PBOOL16 = 0x0431;
a61af66fc99e Initial load
duke
parents:
diff changeset
833
a61af66fc99e Initial load
duke
parents:
diff changeset
834 /** 16:32 far pointer to 16 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
835 public static final int T_32PFBOOL16 = 0x0531;
a61af66fc99e Initial load
duke
parents:
diff changeset
836
a61af66fc99e Initial load
duke
parents:
diff changeset
837 /** 16:32 near pointer to 32 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
838 public static final int T_32PBOOL32 = 0x0432;
a61af66fc99e Initial load
duke
parents:
diff changeset
839
a61af66fc99e Initial load
duke
parents:
diff changeset
840 /** 16:32 far pointer to 32 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
841 public static final int T_32PFBOOL32 = 0x0532;
a61af66fc99e Initial load
duke
parents:
diff changeset
842
a61af66fc99e Initial load
duke
parents:
diff changeset
843 /** 16:32 near pointer to 64-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
844 public static final int T_32PBOOL64 = 0x0433;
a61af66fc99e Initial load
duke
parents:
diff changeset
845
a61af66fc99e Initial load
duke
parents:
diff changeset
846 /** 16:32 far pointer to 64-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
847 public static final int T_32PFBOOL64 = 0x0533;
a61af66fc99e Initial load
duke
parents:
diff changeset
848
a61af66fc99e Initial load
duke
parents:
diff changeset
849 /** 64 bit pointer to 8 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
850 public static final int T_64PBOOL08 = 0x0630;
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 /** 64 bit pointer to 16 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
853 public static final int T_64PBOOL16 = 0x0631;
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855 /** 64 bit pointer to 32 bit boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
856 public static final int T_64PBOOL32 = 0x0632;
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 /** 64 bit pointer to 64-bit Boolean */
a61af66fc99e Initial load
duke
parents:
diff changeset
859 public static final int T_64PBOOL64 = 0x0633;
a61af66fc99e Initial load
duke
parents:
diff changeset
860 }