Searched refs:bp (Results 51 - 67 of 67) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageImpl.java470 MimeBodyPart bp = null;
473 bp = bmMultipart.getNextPart(
475 contentID = bp.getContentID();
481 soapMessagePart = bp;
482 bmMultipart.removeBodyPart(bp);
/openjdk7/jdk/src/share/classes/java/util/
H A DScanner.java452 Pattern bp = boolPattern;
453 if (bp == null)
454 boolPattern = bp = Pattern.compile(BOOLEAN_PATTERN,
456 return bp;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.h51 byte* writeTo(byte* bp);
H A Dunpack.cpp4006 byte* bp = wp_at(code_fixup_offset.get(i));
4011 case 2: putu2_at(bp, (ushort)span); break;
4012 case 4: putu4_at(bp, span); break;
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java2118 String bp = normalize(base.path);
2120 if (!bp.equals(cp)) {
2121 if (!bp.endsWith("/"))
2122 bp = bp + "/";
2123 if (!cp.startsWith(bp))
2128 v.path = cp.substring(bp.length());
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.inline.hpp98 inline void Assembler::bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(bp_op2) | branchcc(cc) | predict(p) | wdisp(intptr_t(d), intptr_t(pc()), 19), rt); has_delay_slot(); } function in class:Assembler
99 inline void Assembler::bp( Condition c, bool a, CC cc, Predict p, Label& L ) { bp(c, a, cc, p, target(L)); } function in class:Assembler
544 Assembler::bp(c, a, icc, p, d, rt);
558 Assembler::bp(c, a, xcc, p, d, rt);
573 inline void MacroAssembler::bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { function in class:MacroAssembler
574 Assembler::bp(c, a, cc, p, d, rt);
577 inline void MacroAssembler::bp( Condition c, bool a, CC cc, Predict p, Label& L ) { function in class:MacroAssembler
578 Assembler::bp(c, a, cc, p, L);
649 Assembler::bp( neve
[all...]
H A Dassembler_sparc.hpp1274 inline void bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1275 inline void bp( Condition c, bool a, CC cc, Predict p, Label& L );
1961 inline void bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1962 inline void bp( Condition c, bool a, CC cc, Predict p, Label& L );
H A Dinterp_masm_sparc.cpp842 bp( ok_condition, true, Assembler::xcc, pt, ok);
H A Dassembler_sparc.cpp108 case bp_op2: s = "bp"; break;
246 bp( less, true, icc, pn, pc(), relocInfo::none);
248 bp( lessEqualUnsigned, false, xcc, pt, lbl2 );
H A DtemplateTable_sparc.cpp1791 __ bp( Assembler::lessEqualUnsigned, false, Assembler::xcc, Assembler::pn, zzz);
/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...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java793 } catch (BAD_PARAM bp) {
795 if (bp.minor == ORBUtilSystemException.LOCAL_OBJECT_NOT_ALLOWED) {
796 throw omgWrapper.notAnObjectImpl( bp ) ;
801 throw bp ;
/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/java/util/zip/
H A Dzip_util.c190 char *bp = (char *) buf; local
197 jint n = ZFILE_read(zfd, bp, count);
199 bp += n;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp2001 JvmtiBreakpoint bp(method_oop, location);
2003 if (jvmti_breakpoints.set(bp) == JVMTI_ERROR_DUPLICATE)
2028 JvmtiBreakpoint bp(method_oop, location);
2031 if (jvmti_breakpoints.clear(bp) == JVMTI_ERROR_NOT_FOUND)
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java819 for (EventRequestSpec bp : specs) {
820 out.println("\t" + bp);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp1153 BlockPrinter bp(&ip, cfg_only, live_only);
1154 start->iterate_preorder(&bp);

Completed in 703 milliseconds

123