Lines Matching refs:put
54 shortBuf.put(myShorts, 0, 32); // should work in basicShortTest()
56 shortBuf.put(myShorts, 16, 16); // should work in basicShortTest()
57 shortBuf.put(myShorts, 16, 16); // advance to end in basicShortTest()
60 shortBuf.put(myShorts, 0, 1); // should fail in basicShortTest()
68 shortBuf.put(myShorts, 0, 33); // should fail in basicShortTest()
76 shortBuf.put(myShorts, 0, 17); // should fail in basicShortTest()
97 int1.put (data); in intFloatTest()
101 int1.put (data); in intFloatTest()
114 directBuf.put(i, (byte) 0xcc); in primTest()
138 if (directBuf.put(1, byteValue).get(1) != byteValue) { in storeValues()
141 if (shortBuf.put(1, shortValue).get(1) != shortValue) { in storeValues()
144 if (charBuf.put(2, charValue).get(2) != charValue) { in storeValues()
147 if (intBuf.put(2, intValue).get(2) != intValue) { in storeValues()
150 if (floatBuf.put(3, floatValue).get(3) != floatValue) { in storeValues()
153 if (longBuf.put(2, longValue).get(2) != longValue) { in storeValues()
156 if (doubleBuf.put(3, doubleValue).get(3) != doubleValue) { in storeValues()