1 /*
2  Copyright (c) 2010, 2021, Oracle and/or its affiliates.
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License, version 2.0,
6  as published by the Free Software Foundation.
7 
8  This program is also distributed with certain software (including
9  but not limited to OpenSSL) that is licensed under separate terms,
10  as designated in a particular file or component or in included license
11  documentation.  The authors of MySQL hereby grant you an additional
12  permission to link the program and your derivative works with the
13  separately licensed software that they have included with MySQL.
14 
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License, version 2.0, for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with this program; if not, write to the Free Software
22  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
23 */
24 /*
25  * MyJapi.java
26  */
27 
28 package myjapi;
29 
30 //import java.math.BigInteger;
31 //import java.math.BigDecimal;
32 import java.nio.ByteBuffer;
33 
34 public class MyJapi {
35 
36     // ----------------------------------------------------------------------
37     // Mapping of void result/parameters
38     // ----------------------------------------------------------------------
39 
f0()40     static public native void f0();
41 
42     // ----------------------------------------------------------------------
43     // String mappings of [const] char* result/parameters
44     // ----------------------------------------------------------------------
45 
s012s()46     static public native String s012s();
s112s(String p0)47     static public native void s112s(String p0);
s152s(String p0)48     static public native void s152s(String p0);
49 
50     // mapping as result is supported, for s112(s032()) is in C++
s032s()51     static public native String s032s();
52     // mapping as parameters is not supported, for s132(s012()) is not in C++
53     //static public native void s132s(String p0);
54     //static public native void s172s(String p0);
55 
56     // ----------------------------------------------------------------------
57     // ByteBuffer<size=0> mappings of void/char pointers
58     // ----------------------------------------------------------------------
59 
s010bb0()60     static public native ByteBuffer s010bb0();
s012bb0()61     static public native ByteBuffer s012bb0();
s030bb0()62     static public native ByteBuffer s030bb0();
s032bb0()63     static public native ByteBuffer s032bb0();
64 
s110bb0(ByteBuffer p0)65     static public native void s110bb0(ByteBuffer p0);
s112bb0(ByteBuffer p0)66     static public native void s112bb0(ByteBuffer p0);
s130bb0(ByteBuffer p0)67     static public native void s130bb0(ByteBuffer p0);
s132bb0(ByteBuffer p0)68     static public native void s132bb0(ByteBuffer p0);
s150bb0(ByteBuffer p0)69     static public native void s150bb0(ByteBuffer p0);
s152bb0(ByteBuffer p0)70     static public native void s152bb0(ByteBuffer p0);
s170bb0(ByteBuffer p0)71     static public native void s170bb0(ByteBuffer p0);
s172bb0(ByteBuffer p0)72     static public native void s172bb0(ByteBuffer p0);
73 
74     // ----------------------------------------------------------------------
75     // ByteBuffer<size=1> mappings of void/char pointers
76     // ----------------------------------------------------------------------
77 
s010bb1()78     static public native ByteBuffer s010bb1();
s012bb1()79     static public native ByteBuffer s012bb1();
s030bb1()80     static public native ByteBuffer s030bb1();
s032bb1()81     static public native ByteBuffer s032bb1();
82 
s110bb1(ByteBuffer p0)83     static public native void s110bb1(ByteBuffer p0);
s112bb1(ByteBuffer p0)84     static public native void s112bb1(ByteBuffer p0);
s130bb1(ByteBuffer p0)85     static public native void s130bb1(ByteBuffer p0);
s132bb1(ByteBuffer p0)86     static public native void s132bb1(ByteBuffer p0);
s150bb1(ByteBuffer p0)87     static public native void s150bb1(ByteBuffer p0);
s152bb1(ByteBuffer p0)88     static public native void s152bb1(ByteBuffer p0);
s170bb1(ByteBuffer p0)89     static public native void s170bb1(ByteBuffer p0);
s172bb1(ByteBuffer p0)90     static public native void s172bb1(ByteBuffer p0);
91 
92     // ----------------------------------------------------------------------
93     // ByteBuffer<size=0> mappings of NULL-allowed void/char pointers
94     // ----------------------------------------------------------------------
95 
s210bb()96     static public native ByteBuffer s210bb();
s212bb()97     static public native ByteBuffer s212bb();
s230bb()98     static public native ByteBuffer s230bb();
s232bb()99     static public native ByteBuffer s232bb();
100 
s310bb(ByteBuffer p0)101     static public native void s310bb(ByteBuffer p0);
s312bb(ByteBuffer p0)102     static public native void s312bb(ByteBuffer p0);
s330bb(ByteBuffer p0)103     static public native void s330bb(ByteBuffer p0);
s332bb(ByteBuffer p0)104     static public native void s332bb(ByteBuffer p0);
s350bb(ByteBuffer p0)105     static public native void s350bb(ByteBuffer p0);
s352bb(ByteBuffer p0)106     static public native void s352bb(ByteBuffer p0);
s370bb(ByteBuffer p0)107     static public native void s370bb(ByteBuffer p0);
s372bb(ByteBuffer p0)108     static public native void s372bb(ByteBuffer p0);
109 
110     // ----------------------------------------------------------------------
111     // Default mappings of primitive result/parameter types
112     // ----------------------------------------------------------------------
113 
f019()114     static public native int f019();
f020()115     static public native int f020();
f025()116     static public native double f025();
117 
f111(boolean p0)118     static public native void f111(boolean p0);
f112(byte p0)119     static public native void f112(byte p0);
f113(byte p0)120     static public native void f113(byte p0);
f114(byte p0)121     static public native void f114(byte p0);
f115(short p0)122     static public native void f115(short p0);
f116(short p0)123     static public native void f116(short p0);
f117(int p0)124     static public native void f117(int p0);
f118(int p0)125     static public native void f118(int p0);
f119(int p0)126     static public native void f119(int p0);
f120(int p0)127     static public native void f120(int p0);
f121(long p0)128     static public native void f121(long p0);
f122(long p0)129     static public native void f122(long p0);
f123(float p0)130     static public native void f123(float p0);
f124(double p0)131     static public native void f124(double p0);
f125(double p0)132     static public native void f125(double p0);
133 
f031()134     static public native boolean f031();
f032()135     static public native byte f032();
f033()136     static public native byte f033();
f034()137     static public native byte f034();
f035()138     static public native short f035();
f036()139     static public native short f036();
f037()140     static public native int f037();
f038()141     static public native int f038();
f039()142     static public native int f039();
f040()143     static public native int f040();
f041()144     static public native long f041();
f042()145     static public native long f042();
f043()146     static public native float f043();
f044()147     static public native double f044();
f045()148     static public native double f045();
149 
f131(boolean p0)150     static public native void f131(boolean p0);
f132(byte p0)151     static public native void f132(byte p0);
f133(byte p0)152     static public native void f133(byte p0);
f134(byte p0)153     static public native void f134(byte p0);
f135(short p0)154     static public native void f135(short p0);
f136(short p0)155     static public native void f136(short p0);
f137(int p0)156     static public native void f137(int p0);
f138(int p0)157     static public native void f138(int p0);
f139(int p0)158     static public native void f139(int p0);
f140(int p0)159     static public native void f140(int p0);
f141(long p0)160     static public native void f141(long p0);
f142(long p0)161     static public native void f142(long p0);
f143(float p0)162     static public native void f143(float p0);
f144(double p0)163     static public native void f144(double p0);
f145(double p0)164     static public native void f145(double p0);
165 
166     // ----------------------------------------------------------------------
167     // ByteBuffer mappings of references of primitive result/parameter types
168     // ----------------------------------------------------------------------
169 
f211bb()170     static public native ByteBuffer f211bb();
f212bb()171     static public native ByteBuffer f212bb();
f213bb()172     static public native ByteBuffer f213bb();
f214bb()173     static public native ByteBuffer f214bb();
f215bb()174     static public native ByteBuffer f215bb();
f216bb()175     static public native ByteBuffer f216bb();
f217bb()176     static public native ByteBuffer f217bb();
f218bb()177     static public native ByteBuffer f218bb();
f219bb()178     static public native ByteBuffer f219bb();
f220bb()179     static public native ByteBuffer f220bb();
f221bb()180     static public native ByteBuffer f221bb();
f222bb()181     static public native ByteBuffer f222bb();
f223bb()182     static public native ByteBuffer f223bb();
f224bb()183     static public native ByteBuffer f224bb();
f225bb()184     static public native ByteBuffer f225bb();
185 
f311bb(ByteBuffer p0)186     static public native void f311bb(ByteBuffer p0);
f312bb(ByteBuffer p0)187     static public native void f312bb(ByteBuffer p0);
f313bb(ByteBuffer p0)188     static public native void f313bb(ByteBuffer p0);
f314bb(ByteBuffer p0)189     static public native void f314bb(ByteBuffer p0);
f315bb(ByteBuffer p0)190     static public native void f315bb(ByteBuffer p0);
f316bb(ByteBuffer p0)191     static public native void f316bb(ByteBuffer p0);
f317bb(ByteBuffer p0)192     static public native void f317bb(ByteBuffer p0);
f318bb(ByteBuffer p0)193     static public native void f318bb(ByteBuffer p0);
f319bb(ByteBuffer p0)194     static public native void f319bb(ByteBuffer p0);
f320bb(ByteBuffer p0)195     static public native void f320bb(ByteBuffer p0);
f321bb(ByteBuffer p0)196     static public native void f321bb(ByteBuffer p0);
f322bb(ByteBuffer p0)197     static public native void f322bb(ByteBuffer p0);
f323bb(ByteBuffer p0)198     static public native void f323bb(ByteBuffer p0);
f324bb(ByteBuffer p0)199     static public native void f324bb(ByteBuffer p0);
f325bb(ByteBuffer p0)200     static public native void f325bb(ByteBuffer p0);
201 
f231bb()202     static public native ByteBuffer f231bb();
f232bb()203     static public native ByteBuffer f232bb();
f233bb()204     static public native ByteBuffer f233bb();
f234bb()205     static public native ByteBuffer f234bb();
f235bb()206     static public native ByteBuffer f235bb();
f236bb()207     static public native ByteBuffer f236bb();
f237bb()208     static public native ByteBuffer f237bb();
f238bb()209     static public native ByteBuffer f238bb();
f239bb()210     static public native ByteBuffer f239bb();
f240bb()211     static public native ByteBuffer f240bb();
f241bb()212     static public native ByteBuffer f241bb();
f242bb()213     static public native ByteBuffer f242bb();
f243bb()214     static public native ByteBuffer f243bb();
f244bb()215     static public native ByteBuffer f244bb();
f245bb()216     static public native ByteBuffer f245bb();
217 
f331bb(ByteBuffer p0)218     static public native void f331bb(ByteBuffer p0);
f332bb(ByteBuffer p0)219     static public native void f332bb(ByteBuffer p0);
f333bb(ByteBuffer p0)220     static public native void f333bb(ByteBuffer p0);
f334bb(ByteBuffer p0)221     static public native void f334bb(ByteBuffer p0);
f335bb(ByteBuffer p0)222     static public native void f335bb(ByteBuffer p0);
f336bb(ByteBuffer p0)223     static public native void f336bb(ByteBuffer p0);
f337bb(ByteBuffer p0)224     static public native void f337bb(ByteBuffer p0);
f338bb(ByteBuffer p0)225     static public native void f338bb(ByteBuffer p0);
f339bb(ByteBuffer p0)226     static public native void f339bb(ByteBuffer p0);
f340bb(ByteBuffer p0)227     static public native void f340bb(ByteBuffer p0);
f341bb(ByteBuffer p0)228     static public native void f341bb(ByteBuffer p0);
f342bb(ByteBuffer p0)229     static public native void f342bb(ByteBuffer p0);
f343bb(ByteBuffer p0)230     static public native void f343bb(ByteBuffer p0);
f344bb(ByteBuffer p0)231     static public native void f344bb(ByteBuffer p0);
f345bb(ByteBuffer p0)232     static public native void f345bb(ByteBuffer p0);
233 
234     // ----------------------------------------------------------------------
235     // Value-Copy mappings of references of primitive result/parameter types
236     // ----------------------------------------------------------------------
237 
f211v()238     static public native boolean f211v();
f212v()239     static public native byte f212v();
f213v()240     static public native byte f213v();
f214v()241     static public native byte f214v();
f215v()242     static public native short f215v();
f216v()243     static public native short f216v();
f217v()244     static public native int f217v();
f218v()245     static public native int f218v();
f221v()246     static public native long f221v();
f222v()247     static public native long f222v();
f223v()248     static public native float f223v();
f224v()249     static public native double f224v();
250 
f311v(boolean p0)251     static public native void f311v(boolean p0);
f312v(byte p0)252     static public native void f312v(byte p0);
f313v(byte p0)253     static public native void f313v(byte p0);
f314v(byte p0)254     static public native void f314v(byte p0);
f315v(short p0)255     static public native void f315v(short p0);
f316v(short p0)256     static public native void f316v(short p0);
f317v(int p0)257     static public native void f317v(int p0);
f318v(int p0)258     static public native void f318v(int p0);
f321v(long p0)259     static public native void f321v(long p0);
f322v(long p0)260     static public native void f322v(long p0);
f323v(float p0)261     static public native void f323v(float p0);
f324v(double p0)262     static public native void f324v(double p0);
263 
f231v()264     static public native boolean f231v();
f232v()265     static public native byte f232v();
f233v()266     static public native byte f233v();
f234v()267     static public native byte f234v();
f235v()268     static public native short f235v();
f236v()269     static public native short f236v();
f237v()270     static public native int f237v();
f238v()271     static public native int f238v();
f241v()272     static public native long f241v();
f242v()273     static public native long f242v();
f243v()274     static public native float f243v();
f244v()275     static public native double f244v();
276 
f331v(boolean[] p0)277     static public native void f331v(boolean[] p0);
f332v(byte[] p0)278     static public native void f332v(byte[] p0);
f333v(byte[] p0)279     static public native void f333v(byte[] p0);
f334v(byte[] p0)280     static public native void f334v(byte[] p0);
f335v(short[] p0)281     static public native void f335v(short[] p0);
f336v(short[] p0)282     static public native void f336v(short[] p0);
f337v(int[] p0)283     static public native void f337v(int[] p0);
f338v(int[] p0)284     static public native void f338v(int[] p0);
f341v(long[] p0)285     static public native void f341v(long[] p0);
f342v(long[] p0)286     static public native void f342v(long[] p0);
f343v(float[] p0)287     static public native void f343v(float[] p0);
f344v(double[] p0)288     static public native void f344v(double[] p0);
289 
290     // ----------------------------------------------------------------------
291     // ByteBuffer<size=0> mappings of pointers to primitive types
292     // ----------------------------------------------------------------------
293 
f411bb0()294     static public native ByteBuffer f411bb0();
f412bb0()295     static public native ByteBuffer f412bb0();
f413bb0()296     static public native ByteBuffer f413bb0();
f414bb0()297     static public native ByteBuffer f414bb0();
f415bb0()298     static public native ByteBuffer f415bb0();
f416bb0()299     static public native ByteBuffer f416bb0();
f417bb0()300     static public native ByteBuffer f417bb0();
f418bb0()301     static public native ByteBuffer f418bb0();
f421bb0()302     static public native ByteBuffer f421bb0();
f422bb0()303     static public native ByteBuffer f422bb0();
f423bb0()304     static public native ByteBuffer f423bb0();
f424bb0()305     static public native ByteBuffer f424bb0();
306 
f431bb0()307     static public native ByteBuffer f431bb0();
f432bb0()308     static public native ByteBuffer f432bb0();
f433bb0()309     static public native ByteBuffer f433bb0();
f434bb0()310     static public native ByteBuffer f434bb0();
f435bb0()311     static public native ByteBuffer f435bb0();
f436bb0()312     static public native ByteBuffer f436bb0();
f437bb0()313     static public native ByteBuffer f437bb0();
f438bb0()314     static public native ByteBuffer f438bb0();
f441bb0()315     static public native ByteBuffer f441bb0();
f442bb0()316     static public native ByteBuffer f442bb0();
f443bb0()317     static public native ByteBuffer f443bb0();
f444bb0()318     static public native ByteBuffer f444bb0();
319 
320 
321 
f511bb0(ByteBuffer p0)322     static public native void f511bb0(ByteBuffer p0);
f512bb0(ByteBuffer p0)323     static public native void f512bb0(ByteBuffer p0);
f513bb0(ByteBuffer p0)324     static public native void f513bb0(ByteBuffer p0);
f514bb0(ByteBuffer p0)325     static public native void f514bb0(ByteBuffer p0);
f515bb0(ByteBuffer p0)326     static public native void f515bb0(ByteBuffer p0);
f516bb0(ByteBuffer p0)327     static public native void f516bb0(ByteBuffer p0);
f517bb0(ByteBuffer p0)328     static public native void f517bb0(ByteBuffer p0);
f518bb0(ByteBuffer p0)329     static public native void f518bb0(ByteBuffer p0);
f521bb0(ByteBuffer p0)330     static public native void f521bb0(ByteBuffer p0);
f522bb0(ByteBuffer p0)331     static public native void f522bb0(ByteBuffer p0);
f523bb0(ByteBuffer p0)332     static public native void f523bb0(ByteBuffer p0);
f524bb0(ByteBuffer p0)333     static public native void f524bb0(ByteBuffer p0);
334 
f531bb0(ByteBuffer p0)335     static public native void f531bb0(ByteBuffer p0);
f532bb0(ByteBuffer p0)336     static public native void f532bb0(ByteBuffer p0);
f533bb0(ByteBuffer p0)337     static public native void f533bb0(ByteBuffer p0);
f534bb0(ByteBuffer p0)338     static public native void f534bb0(ByteBuffer p0);
f535bb0(ByteBuffer p0)339     static public native void f535bb0(ByteBuffer p0);
f536bb0(ByteBuffer p0)340     static public native void f536bb0(ByteBuffer p0);
f537bb0(ByteBuffer p0)341     static public native void f537bb0(ByteBuffer p0);
f538bb0(ByteBuffer p0)342     static public native void f538bb0(ByteBuffer p0);
f541bb0(ByteBuffer p0)343     static public native void f541bb0(ByteBuffer p0);
f542bb0(ByteBuffer p0)344     static public native void f542bb0(ByteBuffer p0);
f543bb0(ByteBuffer p0)345     static public native void f543bb0(ByteBuffer p0);
f544bb0(ByteBuffer p0)346     static public native void f544bb0(ByteBuffer p0);
347 
f551bb0(ByteBuffer p0)348     static public native void f551bb0(ByteBuffer p0);
f552bb0(ByteBuffer p0)349     static public native void f552bb0(ByteBuffer p0);
f553bb0(ByteBuffer p0)350     static public native void f553bb0(ByteBuffer p0);
f554bb0(ByteBuffer p0)351     static public native void f554bb0(ByteBuffer p0);
f555bb0(ByteBuffer p0)352     static public native void f555bb0(ByteBuffer p0);
f556bb0(ByteBuffer p0)353     static public native void f556bb0(ByteBuffer p0);
f557bb0(ByteBuffer p0)354     static public native void f557bb0(ByteBuffer p0);
f558bb0(ByteBuffer p0)355     static public native void f558bb0(ByteBuffer p0);
f561bb0(ByteBuffer p0)356     static public native void f561bb0(ByteBuffer p0);
f562bb0(ByteBuffer p0)357     static public native void f562bb0(ByteBuffer p0);
f563bb0(ByteBuffer p0)358     static public native void f563bb0(ByteBuffer p0);
f564bb0(ByteBuffer p0)359     static public native void f564bb0(ByteBuffer p0);
360 
f571bb0(ByteBuffer p0)361     static public native void f571bb0(ByteBuffer p0);
f572bb0(ByteBuffer p0)362     static public native void f572bb0(ByteBuffer p0);
f573bb0(ByteBuffer p0)363     static public native void f573bb0(ByteBuffer p0);
f574bb0(ByteBuffer p0)364     static public native void f574bb0(ByteBuffer p0);
f575bb0(ByteBuffer p0)365     static public native void f575bb0(ByteBuffer p0);
f576bb0(ByteBuffer p0)366     static public native void f576bb0(ByteBuffer p0);
f577bb0(ByteBuffer p0)367     static public native void f577bb0(ByteBuffer p0);
f578bb0(ByteBuffer p0)368     static public native void f578bb0(ByteBuffer p0);
f581bb0(ByteBuffer p0)369     static public native void f581bb0(ByteBuffer p0);
f582bb0(ByteBuffer p0)370     static public native void f582bb0(ByteBuffer p0);
f583bb0(ByteBuffer p0)371     static public native void f583bb0(ByteBuffer p0);
f584bb0(ByteBuffer p0)372     static public native void f584bb0(ByteBuffer p0);
373 
374     // ----------------------------------------------------------------------
375     // ByteBuffer<sizeof(C)> mappings of pointers to primitive types
376     // ----------------------------------------------------------------------
377 
f411bb1()378     static public native ByteBuffer f411bb1();
f412bb1()379     static public native ByteBuffer f412bb1();
f413bb1()380     static public native ByteBuffer f413bb1();
f414bb1()381     static public native ByteBuffer f414bb1();
f415bb1()382     static public native ByteBuffer f415bb1();
f416bb1()383     static public native ByteBuffer f416bb1();
f417bb1()384     static public native ByteBuffer f417bb1();
f418bb1()385     static public native ByteBuffer f418bb1();
f421bb1()386     static public native ByteBuffer f421bb1();
f422bb1()387     static public native ByteBuffer f422bb1();
f423bb1()388     static public native ByteBuffer f423bb1();
f424bb1()389     static public native ByteBuffer f424bb1();
390 
f431bb1()391     static public native ByteBuffer f431bb1();
f432bb1()392     static public native ByteBuffer f432bb1();
f433bb1()393     static public native ByteBuffer f433bb1();
f434bb1()394     static public native ByteBuffer f434bb1();
f435bb1()395     static public native ByteBuffer f435bb1();
f436bb1()396     static public native ByteBuffer f436bb1();
f437bb1()397     static public native ByteBuffer f437bb1();
f438bb1()398     static public native ByteBuffer f438bb1();
f441bb1()399     static public native ByteBuffer f441bb1();
f442bb1()400     static public native ByteBuffer f442bb1();
f443bb1()401     static public native ByteBuffer f443bb1();
f444bb1()402     static public native ByteBuffer f444bb1();
403 
404 
405 
f511bb1(ByteBuffer p0)406     static public native void f511bb1(ByteBuffer p0);
f512bb1(ByteBuffer p0)407     static public native void f512bb1(ByteBuffer p0);
f513bb1(ByteBuffer p0)408     static public native void f513bb1(ByteBuffer p0);
f514bb1(ByteBuffer p0)409     static public native void f514bb1(ByteBuffer p0);
f515bb1(ByteBuffer p0)410     static public native void f515bb1(ByteBuffer p0);
f516bb1(ByteBuffer p0)411     static public native void f516bb1(ByteBuffer p0);
f517bb1(ByteBuffer p0)412     static public native void f517bb1(ByteBuffer p0);
f518bb1(ByteBuffer p0)413     static public native void f518bb1(ByteBuffer p0);
f521bb1(ByteBuffer p0)414     static public native void f521bb1(ByteBuffer p0);
f522bb1(ByteBuffer p0)415     static public native void f522bb1(ByteBuffer p0);
f523bb1(ByteBuffer p0)416     static public native void f523bb1(ByteBuffer p0);
f524bb1(ByteBuffer p0)417     static public native void f524bb1(ByteBuffer p0);
418 
f531bb1(ByteBuffer p0)419     static public native void f531bb1(ByteBuffer p0);
f532bb1(ByteBuffer p0)420     static public native void f532bb1(ByteBuffer p0);
f533bb1(ByteBuffer p0)421     static public native void f533bb1(ByteBuffer p0);
f534bb1(ByteBuffer p0)422     static public native void f534bb1(ByteBuffer p0);
f535bb1(ByteBuffer p0)423     static public native void f535bb1(ByteBuffer p0);
f536bb1(ByteBuffer p0)424     static public native void f536bb1(ByteBuffer p0);
f537bb1(ByteBuffer p0)425     static public native void f537bb1(ByteBuffer p0);
f538bb1(ByteBuffer p0)426     static public native void f538bb1(ByteBuffer p0);
f541bb1(ByteBuffer p0)427     static public native void f541bb1(ByteBuffer p0);
f542bb1(ByteBuffer p0)428     static public native void f542bb1(ByteBuffer p0);
f543bb1(ByteBuffer p0)429     static public native void f543bb1(ByteBuffer p0);
f544bb1(ByteBuffer p0)430     static public native void f544bb1(ByteBuffer p0);
431 
f551bb1(ByteBuffer p0)432     static public native void f551bb1(ByteBuffer p0);
f552bb1(ByteBuffer p0)433     static public native void f552bb1(ByteBuffer p0);
f553bb1(ByteBuffer p0)434     static public native void f553bb1(ByteBuffer p0);
f554bb1(ByteBuffer p0)435     static public native void f554bb1(ByteBuffer p0);
f555bb1(ByteBuffer p0)436     static public native void f555bb1(ByteBuffer p0);
f556bb1(ByteBuffer p0)437     static public native void f556bb1(ByteBuffer p0);
f557bb1(ByteBuffer p0)438     static public native void f557bb1(ByteBuffer p0);
f558bb1(ByteBuffer p0)439     static public native void f558bb1(ByteBuffer p0);
f561bb1(ByteBuffer p0)440     static public native void f561bb1(ByteBuffer p0);
f562bb1(ByteBuffer p0)441     static public native void f562bb1(ByteBuffer p0);
f563bb1(ByteBuffer p0)442     static public native void f563bb1(ByteBuffer p0);
f564bb1(ByteBuffer p0)443     static public native void f564bb1(ByteBuffer p0);
444 
f571bb1(ByteBuffer p0)445     static public native void f571bb1(ByteBuffer p0);
f572bb1(ByteBuffer p0)446     static public native void f572bb1(ByteBuffer p0);
f573bb1(ByteBuffer p0)447     static public native void f573bb1(ByteBuffer p0);
f574bb1(ByteBuffer p0)448     static public native void f574bb1(ByteBuffer p0);
f575bb1(ByteBuffer p0)449     static public native void f575bb1(ByteBuffer p0);
f576bb1(ByteBuffer p0)450     static public native void f576bb1(ByteBuffer p0);
f577bb1(ByteBuffer p0)451     static public native void f577bb1(ByteBuffer p0);
f578bb1(ByteBuffer p0)452     static public native void f578bb1(ByteBuffer p0);
f581bb1(ByteBuffer p0)453     static public native void f581bb1(ByteBuffer p0);
f582bb1(ByteBuffer p0)454     static public native void f582bb1(ByteBuffer p0);
f583bb1(ByteBuffer p0)455     static public native void f583bb1(ByteBuffer p0);
f584bb1(ByteBuffer p0)456     static public native void f584bb1(ByteBuffer p0);
457 
458     // ----------------------------------------------------------------------
459     // Array<size=1> mappings of pointers to primitive types
460     // ----------------------------------------------------------------------
461 
f411v1()462     static public native boolean[] f411v1();
f412v1()463     static public native byte[] f412v1();
f413v1()464     static public native byte[] f413v1();
f414v1()465     static public native byte[] f414v1();
f415v1()466     static public native short[] f415v1();
f416v1()467     static public native short[] f416v1();
f417v1()468     static public native int[] f417v1();
f418v1()469     static public native int[] f418v1();
f421v1()470     static public native long[] f421v1();
f422v1()471     static public native long[] f422v1();
f423v1()472     static public native float[] f423v1();
f424v1()473     static public native double[] f424v1();
474 
f431v1()475     static public native boolean[] f431v1();
f432v1()476     static public native byte[] f432v1();
f433v1()477     static public native byte[] f433v1();
f434v1()478     static public native byte[] f434v1();
f435v1()479     static public native short[] f435v1();
f436v1()480     static public native short[] f436v1();
f437v1()481     static public native int[] f437v1();
f438v1()482     static public native int[] f438v1();
f441v1()483     static public native long[] f441v1();
f442v1()484     static public native long[] f442v1();
f443v1()485     static public native float[] f443v1();
f444v1()486     static public native double[] f444v1();
487 
488 
489 
f511v1(boolean[] p0)490     static public native void f511v1(boolean[] p0);
f512v1(byte[] p0)491     static public native void f512v1(byte[] p0);
f513v1(byte[] p0)492     static public native void f513v1(byte[] p0);
f514v1(byte[] p0)493     static public native void f514v1(byte[] p0);
f515v1(short[] p0)494     static public native void f515v1(short[] p0);
f516v1(short[] p0)495     static public native void f516v1(short[] p0);
f517v1(int[] p0)496     static public native void f517v1(int[] p0);
f518v1(int[] p0)497     static public native void f518v1(int[] p0);
f521v1(long[] p0)498     static public native void f521v1(long[] p0);
f522v1(long[] p0)499     static public native void f522v1(long[] p0);
f523v1(float[] p0)500     static public native void f523v1(float[] p0);
f524v1(double[] p0)501     static public native void f524v1(double[] p0);
502 
f531v1(boolean[] p0)503     static public native void f531v1(boolean[] p0);
f532v1(byte[] p0)504     static public native void f532v1(byte[] p0);
f533v1(byte[] p0)505     static public native void f533v1(byte[] p0);
f534v1(byte[] p0)506     static public native void f534v1(byte[] p0);
f535v1(short[] p0)507     static public native void f535v1(short[] p0);
f536v1(short[] p0)508     static public native void f536v1(short[] p0);
f537v1(int[] p0)509     static public native void f537v1(int[] p0);
f538v1(int[] p0)510     static public native void f538v1(int[] p0);
f541v1(long[] p0)511     static public native void f541v1(long[] p0);
f542v1(long[] p0)512     static public native void f542v1(long[] p0);
f543v1(float[] p0)513     static public native void f543v1(float[] p0);
f544v1(double[] p0)514     static public native void f544v1(double[] p0);
515 
f551v1(boolean[] p0)516     static public native void f551v1(boolean[] p0);
f552v1(byte[] p0)517     static public native void f552v1(byte[] p0);
f553v1(byte[] p0)518     static public native void f553v1(byte[] p0);
f554v1(byte[] p0)519     static public native void f554v1(byte[] p0);
f555v1(short[] p0)520     static public native void f555v1(short[] p0);
f556v1(short[] p0)521     static public native void f556v1(short[] p0);
f557v1(int[] p0)522     static public native void f557v1(int[] p0);
f558v1(int[] p0)523     static public native void f558v1(int[] p0);
f561v1(long[] p0)524     static public native void f561v1(long[] p0);
f562v1(long[] p0)525     static public native void f562v1(long[] p0);
f563v1(float[] p0)526     static public native void f563v1(float[] p0);
f564v1(double[] p0)527     static public native void f564v1(double[] p0);
528 
f571v1(boolean[] p0)529     static public native void f571v1(boolean[] p0);
f572v1(byte[] p0)530     static public native void f572v1(byte[] p0);
f573v1(byte[] p0)531     static public native void f573v1(byte[] p0);
f574v1(byte[] p0)532     static public native void f574v1(byte[] p0);
f575v1(short[] p0)533     static public native void f575v1(short[] p0);
f576v1(short[] p0)534     static public native void f576v1(short[] p0);
f577v1(int[] p0)535     static public native void f577v1(int[] p0);
f578v1(int[] p0)536     static public native void f578v1(int[] p0);
f581v1(long[] p0)537     static public native void f581v1(long[] p0);
f582v1(long[] p0)538     static public native void f582v1(long[] p0);
f583v1(float[] p0)539     static public native void f583v1(float[] p0);
f584v1(double[] p0)540     static public native void f584v1(double[] p0);
541 
542     // ----------------------------------------------------------------------
543     // Nullable ByteBuffer<size=0> mappings of pointers to primitive types
544     // ----------------------------------------------------------------------
545 
f611bb0()546     static public native ByteBuffer f611bb0();
f612bb0()547     static public native ByteBuffer f612bb0();
f613bb0()548     static public native ByteBuffer f613bb0();
f614bb0()549     static public native ByteBuffer f614bb0();
f615bb0()550     static public native ByteBuffer f615bb0();
f616bb0()551     static public native ByteBuffer f616bb0();
f617bb0()552     static public native ByteBuffer f617bb0();
f618bb0()553     static public native ByteBuffer f618bb0();
f621bb0()554     static public native ByteBuffer f621bb0();
f622bb0()555     static public native ByteBuffer f622bb0();
f623bb0()556     static public native ByteBuffer f623bb0();
f624bb0()557     static public native ByteBuffer f624bb0();
558 
f631bb0()559     static public native ByteBuffer f631bb0();
f632bb0()560     static public native ByteBuffer f632bb0();
f633bb0()561     static public native ByteBuffer f633bb0();
f634bb0()562     static public native ByteBuffer f634bb0();
f635bb0()563     static public native ByteBuffer f635bb0();
f636bb0()564     static public native ByteBuffer f636bb0();
f637bb0()565     static public native ByteBuffer f637bb0();
f638bb0()566     static public native ByteBuffer f638bb0();
f641bb0()567     static public native ByteBuffer f641bb0();
f642bb0()568     static public native ByteBuffer f642bb0();
f643bb0()569     static public native ByteBuffer f643bb0();
f644bb0()570     static public native ByteBuffer f644bb0();
571 
572 
573 
f711bb0(ByteBuffer p0)574     static public native void f711bb0(ByteBuffer p0);
f712bb0(ByteBuffer p0)575     static public native void f712bb0(ByteBuffer p0);
f713bb0(ByteBuffer p0)576     static public native void f713bb0(ByteBuffer p0);
f714bb0(ByteBuffer p0)577     static public native void f714bb0(ByteBuffer p0);
f715bb0(ByteBuffer p0)578     static public native void f715bb0(ByteBuffer p0);
f716bb0(ByteBuffer p0)579     static public native void f716bb0(ByteBuffer p0);
f717bb0(ByteBuffer p0)580     static public native void f717bb0(ByteBuffer p0);
f718bb0(ByteBuffer p0)581     static public native void f718bb0(ByteBuffer p0);
f721bb0(ByteBuffer p0)582     static public native void f721bb0(ByteBuffer p0);
f722bb0(ByteBuffer p0)583     static public native void f722bb0(ByteBuffer p0);
f723bb0(ByteBuffer p0)584     static public native void f723bb0(ByteBuffer p0);
f724bb0(ByteBuffer p0)585     static public native void f724bb0(ByteBuffer p0);
586 
f731bb0(ByteBuffer p0)587     static public native void f731bb0(ByteBuffer p0);
f732bb0(ByteBuffer p0)588     static public native void f732bb0(ByteBuffer p0);
f733bb0(ByteBuffer p0)589     static public native void f733bb0(ByteBuffer p0);
f734bb0(ByteBuffer p0)590     static public native void f734bb0(ByteBuffer p0);
f735bb0(ByteBuffer p0)591     static public native void f735bb0(ByteBuffer p0);
f736bb0(ByteBuffer p0)592     static public native void f736bb0(ByteBuffer p0);
f737bb0(ByteBuffer p0)593     static public native void f737bb0(ByteBuffer p0);
f738bb0(ByteBuffer p0)594     static public native void f738bb0(ByteBuffer p0);
f741bb0(ByteBuffer p0)595     static public native void f741bb0(ByteBuffer p0);
f742bb0(ByteBuffer p0)596     static public native void f742bb0(ByteBuffer p0);
f743bb0(ByteBuffer p0)597     static public native void f743bb0(ByteBuffer p0);
f744bb0(ByteBuffer p0)598     static public native void f744bb0(ByteBuffer p0);
599 
f751bb0(ByteBuffer p0)600     static public native void f751bb0(ByteBuffer p0);
f752bb0(ByteBuffer p0)601     static public native void f752bb0(ByteBuffer p0);
f753bb0(ByteBuffer p0)602     static public native void f753bb0(ByteBuffer p0);
f754bb0(ByteBuffer p0)603     static public native void f754bb0(ByteBuffer p0);
f755bb0(ByteBuffer p0)604     static public native void f755bb0(ByteBuffer p0);
f756bb0(ByteBuffer p0)605     static public native void f756bb0(ByteBuffer p0);
f757bb0(ByteBuffer p0)606     static public native void f757bb0(ByteBuffer p0);
f758bb0(ByteBuffer p0)607     static public native void f758bb0(ByteBuffer p0);
f761bb0(ByteBuffer p0)608     static public native void f761bb0(ByteBuffer p0);
f762bb0(ByteBuffer p0)609     static public native void f762bb0(ByteBuffer p0);
f763bb0(ByteBuffer p0)610     static public native void f763bb0(ByteBuffer p0);
f764bb0(ByteBuffer p0)611     static public native void f764bb0(ByteBuffer p0);
612 
f771bb0(ByteBuffer p0)613     static public native void f771bb0(ByteBuffer p0);
f772bb0(ByteBuffer p0)614     static public native void f772bb0(ByteBuffer p0);
f773bb0(ByteBuffer p0)615     static public native void f773bb0(ByteBuffer p0);
f774bb0(ByteBuffer p0)616     static public native void f774bb0(ByteBuffer p0);
f775bb0(ByteBuffer p0)617     static public native void f775bb0(ByteBuffer p0);
f776bb0(ByteBuffer p0)618     static public native void f776bb0(ByteBuffer p0);
f777bb0(ByteBuffer p0)619     static public native void f777bb0(ByteBuffer p0);
f778bb0(ByteBuffer p0)620     static public native void f778bb0(ByteBuffer p0);
f781bb0(ByteBuffer p0)621     static public native void f781bb0(ByteBuffer p0);
f782bb0(ByteBuffer p0)622     static public native void f782bb0(ByteBuffer p0);
f783bb0(ByteBuffer p0)623     static public native void f783bb0(ByteBuffer p0);
f784bb0(ByteBuffer p0)624     static public native void f784bb0(ByteBuffer p0);
625 
626     // ----------------------------------------------------------------------
627     // Nullable ByteBuffer<sizeof(C)> mappings of pointers to primitive types
628     // ----------------------------------------------------------------------
629 
f611bb1()630     static public native ByteBuffer f611bb1();
f612bb1()631     static public native ByteBuffer f612bb1();
f613bb1()632     static public native ByteBuffer f613bb1();
f614bb1()633     static public native ByteBuffer f614bb1();
f615bb1()634     static public native ByteBuffer f615bb1();
f616bb1()635     static public native ByteBuffer f616bb1();
f617bb1()636     static public native ByteBuffer f617bb1();
f618bb1()637     static public native ByteBuffer f618bb1();
f621bb1()638     static public native ByteBuffer f621bb1();
f622bb1()639     static public native ByteBuffer f622bb1();
f623bb1()640     static public native ByteBuffer f623bb1();
f624bb1()641     static public native ByteBuffer f624bb1();
642 
f631bb1()643     static public native ByteBuffer f631bb1();
f632bb1()644     static public native ByteBuffer f632bb1();
f633bb1()645     static public native ByteBuffer f633bb1();
f634bb1()646     static public native ByteBuffer f634bb1();
f635bb1()647     static public native ByteBuffer f635bb1();
f636bb1()648     static public native ByteBuffer f636bb1();
f637bb1()649     static public native ByteBuffer f637bb1();
f638bb1()650     static public native ByteBuffer f638bb1();
f641bb1()651     static public native ByteBuffer f641bb1();
f642bb1()652     static public native ByteBuffer f642bb1();
f643bb1()653     static public native ByteBuffer f643bb1();
f644bb1()654     static public native ByteBuffer f644bb1();
655 
656 
657 
f711bb1(ByteBuffer p0)658     static public native void f711bb1(ByteBuffer p0);
f712bb1(ByteBuffer p0)659     static public native void f712bb1(ByteBuffer p0);
f713bb1(ByteBuffer p0)660     static public native void f713bb1(ByteBuffer p0);
f714bb1(ByteBuffer p0)661     static public native void f714bb1(ByteBuffer p0);
f715bb1(ByteBuffer p0)662     static public native void f715bb1(ByteBuffer p0);
f716bb1(ByteBuffer p0)663     static public native void f716bb1(ByteBuffer p0);
f717bb1(ByteBuffer p0)664     static public native void f717bb1(ByteBuffer p0);
f718bb1(ByteBuffer p0)665     static public native void f718bb1(ByteBuffer p0);
f721bb1(ByteBuffer p0)666     static public native void f721bb1(ByteBuffer p0);
f722bb1(ByteBuffer p0)667     static public native void f722bb1(ByteBuffer p0);
f723bb1(ByteBuffer p0)668     static public native void f723bb1(ByteBuffer p0);
f724bb1(ByteBuffer p0)669     static public native void f724bb1(ByteBuffer p0);
670 
f731bb1(ByteBuffer p0)671     static public native void f731bb1(ByteBuffer p0);
f732bb1(ByteBuffer p0)672     static public native void f732bb1(ByteBuffer p0);
f733bb1(ByteBuffer p0)673     static public native void f733bb1(ByteBuffer p0);
f734bb1(ByteBuffer p0)674     static public native void f734bb1(ByteBuffer p0);
f735bb1(ByteBuffer p0)675     static public native void f735bb1(ByteBuffer p0);
f736bb1(ByteBuffer p0)676     static public native void f736bb1(ByteBuffer p0);
f737bb1(ByteBuffer p0)677     static public native void f737bb1(ByteBuffer p0);
f738bb1(ByteBuffer p0)678     static public native void f738bb1(ByteBuffer p0);
f741bb1(ByteBuffer p0)679     static public native void f741bb1(ByteBuffer p0);
f742bb1(ByteBuffer p0)680     static public native void f742bb1(ByteBuffer p0);
f743bb1(ByteBuffer p0)681     static public native void f743bb1(ByteBuffer p0);
f744bb1(ByteBuffer p0)682     static public native void f744bb1(ByteBuffer p0);
683 
f751bb1(ByteBuffer p0)684     static public native void f751bb1(ByteBuffer p0);
f752bb1(ByteBuffer p0)685     static public native void f752bb1(ByteBuffer p0);
f753bb1(ByteBuffer p0)686     static public native void f753bb1(ByteBuffer p0);
f754bb1(ByteBuffer p0)687     static public native void f754bb1(ByteBuffer p0);
f755bb1(ByteBuffer p0)688     static public native void f755bb1(ByteBuffer p0);
f756bb1(ByteBuffer p0)689     static public native void f756bb1(ByteBuffer p0);
f757bb1(ByteBuffer p0)690     static public native void f757bb1(ByteBuffer p0);
f758bb1(ByteBuffer p0)691     static public native void f758bb1(ByteBuffer p0);
f761bb1(ByteBuffer p0)692     static public native void f761bb1(ByteBuffer p0);
f762bb1(ByteBuffer p0)693     static public native void f762bb1(ByteBuffer p0);
f763bb1(ByteBuffer p0)694     static public native void f763bb1(ByteBuffer p0);
f764bb1(ByteBuffer p0)695     static public native void f764bb1(ByteBuffer p0);
696 
f771bb1(ByteBuffer p0)697     static public native void f771bb1(ByteBuffer p0);
f772bb1(ByteBuffer p0)698     static public native void f772bb1(ByteBuffer p0);
f773bb1(ByteBuffer p0)699     static public native void f773bb1(ByteBuffer p0);
f774bb1(ByteBuffer p0)700     static public native void f774bb1(ByteBuffer p0);
f775bb1(ByteBuffer p0)701     static public native void f775bb1(ByteBuffer p0);
f776bb1(ByteBuffer p0)702     static public native void f776bb1(ByteBuffer p0);
f777bb1(ByteBuffer p0)703     static public native void f777bb1(ByteBuffer p0);
f778bb1(ByteBuffer p0)704     static public native void f778bb1(ByteBuffer p0);
f781bb1(ByteBuffer p0)705     static public native void f781bb1(ByteBuffer p0);
f782bb1(ByteBuffer p0)706     static public native void f782bb1(ByteBuffer p0);
f783bb1(ByteBuffer p0)707     static public native void f783bb1(ByteBuffer p0);
f784bb1(ByteBuffer p0)708     static public native void f784bb1(ByteBuffer p0);
709 
710     // ----------------------------------------------------------------------
711     // Nullable Array<size=0> mappings of pointers to primitive types
712     // ----------------------------------------------------------------------
713 
f611v0()714     static public native boolean[] f611v0();
f612v0()715     static public native byte[] f612v0();
f613v0()716     static public native byte[] f613v0();
f614v0()717     static public native byte[] f614v0();
f615v0()718     static public native short[] f615v0();
f616v0()719     static public native short[] f616v0();
f617v0()720     static public native int[] f617v0();
f618v0()721     static public native int[] f618v0();
f621v0()722     static public native long[] f621v0();
f622v0()723     static public native long[] f622v0();
f623v0()724     static public native float[] f623v0();
f624v0()725     static public native double[] f624v0();
726 
f631v0()727     static public native boolean[] f631v0();
f632v0()728     static public native byte[] f632v0();
f633v0()729     static public native byte[] f633v0();
f634v0()730     static public native byte[] f634v0();
f635v0()731     static public native short[] f635v0();
f636v0()732     static public native short[] f636v0();
f637v0()733     static public native int[] f637v0();
f638v0()734     static public native int[] f638v0();
f641v0()735     static public native long[] f641v0();
f642v0()736     static public native long[] f642v0();
f643v0()737     static public native float[] f643v0();
f644v0()738     static public native double[] f644v0();
739 
740 
741 
f711v0(boolean[] p0)742     static public native void f711v0(boolean[] p0);
f712v0(byte[] p0)743     static public native void f712v0(byte[] p0);
f713v0(byte[] p0)744     static public native void f713v0(byte[] p0);
f714v0(byte[] p0)745     static public native void f714v0(byte[] p0);
f715v0(short[] p0)746     static public native void f715v0(short[] p0);
f716v0(short[] p0)747     static public native void f716v0(short[] p0);
f717v0(int[] p0)748     static public native void f717v0(int[] p0);
f718v0(int[] p0)749     static public native void f718v0(int[] p0);
f721v0(long[] p0)750     static public native void f721v0(long[] p0);
f722v0(long[] p0)751     static public native void f722v0(long[] p0);
f723v0(float[] p0)752     static public native void f723v0(float[] p0);
f724v0(double[] p0)753     static public native void f724v0(double[] p0);
754 
f731v0(boolean[] p0)755     static public native void f731v0(boolean[] p0);
f732v0(byte[] p0)756     static public native void f732v0(byte[] p0);
f733v0(byte[] p0)757     static public native void f733v0(byte[] p0);
f734v0(byte[] p0)758     static public native void f734v0(byte[] p0);
f735v0(short[] p0)759     static public native void f735v0(short[] p0);
f736v0(short[] p0)760     static public native void f736v0(short[] p0);
f737v0(int[] p0)761     static public native void f737v0(int[] p0);
f738v0(int[] p0)762     static public native void f738v0(int[] p0);
f741v0(long[] p0)763     static public native void f741v0(long[] p0);
f742v0(long[] p0)764     static public native void f742v0(long[] p0);
f743v0(float[] p0)765     static public native void f743v0(float[] p0);
f744v0(double[] p0)766     static public native void f744v0(double[] p0);
767 
f751v0(boolean[] p0)768     static public native void f751v0(boolean[] p0);
f752v0(byte[] p0)769     static public native void f752v0(byte[] p0);
f753v0(byte[] p0)770     static public native void f753v0(byte[] p0);
f754v0(byte[] p0)771     static public native void f754v0(byte[] p0);
f755v0(short[] p0)772     static public native void f755v0(short[] p0);
f756v0(short[] p0)773     static public native void f756v0(short[] p0);
f757v0(int[] p0)774     static public native void f757v0(int[] p0);
f758v0(int[] p0)775     static public native void f758v0(int[] p0);
f761v0(long[] p0)776     static public native void f761v0(long[] p0);
f762v0(long[] p0)777     static public native void f762v0(long[] p0);
f763v0(float[] p0)778     static public native void f763v0(float[] p0);
f764v0(double[] p0)779     static public native void f764v0(double[] p0);
780 
f771v0(boolean[] p0)781     static public native void f771v0(boolean[] p0);
f772v0(byte[] p0)782     static public native void f772v0(byte[] p0);
f773v0(byte[] p0)783     static public native void f773v0(byte[] p0);
f774v0(byte[] p0)784     static public native void f774v0(byte[] p0);
f775v0(short[] p0)785     static public native void f775v0(short[] p0);
f776v0(short[] p0)786     static public native void f776v0(short[] p0);
f777v0(int[] p0)787     static public native void f777v0(int[] p0);
f778v0(int[] p0)788     static public native void f778v0(int[] p0);
f781v0(long[] p0)789     static public native void f781v0(long[] p0);
f782v0(long[] p0)790     static public native void f782v0(long[] p0);
f783v0(float[] p0)791     static public native void f783v0(float[] p0);
f784v0(double[] p0)792     static public native void f784v0(double[] p0);
793 
794     // ----------------------------------------------------------------------
795     // Nullable Array<size=1> mappings of pointers to primitive types
796     // ----------------------------------------------------------------------
797 
f611v1()798     static public native boolean[] f611v1();
f612v1()799     static public native byte[] f612v1();
f613v1()800     static public native byte[] f613v1();
f614v1()801     static public native byte[] f614v1();
f615v1()802     static public native short[] f615v1();
f616v1()803     static public native short[] f616v1();
f617v1()804     static public native int[] f617v1();
f618v1()805     static public native int[] f618v1();
f621v1()806     static public native long[] f621v1();
f622v1()807     static public native long[] f622v1();
f623v1()808     static public native float[] f623v1();
f624v1()809     static public native double[] f624v1();
810 
f631v1()811     static public native boolean[] f631v1();
f632v1()812     static public native byte[] f632v1();
f633v1()813     static public native byte[] f633v1();
f634v1()814     static public native byte[] f634v1();
f635v1()815     static public native short[] f635v1();
f636v1()816     static public native short[] f636v1();
f637v1()817     static public native int[] f637v1();
f638v1()818     static public native int[] f638v1();
f641v1()819     static public native long[] f641v1();
f642v1()820     static public native long[] f642v1();
f643v1()821     static public native float[] f643v1();
f644v1()822     static public native double[] f644v1();
823 
824 
825 
f711v1(boolean[] p0)826     static public native void f711v1(boolean[] p0);
f712v1(byte[] p0)827     static public native void f712v1(byte[] p0);
f713v1(byte[] p0)828     static public native void f713v1(byte[] p0);
f714v1(byte[] p0)829     static public native void f714v1(byte[] p0);
f715v1(short[] p0)830     static public native void f715v1(short[] p0);
f716v1(short[] p0)831     static public native void f716v1(short[] p0);
f717v1(int[] p0)832     static public native void f717v1(int[] p0);
f718v1(int[] p0)833     static public native void f718v1(int[] p0);
f721v1(long[] p0)834     static public native void f721v1(long[] p0);
f722v1(long[] p0)835     static public native void f722v1(long[] p0);
f723v1(float[] p0)836     static public native void f723v1(float[] p0);
f724v1(double[] p0)837     static public native void f724v1(double[] p0);
838 
f731v1(boolean[] p0)839     static public native void f731v1(boolean[] p0);
f732v1(byte[] p0)840     static public native void f732v1(byte[] p0);
f733v1(byte[] p0)841     static public native void f733v1(byte[] p0);
f734v1(byte[] p0)842     static public native void f734v1(byte[] p0);
f735v1(short[] p0)843     static public native void f735v1(short[] p0);
f736v1(short[] p0)844     static public native void f736v1(short[] p0);
f737v1(int[] p0)845     static public native void f737v1(int[] p0);
f738v1(int[] p0)846     static public native void f738v1(int[] p0);
f741v1(long[] p0)847     static public native void f741v1(long[] p0);
f742v1(long[] p0)848     static public native void f742v1(long[] p0);
f743v1(float[] p0)849     static public native void f743v1(float[] p0);
f744v1(double[] p0)850     static public native void f744v1(double[] p0);
851 
f751v1(boolean[] p0)852     static public native void f751v1(boolean[] p0);
f752v1(byte[] p0)853     static public native void f752v1(byte[] p0);
f753v1(byte[] p0)854     static public native void f753v1(byte[] p0);
f754v1(byte[] p0)855     static public native void f754v1(byte[] p0);
f755v1(short[] p0)856     static public native void f755v1(short[] p0);
f756v1(short[] p0)857     static public native void f756v1(short[] p0);
f757v1(int[] p0)858     static public native void f757v1(int[] p0);
f758v1(int[] p0)859     static public native void f758v1(int[] p0);
f761v1(long[] p0)860     static public native void f761v1(long[] p0);
f762v1(long[] p0)861     static public native void f762v1(long[] p0);
f763v1(float[] p0)862     static public native void f763v1(float[] p0);
f764v1(double[] p0)863     static public native void f764v1(double[] p0);
864 
f771v1(boolean[] p0)865     static public native void f771v1(boolean[] p0);
f772v1(byte[] p0)866     static public native void f772v1(byte[] p0);
f773v1(byte[] p0)867     static public native void f773v1(byte[] p0);
f774v1(byte[] p0)868     static public native void f774v1(byte[] p0);
f775v1(short[] p0)869     static public native void f775v1(short[] p0);
f776v1(short[] p0)870     static public native void f776v1(short[] p0);
f777v1(int[] p0)871     static public native void f777v1(int[] p0);
f778v1(int[] p0)872     static public native void f778v1(int[] p0);
f781v1(long[] p0)873     static public native void f781v1(long[] p0);
f782v1(long[] p0)874     static public native void f782v1(long[] p0);
f783v1(float[] p0)875     static public native void f783v1(float[] p0);
f784v1(double[] p0)876     static public native void f784v1(double[] p0);
877 
878     // ----------------------------------------------------------------------
879 
880     // XXX add BigInteger, BigDecimal mappings
881 
882     //static public native void f140(BigInteger p0);
883     //static public native void f141(BigInteger p0);
884     // mapping to BigDecimal not supported at this time
885     //static public native void f145(BigDecimal p0);
886 
887     // ----------------------------------------------------------------------
888 }
889