Lines Matching refs:bp

191     int bp;
338 return (char)(((buf[bp++] & 0xFF) << 8) + (buf[bp++] & 0xFF));
344 return buf[bp++];
351 ((buf[bp++] & 0xFF) << 24) +
352 ((buf[bp++] & 0xFF) << 16) +
353 ((buf[bp++] & 0xFF) << 8) +
354 (buf[bp++] & 0xFF);
357 /** Extract a character at position bp from buf.
359 char getChar(int bp) {
361 (char)(((buf[bp] & 0xFF) << 8) + (buf[bp+1] & 0xFF));
364 /** Extract an integer at position bp from buf.
366 int getInt(int bp) {
368 ((buf[bp] & 0xFF) << 24) +
369 ((buf[bp+1] & 0xFF) << 16) +
370 ((buf[bp+2] & 0xFF) << 8) +
371 (buf[bp+3] & 0xFF);
375 /** Extract a long integer at position bp from buf.
377 long getLong(int bp) {
379 new DataInputStream(new ByteArrayInputStream(buf, bp, 8));
387 /** Extract a float at position bp from buf.
389 float getFloat(int bp) {
391 new DataInputStream(new ByteArrayInputStream(buf, bp, 4));
399 /** Extract a double at position bp from buf.
401 double getDouble(int bp) {
403 new DataInputStream(new ByteArrayInputStream(buf, bp, 8));
423 poolIdx[i++] = bp;
424 byte tag = buf[bp++];
428 bp = bp + len;
434 bp = bp + 2;
437 bp = bp + 3;
446 bp = bp + 4;
450 bp = bp + 8;
456 Integer.toString(bp -1));
943 bp = bp + attrLen;
982 int newbp = bp + attrLen;
1012 bp = newbp;
1036 int newbp = bp + attrLen;
1038 bp = newbp;
1278 bp = bp + attrLen;
1299 bp += code_length;
1301 bp += exception_table_length * 8;
1336 int numParameters = buf[bp++] & 0xFF;
1386 char c = (char) buf[bp++];
1855 bp = bp + n;
1861 bp = bp + 6;
1864 bp = bp + 2;
1866 bp = bp + attrLen;
1914 int startbp = bp;
1917 bp += interfaceCount * 2;
1930 bp = startbp;
2016 if (signatureBuffer.length < bp) {
2017 int ns = Integer.highestOneBit(bp) << 1;
2206 bp = 0;
2256 int bp = 0;
2258 bp += r;
2259 buf = ensureCapacity(buf, bp);
2260 r = s.read(buf, bp, buf.length - bp);
2277 * exactly equal to the needed size or bp. If equal then the read (above)
2278 * will infinitely loop as buf.length - bp == 0.