Searched refs:c4 (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DIntDcm.h67 #define ExtractIntDcmComponents1234(pixel, c1, c2, c3, c4) \
69 (c4) = (pixel) & 0xff; \
81 #define ComposeIntDcmComponents1234(c1, c2, c3, c4) \
82 (((((((c1) << 8) | (c2)) << 8) | (c3)) << 8) | (c4))
/openjdk7/jdk/src/share/classes/java/net/
H A DURLConnection.java1429 int c4 = is.read();
1444 if (c1 == 0xCA && c2 == 0xFE && c3 == 0xBA && c4 == 0xBE) {
1455 || ((c2 == 'h' && (c3 == 't' && c4 == 'm' && c5 == 'l' ||
1456 c3 == 'e' && c4 == 'a' && c5 == 'd') ||
1457 (c2 == 'b' && c3 == 'o' && c4 == 'd' && c5 == 'y'))) ||
1458 ((c2 == 'H' && (c3 == 'T' && c4 == 'M' && c5 == 'L' ||
1459 c3 == 'E' && c4 == 'A' && c5 == 'D') ||
1460 (c2 == 'B' && c3 == 'O' && c4 == 'D' && c5 == 'Y')))) {
1464 if (c2 == '?' && c3 == 'x' && c4 == 'm' && c5 == 'l' && c6 == ' ') {
1471 if (c4
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUUEncoder.java139 int c1, c2, c3, c4;
152 c4 = c & 0x3f;
156 outStream.write(c4 + ' ');
H A DUUDecoder.java124 int i, c1, c2, c3, c4;
/openjdk7/hotspot/test/compiler/6946040/
H A DTestCharShortByteSwap.java77 char c4 = initChar(args, (char) 0xbbaa);
83 testChar(c3, c4);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DUUEncoderStream.java162 int c1, c2, c3, c4;
185 c4 = c & 0x3f;
189 out.write(c4 + ' ');
/openjdk7/hotspot/test/compiler/6910605/
H A DTest.java59 int c1=2, c2=3, c3=4, c4=5, c5=6;
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DInputStreamImageSource.java224 int c4 = is.read();
234 if (c1 == 'G' && c2 == 'I' && c3 == 'F' && c4 == '8') {
238 } else if (c1 == '#' && c2 == 'd' && c3 == 'e' && c4 == 'f') {
240 // } else if (c1 == '!' && c2 == ' ' && c3 == 'X' && c4 == 'P' &&
245 c4 == 71 && c5 == 13 && c6 == 10 &&
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4769350.java268 static Client c1,c2,c3,c4,c5,c6,c7,c8,c9; field in class:B4769350
276 c4 = new Client (authority, "/test/realm2/t1d", false);
280 c3.start(); c4.start();
281 c1.join(); c2.join(); c3.join(); c4.join();
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp1072 inline u8 build_u8_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) { argument
1076 | (( u8(c4) << 32 ) & ( u8(0xff) << 32 ))
1084 inline u4 build_u4_from( u1 c1, u1 c2, u1 c3, u1 c4 ) {
1088 | (( u4(c4) << 0 ) & 0x000000ff);
1108 inline jfloat build_float_from( u1 c1, u1 c2, u1 c3, u1 c4 ) {
1109 u4 u = build_u4_from( c1, c2, c3, c4 );
1121 inline jlong build_long_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) { argument
1125 | (( jlong(c4) << 32 ) & ( jlong(0xff) << 32 ))
1138 inline jdouble build_double_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) { argument
1139 jlong u = build_long_from( c1, c2, c3, c4, c
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DShaders.h174 add r3.xy, t0, c4
193 mad r0, c4.z, r3, r0
294 add r3.xy, t0, c4
312 mad r0, c4.z, r3, r0
413 add r3.xy, t0, c4
431 mad r0, c4.z, r3, r0
616 add r3.xy, t0, c4
634 mad r0, c4.z, r3, r0
1422 def c4, 1, 0.5, 0.0625, 0.03125
1440 mad r1.x, r0.w, c4
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DConstantHTML.java217 ConstantClass c4 = (ConstantClass)constant_pool.getConstant(index, CONSTANT_Class);
218 name_index = c4.getNameIndex();
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DMBeanInfoEqualsTest.java139 c4 = new MBeanConstructorInfo("conName", "a constructor", field in class:MBeanInfoEqualsTest
227 {c1a, c1b, c1c, c1d}, {c2a, c2b}, {c3a, c3b}, {c4}, {c5}, {c6},
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.hpp65 MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3, Node *c4) argument
66 : Node(c0,c1,c2,c3,c4) {

Completed in 87 milliseconds