Searched defs:u4 (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzcrc32.c63 typedef unsigned int u4; typedef
66 typedef unsigned long u4; typedef
69 typedef unsigned short u4; typedef
257 u4 endian;
291 register u4 c;
292 register const u4 FAR *buf4;
294 c = (u4)crc;
301 buf4 = (const u4 FAR *)(const void FAR *)buf;
331 register u4 c;
332 register const u4 FA
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassWriter.java277 u4((int) cfile.getAttrLong("magic"));
372 u4(attrBuf.size());
613 u4(x);
639 u4(length);
665 u4(attrs.size());
672 u4(bci);
686 u4(typeSize);
692 u4(typeSize);
711 u4(offset);
761 u4(Intege
804 public void u4(int x) throws IOException { method in class:ClassWriter
[all...]
H A DClassReader.java333 int magic = u4();
479 int size = u4();
743 return (int) u4();
752 return u4();
762 int length = u4();
845 int frame_count = (uoffsetIsU4 ? u4() : u2());
847 int bci = (uoffsetIsU4 ? u4() : u2());
860 typeSize = (ulocalvarIsU4 ? u4() : u2());
862 typeSize = (ustackIsU4 ? u4() : u2());
875 type.setAttr("bci", "" + (uoffsetIsU4 ? u4()
984 private int u4() throws IOException { method in class:ClassReader
[all...]
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_lgamma_r.c140 u4 = 2.28963728064692451092e-01, /* 0x3FCD4EAE, 0xF6010924 */ variable
283 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c719 unsigned int u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,ua,ub,uc,ud,ue,uf; local
725 "%d %x %x %x %32s",&u0,&u1,&u2,&u3,&u4,&u5,&u6,&u7,
732 staddr[4] = (unsigned char)u4;
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp299 typedef juint u4; typedef
1084 inline u4 build_u4_from( u1 c1, u1 c2, u1 c3, u1 c4 ) {
1085 return (( u4(c1) << 24 ) & 0xff000000)
1086 | (( u4(c2) << 16 ) & 0x00ff0000)
1087 | (( u4(c3) << 8 ) & 0x0000ff00)
1088 | (( u4(c4) << 0 ) & 0x000000ff);
1092 inline u4 build_u4_from( u1* p ) {
1109 u4 u = build_u4_from( c1, c2, c3, c4 );
1114 u4 u = build_u4_from( p );
1160 inline void explode_int_to( u4
[all...]

Completed in 133 milliseconds