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

12

/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_util.h101 unsigned char *bp; member in union:__anon684
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DServiceInterceptor.java86 * @param bp created proxy instance
89 public void postCreateProxy(@NotNull WSBindingProvider bp,@NotNull Class<?> serviceEndpointInterface) { argument
97 * @param bp BindingProvider of dispatch object
99 public void postCreateDispatch(@NotNull WSBindingProvider bp) { argument
116 public void postCreateProxy(@NotNull WSBindingProvider bp, @NotNull Class<?> serviceEndpointInterface) {
118 si.postCreateProxy(bp,serviceEndpointInterface);
121 public void postCreateDispatch(@NotNull WSBindingProvider bp) {
123 si.postCreateDispatch(bp);
/openjdk7/jdk/test/com/sun/tracing/
H A DBasicFunctionality.java50 public static BasicProvider bp; field in class:BasicFunctionality
56 bp = factory.createProvider(BasicProvider.class);
72 if (bp == null) {
89 bp.plainProbe();
90 bp.probeWithArgs(42, (float)3.14, "spam", new Long(2L));
91 bp.probeWithArgs(42, (float)3.14, null, null);
92 bp.probeWithName();
93 bp.overloadedProbe();
94 bp.overloadedProbe(42);
97 Probe p = bp
[all...]
H A DBasicWithSecurityMgr.java50 public static BasicProvider bp; field in class:BasicWithSecurityMgr
58 bp = factory.createProvider(BasicProvider.class);
74 if (bp == null) {
91 bp.plainProbe();
92 bp.probeWithArgs(42, (float)3.14, "spam", new Long(2L));
93 bp.probeWithArgs(42, (float)3.14, null, null);
94 bp.probeWithName();
95 bp.overloadedProbe();
96 bp.overloadedProbe(42);
99 Probe p = bp
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DDocCommentScanner.java67 private int bp; field in class:DocCommentScanner
119 /** Convert Unicode escape; bp points to initial '\' character
123 if (ch == '\\' && unicodeConversionBp != bp) {
124 bp++; ch = buf[bp]; col++;
127 bp++; ch = buf[bp]; col++;
129 int limit = bp + 3;
133 while (bp < limit && d >= 0) {
134 bp
[all...]
H A DScanner.java111 private int bp; field in class:Scanner
187 bp = -1;
219 /** Convert unicode escape; bp points to initial '\' character
223 if (ch == '\\' && unicodeConversionBp != bp) {
224 bp++; ch = buf[bp];
227 bp++; ch = buf[bp];
229 int limit = bp + 3;
233 while (bp < limi
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.cpp87 byte* bytes::writeTo(byte* bp) { argument
88 memcpy(bp, ptr, len);
89 return bp+len;
H A Dbands.cpp161 char* bp = &b_name_buf[0]; local
162 b_name = bp;
163 sprintf(bp, "#%d/%d", bn, le_kind); bp += strlen(bp);
164 if (le_bci != 0) { sprintf(bp, "/bci%d", le_bci); bp += strlen(bp); }
165 if (le_back != 0) { sprintf(bp, "/back%d", le_back); bp
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwtran.c316 png_bytep bp = row; local
330 for (i = 0; i < row_bytes; i++, bp++)
335 v = *bp;
336 *bp = 0;
341 *bp |= (png_byte)((v << j) & 0xff);
344 *bp |= (png_byte)((v >> (-j)) & mask);
351 png_bytep bp = row; local
355 for (i = 0; i < istop; i++, bp++)
362 v = *bp;
363 *bp
378 png_bytep bp; local
[all...]
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c223 Byte *bp; local
232 bp = buffer;
239 if ((base_offset = find_end(fd, bp)) == -1) {
274 if ((bytes = read(fd, bp, MINREAD)) < 0) {
295 p = memmove(bp, p, bytes);
296 if ((res = read(fd, bp + bytes, MINREAD)) <= 0) {
304 if (p != bp)
305 p = memmove(bp, p, bytes);
308 if ((res = read(fd, bp + bytes, read_size)) <= 0) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.cpp166 char *bp = (char *)b; local
170 *resultp++ = *ap++ | *bp++;
180 char *bp = (char *)b; local
184 *resultp++ = *ap++ & *bp++;
194 char *bp = (char *)b; local
198 *resultp++ = *ap++ & ~*bp++;
H A DjvmtiImpl.hpp176 bool equals(JvmtiBreakpoint& bp);
177 bool lessThan(JvmtiBreakpoint &bp);
178 void copy(JvmtiBreakpoint& bp);
194 JvmtiBreakpoint *bp = new JvmtiBreakpoint(); local
195 bp->copy(*this);
196 return bp;
227 void set_at_safepoint(JvmtiBreakpoint& bp);
228 void clear_at_safepoint(JvmtiBreakpoint& bp);
240 int set(JvmtiBreakpoint& bp);
241 int clear(JvmtiBreakpoint& bp);
320 VM_ChangeBreakpoints(int operation, JvmtiBreakpoint *bp) argument
[all...]
H A DjvmtiImpl.cpp262 void JvmtiBreakpoint::copy(JvmtiBreakpoint& bp) { argument
263 _method = bp._method;
264 _bci = bp._bci;
267 bool JvmtiBreakpoint::lessThan(JvmtiBreakpoint& bp) { argument
272 bool JvmtiBreakpoint::equals(JvmtiBreakpoint& bp) { argument
273 return _method == bp._method
274 && _bci == bp._bci;
414 JvmtiBreakpoint& bp = _bps.at(i); local
416 bp.print();
423 void JvmtiBreakpoints::set_at_safepoint(JvmtiBreakpoint& bp) { argument
433 clear_at_safepoint(JvmtiBreakpoint& bp) argument
445 set(JvmtiBreakpoint& bp) argument
454 clear(JvmtiBreakpoint& bp) argument
478 JvmtiBreakpoint& bp = _bps.at(i); local
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/
H A DZipFile.c280 unsigned char *bp = (unsigned char *)&ze->extra[0]; local
281 len = (bp[0] | (bp[1] << 8));
H A Dzip_util.c190 char *bp = (char *) buf; local
197 jint n = ZFILE_read(zfd, bp, count);
199 bp += n;
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djpegdecoder.c175 unsigned char *bp; member in union:sun_jpeg_source_mgr::pixptr
502 unsigned char *bp; local
672 bp = jsrc.outbuf.bp + cinfo.image_width * 4;
674 pixel = (*--bp) << 24;
675 pixel |= (*--bp);
676 pixel |= (*--bp) << 8;
677 pixel |= (*--bp) << 16;
682 bp = jsrc.outbuf.bp
[all...]
/openjdk7/jdk/src/share/back/
H A DVirtualMachineImpl.c826 char *bp; local
837 bp = gdata->property_sun_boot_class_path;
838 if ( bp == NULL ) {
839 bp = "";
843 writePaths(out, bp);
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_pow.c79 bp[] = {1.0, 1.5,}, variable
235 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
236 v = one/(ax+bp[k]);
240 /* t_h=ax+bp[k] High */
243 t_l = ax - (t_h-bp[k]);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsgmt.c458 cmsTACestimator* bp = (cmsTACestimator*) Cargo; local
465 cmsDoTransform(bp->hRoundTrip, In, RoundTrip, 1);
468 for (Sum=0, i=0; i < bp ->nOutputChans; i++)
472 if (Sum > bp ->MaxTAC) {
474 bp ->MaxTAC = Sum;
476 for (i=0; i < bp ->nOutputChans; i++) {
477 bp ->MaxInput[i] = In[i];
490 cmsTACestimator bp; local
504 bp.nOutputChans = T_CHANNELS(dwFormatter);
505 bp
[all...]
H A Dcmscnvrt.c662 GrayOnlyParams* bp = (GrayOnlyParams*) Cargo; local
669 Out[3] = cmsEvalToneCurve16(bp->KTone, In[3]);
674 bp ->cmyk2cmyk ->Eval16Fn(In, Out, bp ->cmyk2cmyk->Data);
688 GrayOnlyParams bp; local
707 memset(&bp, 0, sizeof(bp));
714 bp.cmyk2cmyk = DefaultICCintents(ContextID,
722 if (bp.cmyk2cmyk == NULL) goto Error;
725 bp
793 PreserveKPlaneParams* bp = (PreserveKPlaneParams*) Cargo; local
879 PreserveKPlaneParams bp; local
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp697 NonPermObject* *bp = &_non_perm_bucket[(unsigned) klass->hash() % NON_PERM_BUCKETS]; local
698 for (NonPermObject* p; (p = (*bp)) != NULL; bp = &p->next()) {
701 return (*bp);
H A DciMethod.cpp192 BreakpointInfo* bp = instanceKlass::cast(me->method_holder())->breakpoints(); local
193 for (; bp != NULL; bp = bp->next()) {
194 if (bp->match(me)) {
195 code_at_put(bp->bci(), bp->orig_bytecode());
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp485 bp[] = {1.0, 1.5,}, variable
636 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
637 v = one/(ax+bp[k]);
641 /* t_h=ax+bp[k] High */
644 t_l = ax - (t_h-bp[k]);
/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...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp1442 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints(); local
1443 for (; bp != NULL; bp = bp->next()) {
1444 if (bp->match(this, bci)) {
1445 return bp->orig_bytecode();
1454 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints(); local
1455 for (; bp != NULL; bp = bp
1465 BreakpointInfo *bp = new BreakpointInfo(this, bci); local
[all...]

Completed in 104 milliseconds

12