Searched defs:bp (Results 26 - 28 of 28) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java191 int bp; field in class:ClassReader
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) { argument
366 getInt(int bp) argument
377 getLong(int bp) argument
389 getFloat(int bp) argument
401 getDouble(int bp) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c264 unsigned char *bp; // Pinned buffer pointer, as bytes member in union:pixelBufferStruct::pixptr
317 pb->buf.bp = (unsigned char *)(*env)->GetPrimitiveArrayCritical
319 if (pb->buf.bp == NULL) {
2029 out = data->pixelBuf.buf.bp;
2909 in = data->pixelBuf.buf.bp;
2918 if (in == data->pixelBuf.buf.bp){ // Just the first pixel
2924 if (in == data->pixelBuf.buf.bp){ // Just the first pixel
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrtran.c2472 png_bytep bp; local
2476 for (bp = row, i = 0; i < istop; i++)
2478 *bp >>= 1;
2479 *bp++ &= 0x55;
2486 png_bytep bp = row; local
2494 *bp >>= shift[0];
2495 *bp++ &= mask;
2502 png_bytep bp = row; local
2508 *bp++ >>= shift[i%channels];
2516 png_bytep bp local
[all...]

Completed in 47 milliseconds

12