Home | History | Annotate | Download | only in iso

Lines Matching refs:result

43         int result = 0;
44 result += readUInt16(bb) << 8;
45 result += byte2int(bb.get());
46 return result;
51 int result = 0;
52 result += byte2int(bb.get()) << 8;
53 result += byte2int(bb.get());
54 return result;
58 int result = 0;
59 result += byte2int(bb.get());
60 result += byte2int(bb.get()) << 8;
61 return result;
98 long result = 0;
100 result += readUInt32(byteBuffer) << 32;
101 if (result < 0) {
104 result += readUInt32(byteBuffer);
106 return result;
113 int result = 0;
114 result |= ((bytes[0] << 24) & 0xFF000000);
115 result |= ((bytes[1] << 16) & 0xFF0000);
116 result |= ((bytes[2] << 8) & 0xFF00);
117 result |= ((bytes[3]) & 0xFF);
118 return ((double) result) / 65536;
125 short result = 0;
126 result |= ((bytes[0] << 8) & 0xFF00);
127 result |= ((bytes[1]) & 0xFF);
128 return ((float) result) / 256;
133 StringBuilder result = new StringBuilder();
136 result.append((char) (c + 0x60));
138 return result.toString();