aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/TernaryPrimitiveOps.java
blob: e97c16e2aaecadf3ba8fffc4ae1aa60cc78312e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
import org.aspectj.testing.Tester;
import org.aspectj.testing.Tester; 
/*
 * The following ternary operation wasn't working:
 *
 *   byte b = (byte)2;
 *   boolean t = true;
 *   byte next = t ? 1: b;
 */
public class TernaryPrimitiveOps {
    public static void main(String[] args) {
        new TernaryPrimitiveOps().realMain(args);
    }
    public void realMain(String[] args) {
        boolean t = true;
        boolean f = false;

        final int SIZE = 200;

        byte[]   _bytes   = new byte  [SIZE];
        char[]   _chars   = new char  [SIZE];
        double[] _doubles = new double[SIZE];
        int[]    _ints    = new int   [SIZE];
        float[]  _floats  = new float [SIZE];
        long[]   _longs   = new long  [SIZE];
        short[]  _shorts  = new short [SIZE];

        for (int i = 0; i < _bytes.length; i++)   _bytes[i] =    (byte)-1;
        for (int i = 0; i < _chars.length; i++)   _chars[i] =     (char)-1;
        for (int i = 0; i < _doubles.length; i++) _doubles[i] = (double)-1;
        for (int i = 0; i < _ints.length; i++)    _ints[i] =       (int)-1;
        for (int i = 0; i < _floats.length; i++)  _floats[i] =   (float)-1;
        for (int i = 0; i < _longs.length; i++)   _longs[i] =     (long)-1;
        for (int i = 0; i < _shorts.length; i++)  _shorts[i] =   (short)-1;

        int i;
        
        i = 0;
        _bytes[i++] = (byte)(t ?       1 :       0);
        _bytes[i++] =        t ? (byte)1 :       0 ;
        _bytes[i++] =        t ? (byte)1 : (byte)0 ;
        _bytes[i++] =        t ? (byte)1 :  (int)0 ;
        _bytes[i++] = (byte)(f ?       0 :       1);
        _bytes[i++] =        f ? (byte)0 :       1 ;
        _bytes[i++] =        f ? (byte)0 : (byte)1 ;
        _bytes[i++] =        f ? (byte)0 :  (int)1 ;


        i = 0;
        _shorts[i++] = (short)(t ?        1 :        0);
        _shorts[i++] =         t ? (short)1 :        0 ;
        _shorts[i++] =         t ? (short)1 : (short)0 ;
        _shorts[i++] =         t ? (short)1 :  (byte)0 ;
        _shorts[i++] =         t ? (short)1 :   (int)0 ;
        _shorts[i++] =         t ?  (byte)1 :        0 ;
        _shorts[i++] =         t ?  (byte)1 : (short)0 ;
        _shorts[i++] =         t ?  (byte)1 :  (byte)0 ;
        _shorts[i++] =         t ?  (byte)1 :   (int)0 ;
        _shorts[i++] = (short)(f ?        0 :        1);
        _shorts[i++] =         f ? (short)0 :        1 ;
        _shorts[i++] =         f ? (short)0 : (short)1 ;
        _shorts[i++] =         f ? (short)0 :  (byte)1 ;
        _shorts[i++] =         f ? (short)0 :   (int)1 ;
        _shorts[i++] =         f ?  (byte)0 :        1 ;
        _shorts[i++] =         f ?  (byte)0 : (short)1 ;
        _shorts[i++] =         f ?  (byte)0 :  (byte)1 ;
        _shorts[i++] =         f ?  (byte)0 :   (int)1 ;

        i = 0;
        _longs[i++] = t ?         1 :        0;
        _longs[i++] = t ?   (long)1 :        0;
        _longs[i++] = t ?   (long)1 :  (long)0;
        _longs[i++] = t ?   (long)1 :  (byte)0;
        _longs[i++] = t ?   (long)1 : (short)0;
        _longs[i++] = t ?   (long)1 :  (char)0;
        _longs[i++] = t ?   (long)1 :   (int)0;
        _longs[i++] = t ?   (byte)1 :        0;
        _longs[i++] = t ?   (byte)1 :  (long)0;
        _longs[i++] = t ?   (byte)1 :  (byte)0;
        _longs[i++] = t ?   (byte)1 : (short)0;
        _longs[i++] = t ?   (byte)1 :  (char)0;
        _longs[i++] = t ?   (byte)1 :   (int)0;
        _longs[i++] = t ?  (short)1 :        0;
        _longs[i++] = t ?  (short)1 :  (long)0;
        _longs[i++] = t ?  (short)1 :  (byte)0;
        _longs[i++] = t ?  (short)1 : (short)0;
        _longs[i++] = t ?  (short)1 :  (char)0;
        _longs[i++] = t ?  (short)1 :   (int)0;
        _longs[i++] = t ?   (char)1 :        0;
        _longs[i++] = t ?   (char)1 :  (long)0;
        _longs[i++] = t ?   (char)1 :  (byte)0;
        _longs[i++] = t ?   (char)1 : (short)0;
        _longs[i++] = t ?   (char)1 :  (char)0;
        _longs[i++] = t ?   (char)1 :   (int)0;
        _longs[i++] = t ?    (int)1 :        0;
        _longs[i++] = t ?    (int)1 :  (long)0;
        _longs[i++] = t ?    (int)1 :  (byte)0;
        _longs[i++] = t ?    (int)1 : (short)0;
        _longs[i++] = t ?    (int)1 :  (char)0;
        _longs[i++] = t ?    (int)1 :   (int)0;
        _longs[i++] = t ?         1 :        0;
        _longs[i++] = t ?         1 :  (byte)0;
        _longs[i++] = t ?         1 : (short)0;
        _longs[i++] = t ?         1 :  (char)0;
        _longs[i++] = t ?         1 :   (int)0;
        _longs[i++] = t ?   (byte)1 :        0;
        _longs[i++] = t ?  (short)1 :        0;
        _longs[i++] = t ?   (char)1 :        0;
        _longs[i++] = t ?    (int)1 :        0;
        _longs[i++] = f ?         0 :        1;
        _longs[i++] = f ?   (long)0 :        1;
        _longs[i++] = f ?   (long)0 :  (long)1;
        _longs[i++] = f ?   (long)0 :  (byte)1;
        _longs[i++] = f ?   (long)0 : (short)1;
        _longs[i++] = f ?   (long)0 :  (char)1;
        _longs[i++] = f ?   (long)0 :   (int)1;
        _longs[i++] = f ?   (byte)0 :        1;
        _longs[i++] = f ?   (byte)0 :  (long)1;
        _longs[i++] = f ?   (byte)0 :  (byte)1;
        _longs[i++] = f ?   (byte)0 : (short)1;
        _longs[i++] = f ?   (byte)0 :  (char)1;
        _longs[i++] = f ?   (byte)0 :   (int)1;
        _longs[i++] = f ?  (short)0 :        1;
        _longs[i++] = f ?  (short)0 :  (long)1;
        _longs[i++] = f ?  (short)0 :  (byte)1;
        _longs[i++] = f ?  (short)0 : (short)1;
        _longs[i++] = f ?  (short)0 :  (char)1;
        _longs[i++] = f ?  (short)0 :   (int)1;
        _longs[i++] = f ?   (char)0 :        1;
        _longs[i++] = f ?   (char)0 :  (long)1;
        _longs[i++] = f ?   (char)0 :  (byte)1;
        _longs[i++] = f ?   (char)0 : (short)1;
        _longs[i++] = f ?   (char)0 :  (char)1;
        _longs[i++] = f ?   (char)0 :   (int)1;
        _longs[i++] = f ?    (int)0 :        1;
        _longs[i++] = f ?    (int)0 :  (long)1;
        _longs[i++] = f ?    (int)0 :  (byte)1;
        _longs[i++] = f ?    (int)0 : (short)1;
        _longs[i++] = f ?    (int)0 :  (char)1;
        _longs[i++] = f ?    (int)0 :   (int)1;
        _longs[i++] = f ?         0 :        1;
        _longs[i++] = f ?         0 :  (byte)1;
        _longs[i++] = f ?         0 : (short)1;
        _longs[i++] = f ?         0 :  (char)1;
        _longs[i++] = f ?         0 :   (int)1;
        _longs[i++] = f ?   (byte)0 :        1;
        _longs[i++] = f ?  (short)0 :        1;
        _longs[i++] = f ?   (char)0 :        1;
        _longs[i++] = f ?    (int)0 :        1;

        i = 0;
        _ints[i++] = t ?         1 :        0;
        _ints[i++] = t ?    (int)1 :        0;
        _ints[i++] = t ?    (int)1 :   (int)0;
        _ints[i++] = t ?    (int)1 :  (byte)0;
        _ints[i++] = t ?    (int)1 : (short)0;
        _ints[i++] = t ?    (int)1 :  (char)0;
        _ints[i++] = t ?   (byte)1 :        0;
        _ints[i++] = t ?   (byte)1 :  (byte)0;
        _ints[i++] = t ?   (byte)1 : (short)0;
        _ints[i++] = t ?   (byte)1 :  (char)0;
        _ints[i++] = t ?   (byte)1 :   (int)0;
        _ints[i++] = t ?  (short)1 :        0;
        _ints[i++] = t ?  (short)1 :  (byte)0;
        _ints[i++] = t ?  (short)1 : (short)0;
        _ints[i++] = t ?  (short)1 :  (char)0;
        _ints[i++] = t ?  (short)1 :   (int)0;
        _ints[i++] = t ?   (char)1 :        0;
        _ints[i++] = t ?   (char)1 :  (byte)0;
        _ints[i++] = t ?   (char)1 : (short)0;
        _ints[i++] = t ?   (char)1 :  (char)0;
        _ints[i++] = t ?   (char)1 :   (int)0;
        _ints[i++] = t ?    (int)1 :        0;
        _ints[i++] = t ?    (int)1 :  (byte)0;
        _ints[i++] = t ?    (int)1 : (short)0;
        _ints[i++] = t ?    (int)1 :  (char)0;
        _ints[i++] = t ?    (int)1 :   (int)0;
        _ints[i++] = t ?         1 :  (byte)0;
        _ints[i++] = t ?         1 : (short)0;
        _ints[i++] = t ?         1 :  (char)0;
        _ints[i++] = t ?   (byte)1 :        0;
        _ints[i++] = t ?  (short)1 :        0;
        _ints[i++] = t ?   (char)1 :        0;
        _ints[i++] = f ?         0 :        1;
        _ints[i++] = f ?    (int)0 :        1;
        _ints[i++] = f ?    (int)0 :   (int)1;
        _ints[i++] = f ?    (int)0 :  (byte)1;
        _ints[i++] = f ?    (int)0 : (short)1;
        _ints[i++] = f ?    (int)0 :  (char)1;
        _ints[i++] = f ?   (byte)0 :        1;
        _ints[i++] = f ?   (byte)0 :  (byte)1;
        _ints[i++] = f ?   (byte)0 : (short)1;
        _ints[i++] = f ?   (byte)0 :  (char)1;
        _ints[i++] = f ?   (byte)0 :   (int)1;
        _ints[i++] = f ?  (short)0 :        1;
        _ints[i++] = f ?  (short)0 :  (byte)1;
        _ints[i++] = f ?  (short)0 : (short)1;
        _ints[i++] = f ?  (short)0 :  (char)1;
        _ints[i++] = f ?  (short)0 :   (int)1;
        _ints[i++] = f ?   (char)0 :        1;
        _ints[i++] = f ?   (char)0 :  (byte)1;
        _ints[i++] = f ?   (char)0 : (short)1;
        _ints[i++] = f ?   (char)0 :  (char)1;
        _ints[i++] = f ?   (char)0 :   (int)1;
        _ints[i++] = f ?    (int)0 :        1;
        _ints[i++] = f ?    (int)0 :  (byte)1;
        _ints[i++] = f ?    (int)0 : (short)1;
        _ints[i++] = f ?    (int)0 :  (char)1;
        _ints[i++] = f ?    (int)0 :   (int)1;
        _ints[i++] = f ?         0 :  (byte)1;
        _ints[i++] = f ?         0 : (short)1;
        _ints[i++] = f ?         0 :  (char)1;
        _ints[i++] = f ?   (byte)0 :        1;
        _ints[i++] = f ?  (short)0 :        1;
        _ints[i++] = f ?   (char)0 :        1;        

        i = 0;
        _floats[i++] = t ?            1 :          0;
        _floats[i++] = t ?            1 :    (byte)0;
        _floats[i++] = t ?            1 :   (short)0;
        _floats[i++] = t ?            1 :    (char)0;
        _floats[i++] = t ?            1 :     (int)0;
        _floats[i++] = t ?            1 :    (long)0;
        _floats[i++] = t ?            1 :   (float)0;
        _floats[i++] = t ?     (float)1 :          0;
        _floats[i++] = t ?     (float)1 :    (byte)0;
        _floats[i++] = t ?     (float)1 :   (short)0;
        _floats[i++] = t ?     (float)1 :    (char)0;
        _floats[i++] = t ?     (float)1 :     (int)0;
        _floats[i++] = t ?     (float)1 :    (long)0;
        _floats[i++] = t ?     (float)1 :   (float)0;
        _floats[i++] = t ?      (byte)1 :          0;
        _floats[i++] = t ?      (byte)1 :    (byte)0;
        _floats[i++] = t ?      (byte)1 :   (short)0;
        _floats[i++] = t ?      (byte)1 :    (char)0;
        _floats[i++] = t ?      (byte)1 :     (int)0;
        _floats[i++] = t ?      (byte)1 :    (long)0;
        _floats[i++] = t ?      (byte)1 :   (float)0;
        _floats[i++] = t ?     (short)1 :          0;
        _floats[i++] = t ?     (short)1 :    (byte)0;
        _floats[i++] = t ?     (short)1 :   (short)0;
        _floats[i++] = t ?     (short)1 :    (char)0;
        _floats[i++] = t ?     (short)1 :     (int)0;
        _floats[i++] = t ?     (short)1 :    (long)0;
        _floats[i++] = t ?     (short)1 :   (float)0;
        _floats[i++] = t ?      (char)1 :          0;
        _floats[i++] = t ?      (char)1 :    (byte)0;
        _floats[i++] = t ?      (char)1 :   (short)0;
        _floats[i++] = t ?      (char)1 :    (char)0;
        _floats[i++] = t ?      (char)1 :     (int)0;
        _floats[i++] = t ?      (char)1 :    (long)0;
        _floats[i++] = t ?      (char)1 :   (float)0;
        _floats[i++] = t ?       (int)1 :          0;
        _floats[i++] = t ?       (int)1 :    (byte)0;
        _floats[i++] = t ?       (int)1 :   (short)0;
        _floats[i++] = t ?       (int)1 :    (char)0;
        _floats[i++] = t ?       (int)1 :     (int)0;
        _floats[i++] = t ?       (int)1 :    (long)0;
        _floats[i++] = t ?       (int)1 :   (float)0;
        _floats[i++] = t ?      (long)1 :          0;
        _floats[i++] = t ?      (long)1 :    (byte)0;
        _floats[i++] = t ?      (long)1 :   (short)0;
        _floats[i++] = t ?      (long)1 :    (char)0;
        _floats[i++] = t ?      (long)1 :     (int)0;
        _floats[i++] = t ?      (long)1 :    (long)0;
        _floats[i++] = t ?      (long)1 :   (float)0;
        _floats[i++] = f ?            0 :          1;
        _floats[i++] = f ?            0 :    (byte)1;
        _floats[i++] = f ?            0 :   (short)1;
        _floats[i++] = f ?            0 :    (char)1;
        _floats[i++] = f ?            0 :     (int)1;
        _floats[i++] = f ?            0 :    (long)1;
        _floats[i++] = f ?            0 :   (float)1;
        _floats[i++] = f ?     (float)0 :          1;
        _floats[i++] = f ?     (float)0 :    (byte)1;
        _floats[i++] = f ?     (float)0 :   (short)1;
        _floats[i++] = f ?     (float)0 :    (char)1;
        _floats[i++] = f ?     (float)0 :     (int)1;
        _floats[i++] = f ?     (float)0 :    (long)1;
        _floats[i++] = f ?     (float)0 :   (float)1;
        _floats[i++] = f ?      (byte)0 :          1;
        _floats[i++] = f ?      (byte)0 :    (byte)1;
        _floats[i++] = f ?      (byte)0 :   (short)1;
        _floats[i++] = f ?      (byte)0 :    (char)1;
        _floats[i++] = f ?      (byte)0 :     (int)1;
        _floats[i++] = f ?      (byte)0 :    (long)1;
        _floats[i++] = f ?      (byte)0 :   (float)1;
        _floats[i++] = f ?     (short)0 :          1;
        _floats[i++] = f ?     (short)0 :    (byte)1;
        _floats[i++] = f ?     (short)0 :   (short)1;
        _floats[i++] = f ?     (short)0 :    (char)1;
        _floats[i++] = f ?     (short)0 :     (int)1;
        _floats[i++] = f ?     (short)0 :    (long)1;
        _floats[i++] = f ?     (short)0 :   (float)1;
        _floats[i++] = f ?      (char)0 :          1;
        _floats[i++] = f ?      (char)0 :    (byte)1;
        _floats[i++] = f ?      (char)0 :   (short)1;
        _floats[i++] = f ?      (char)0 :    (char)1;
        _floats[i++] = f ?      (char)0 :     (int)1;
        _floats[i++] = f ?      (char)0 :    (long)1;
        _floats[i++] = f ?      (char)0 :   (float)1;
        _floats[i++] = f ?       (int)0 :          1;
        _floats[i++] = f ?       (int)0 :    (byte)1;
        _floats[i++] = f ?       (int)0 :   (short)1;
        _floats[i++] = f ?       (int)0 :    (char)1;
        _floats[i++] = f ?       (int)0 :     (int)1;
        _floats[i++] = f ?       (int)0 :    (long)1;
        _floats[i++] = f ?       (int)0 :   (float)1;
        _floats[i++] = f ?      (long)0 :          1;
        _floats[i++] = f ?      (long)0 :    (byte)1;
        _floats[i++] = f ?      (long)0 :   (short)1;
        _floats[i++] = f ?      (long)0 :    (char)1;
        _floats[i++] = f ?      (long)0 :     (int)1;
        _floats[i++] = f ?      (long)0 :    (long)1;
        _floats[i++] = f ?      (long)0 :   (float)1;

        i = 0;
        _doubles[i++] = t ?            1 :          0;
        _doubles[i++] = t ?            1 :    (byte)0;
        _doubles[i++] = t ?            1 :   (short)0;
        _doubles[i++] = t ?            1 :    (char)0;
        _doubles[i++] = t ?            1 :     (int)0;
        _doubles[i++] = t ?            1 :    (long)0;
        _doubles[i++] = t ?            1 :   (float)0;
        _doubles[i++] = t ?            1 :  (double)0;
        _doubles[i++] = t ?    (double)1 :          0;
        _doubles[i++] = t ?    (double)1 :    (byte)0;
        _doubles[i++] = t ?    (double)1 :   (short)0;
        _doubles[i++] = t ?    (double)1 :    (char)0;
        _doubles[i++] = t ?    (double)1 :     (int)0;
        _doubles[i++] = t ?    (double)1 :    (long)0;
        _doubles[i++] = t ?    (double)1 :   (float)0;
        _doubles[i++] = t ?    (double)1 :  (double)0;
        _doubles[i++] = t ?      (byte)1 :          0;
        _doubles[i++] = t ?      (byte)1 :    (byte)0;
        _doubles[i++] = t ?      (byte)1 :   (short)0;
        _doubles[i++] = t ?      (byte)1 :    (char)0;
        _doubles[i++] = t ?      (byte)1 :     (int)0;
        _doubles[i++] = t ?      (byte)1 :    (long)0;
        _doubles[i++] = t ?      (byte)1 :   (float)0;
        _doubles[i++] = t ?      (byte)1 :  (double)0;
        _doubles[i++] = t ?     (short)1 :          0;
        _doubles[i++] = t ?     (short)1 :    (byte)0;
        _doubles[i++] = t ?     (short)1 :   (short)0;
        _doubles[i++] = t ?     (short)1 :    (char)0;
        _doubles[i++] = t ?     (short)1 :     (int)0;
        _doubles[i++] = t ?     (short)1 :    (long)0;
        _doubles[i++] = t ?     (short)1 :   (float)0;
        _doubles[i++] = t ?     (short)1 :  (double)0;
        _doubles[i++] = t ?      (char)1 :          0;
        _doubles[i++] = t ?      (char)1 :    (byte)0;
        _doubles[i++] = t ?      (char)1 :   (short)0;
        _doubles[i++] = t ?      (char)1 :    (char)0;
        _doubles[i++] = t ?      (char)1 :     (int)0;
        _doubles[i++] = t ?      (char)1 :    (long)0;
        _doubles[i++] = t ?      (char)1 :   (float)0;
        _doubles[i++] = t ?      (char)1 :  (double)0;
        _doubles[i++] = t ?       (int)1 :          0;
        _doubles[i++] = t ?       (int)1 :    (byte)0;
        _doubles[i++] = t ?       (int)1 :   (short)0;
        _doubles[i++] = t ?       (int)1 :    (char)0;
        _doubles[i++] = t ?       (int)1 :     (int)0;
        _doubles[i++] = t ?       (int)1 :    (long)0;
        _doubles[i++] = t ?       (int)1 :   (float)0;
        _doubles[i++] = t ?       (int)1 :  (double)0;
        _doubles[i++] = t ?      (long)1 :          0;
        _doubles[i++] = t ?      (long)1 :    (byte)0;
        _doubles[i++] = t ?      (long)1 :   (short)0;
        _doubles[i++] = t ?      (long)1 :    (char)0;
        _doubles[i++] = t ?      (long)1 :     (int)0;
        _doubles[i++] = t ?      (long)1 :    (long)0;
        _doubles[i++] = t ?      (long)1 :   (float)0;
        _doubles[i++] = t ?      (long)1 :  (double)0;
        _doubles[i++] = t ?     (float)1 :          0;
        _doubles[i++] = t ?     (float)1 :    (byte)0;
        _doubles[i++] = t ?     (float)1 :   (short)0;
        _doubles[i++] = t ?     (float)1 :    (char)0;
        _doubles[i++] = t ?     (float)1 :     (int)0;
        _doubles[i++] = t ?     (float)1 :    (long)0;
        _doubles[i++] = t ?     (float)1 :   (float)0;
        _doubles[i++] = t ?     (float)1 :  (double)0;
        _doubles[i++] = f ?            0 :          1;
        _doubles[i++] = f ?            0 :    (byte)1;
        _doubles[i++] = f ?            0 :   (short)1;
        _doubles[i++] = f ?            0 :    (char)1;
        _doubles[i++] = f ?            0 :     (int)1;
        _doubles[i++] = f ?            0 :    (long)1;
        _doubles[i++] = f ?            0 :   (float)1;
        _doubles[i++] = f ?            0 :  (double)1;
        _doubles[i++] = f ?    (double)0 :          1;
        _doubles[i++] = f ?    (double)0 :    (byte)1;
        _doubles[i++] = f ?    (double)0 :   (short)1;
        _doubles[i++] = f ?    (double)0 :    (char)1;
        _doubles[i++] = f ?    (double)0 :     (int)1;
        _doubles[i++] = f ?    (double)0 :    (long)1;
        _doubles[i++] = f ?    (double)0 :   (float)1;
        _doubles[i++] = f ?    (double)0 :  (double)1;
        _doubles[i++] = f ?      (byte)0 :          1;
        _doubles[i++] = f ?      (byte)0 :    (byte)1;
        _doubles[i++] = f ?      (byte)0 :   (short)1;
        _doubles[i++] = f ?      (byte)0 :    (char)1;
        _doubles[i++] = f ?      (byte)0 :     (int)1;
        _doubles[i++] = f ?      (byte)0 :    (long)1;
        _doubles[i++] = f ?      (byte)0 :   (float)1;
        _doubles[i++] = f ?      (byte)0 :  (double)1;
        _doubles[i++] = f ?     (short)0 :          1;
        _doubles[i++] = f ?     (short)0 :    (byte)1;
        _doubles[i++] = f ?     (short)0 :   (short)1;
        _doubles[i++] = f ?     (short)0 :    (char)1;
        _doubles[i++] = f ?     (short)0 :     (int)1;
        _doubles[i++] = f ?     (short)0 :    (long)1;
        _doubles[i++] = f ?     (short)0 :   (float)1;
        _doubles[i++] = f ?     (short)0 :  (double)1;
        _doubles[i++] = f ?      (char)0 :          1;
        _doubles[i++] = f ?      (char)0 :    (byte)1;
        _doubles[i++] = f ?      (char)0 :   (short)1;
        _doubles[i++] = f ?      (char)0 :    (char)1;
        _doubles[i++] = f ?      (char)0 :     (int)1;
        _doubles[i++] = f ?      (char)0 :    (long)1;
        _doubles[i++] = f ?      (char)0 :   (float)1;
        _doubles[i++] = f ?      (char)0 :  (double)1;
        _doubles[i++] = f ?       (int)0 :          1;
        _doubles[i++] = f ?       (int)0 :    (byte)1;
        _doubles[i++] = f ?       (int)0 :   (short)1;
        _doubles[i++] = f ?       (int)0 :    (char)1;
        _doubles[i++] = f ?       (int)0 :     (int)1;
        _doubles[i++] = f ?       (int)0 :    (long)1;
        _doubles[i++] = f ?       (int)0 :   (float)1;
        _doubles[i++] = f ?       (int)0 :  (double)1;
        _doubles[i++] = f ?      (long)0 :          1;
        _doubles[i++] = f ?      (long)0 :    (byte)1;
        _doubles[i++] = f ?      (long)0 :   (short)1;
        _doubles[i++] = f ?      (long)0 :    (char)1;
        _doubles[i++] = f ?      (long)0 :     (int)1;
        _doubles[i++] = f ?      (long)0 :    (long)1;
        _doubles[i++] = f ?      (long)0 :   (float)1;
        _doubles[i++] = f ?      (long)0 :  (double)1;
        _doubles[i++] = f ?     (float)0 :          1;
        _doubles[i++] = f ?     (float)0 :    (byte)1;
        _doubles[i++] = f ?     (float)0 :   (short)1;
        _doubles[i++] = f ?     (float)0 :    (char)1;
        _doubles[i++] = f ?     (float)0 :     (int)1;
        _doubles[i++] = f ?     (float)0 :    (long)1;
        _doubles[i++] = f ?     (float)0 :   (float)1;
        _doubles[i++] = f ?     (float)0 :  (double)1;        

        for (int _i = 0; _i < _bytes.length; _i++) {
            if (_bytes[_i] != (byte)-1) {
                Tester.check(_bytes[_i] == (byte)1,
                              _bytes[_i] + " != 1");
            }
        }
        for (int _i = 0; _i < _chars.length; _i++) {
            if (_chars[_i] != (char)-1) {
                Tester.check(_chars[_i] == (char)1,
                              _chars[_i] + " != 1");
            }
        }
        for (int _i = 0; _i < _doubles.length; _i++) {
            if (_doubles[_i] != (double)-1) {
                Tester.check(_doubles[_i] == (double)1,
                              _doubles[_i] + " != 1");
            }
        }
        for (int _i = 0; _i < _ints.length; _i++) {
            if (_ints[_i] != (int)-1) {
                Tester.check(_ints[_i] == (int)1,
                              _ints[_i] + " != 1");
            }
        }
        for (int _i = 0; _i < _floats.length; _i++) {
            if (_floats[_i] != (float)-1) {
                Tester.check(_floats[_i] == (float)1,
                              _floats[_i] + " != 1");
            }
        }
        for (int _i = 0; _i < _longs.length; _i++) {
            if (_longs[_i] != (long)-1) {
                Tester.check(_longs[_i] == (long)1,
                              _longs[_i] + " != 1");
            }
        }
        for (int _i = 0; _i < _shorts.length; _i++) {
            if (_shorts[_i] != (short)-1) {
                Tester.check(_shorts[_i] == (short)1,
                              _shorts[_i] + " != 1");
            }
        }

        /*
byte
char
double
int
float
long
short
         */
    }
}