Searched refs:sp (Results 126 - 150 of 376) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DSourceMapper.java94 StringBuffer sp;
98 sp = new StringBuffer(dirs[i++]);
101 sp.append(File.pathSeparator);
102 sp.append(dirs[i]);
104 return sp.toString();
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp138 intptr_t* sp; local
140 ExtendedPC epc = fetch_frame_from_context(ucVoid, &sp, &fp);
141 return frame(sp, fp, epc.pc());
151 intptr_t* sp = StubRoutines::Sparc::flush_callers_register_windows_func()(); local
152 frame myframe(sp, frame::unpatchable,
163 register void *sp __asm__ ("sp");
164 return (address)sp;
256 intptr_t *sp = (intptr_t *)os::Linux::ucontext_get_sp(uc); local
259 sp[L
305 intptr_t *sp = (intptr_t *)os::Linux::ucontext_get_sp(uc); local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DPropertySet.java322 Accessor sp = getPropertyMap().get(key);
323 if(sp!=null)
324 return sp.get(this);
342 Accessor sp = getPropertyMap().get(key);
343 if(sp!=null) {
344 Object old = sp.get(this);
345 sp.set(this,value);
360 Accessor sp = getPropertyMap().get(key);
361 if(sp!=null) {
362 Object old = sp
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPollPort.java55 private final int sp[]; field in class:EPollPort
101 this.sp = sv;
127 close0(sp[0]);
128 close0(sp[1]);
136 interrupt(sp[1]);
208 if (fd == sp[0]) {
211 drain1(sp[0]);
H A DKQueuePort.java52 private final int sp[]; field in class:KQueuePort
99 this.sp = sv;
125 close0(sp[0]);
126 close0(sp[1]);
134 interrupt(sp[1]);
210 if (fd == sp[0]) {
213 drain1(sp[0]);
H A DInheritedChannel.java78 InheritedSocketChannelImpl(SelectorProvider sp, argument
83 super(sp, fd, remote);
95 InheritedServerSocketChannelImpl(SelectorProvider sp, argument
99 super(sp, fd, true);
112 InheritedDatagramChannelImpl(SelectorProvider sp, argument
116 super(sp, fd);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConv_D64nw.c582 DTYPE *sp, *sl_c, *dl_c, *sl0; local
622 sp = sl0;
625 p2 = sp[0]; p3 = sp[sll]; p4 = sp[2*sll];
626 sp += 3*sll;
633 p3 = sp[0];
634 p4 = sp[sll];
639 sp += 2*sll;
646 sp
787 DTYPE k0, k1, k2, k3, k4, k5, k6, *sp; local
1069 DTYPE *sp = sp0 + l*sll; local
[all...]
H A Dmlib_ImageConv_F32nw.c582 DTYPE *sp, *sl_c, *dl_c, *sl0; local
622 sp = sl0;
625 p2 = sp[0]; p3 = sp[sll]; p4 = sp[2*sll];
626 sp += 3*sll;
633 p3 = sp[0];
634 p4 = sp[sll];
639 sp += 2*sll;
646 sp
787 DTYPE k0, k1, k2, k3, k4, k5, k6, *sp; local
1069 DTYPE *sp = sp0 + l*sll; local
[all...]
H A Dmlib_ImageConv_32nw.c73 type *sl, *sp, *sl1, *dl, *dp; \
81 type *sl, *sp = NULL, *dl, *dp = NULL; \
153 sp = sl;
167 buff2[i ] = (mlib_d64)sp[0];
168 buff2[i + 1] = (mlib_d64)sp[chan1];
169 buff2[i + 2] = (mlib_d64)sp[chan2];
179 sp += chan3;
187 buff2[i] = (mlib_d64)sp[0];
192 sp += chan1;
196 buff2[wid] = (mlib_d64)sp[
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparCardTableModRefBS.cpp38 void CardTableModRefBS::non_clean_card_iterate_parallel_work(Space* sp, MemRegion mr, argument
55 get_LNC_array_for_space(sp, lowest_non_clean,
60 SequentialSubTasksDone* pst = sp->par_seq_tasks();
68 process_stride(sp, mr, stride, n_strides, cl, ct,
88 process_stride(Space* sp, argument
134 DirtyCardToOopClosure* dcto_cl = sp->new_dcto_cl(cl, precision(),
140 process_chunk_boundaries(sp,
174 process_chunk_boundaries(Space* sp, argument
207 HeapWord* first_block = sp->block_start(chunk_mr.start());
213 && sp
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp55 address sp = (address)_sp; local
63 // sp must be within the usable part of the stack (not in guards)
64 bool sp_safe = (sp < thread->stack_base()) &&
65 (sp >= thread->stack_base() - usable_stack_size);
72 // unextended sp must be within the stack and above or equal sp
74 (unextended_sp >= sp);
80 // an fp must be within the stack and above (but not equal) sp
82 bool fp_safe = (fp < thread->stack_base() && (fp > sp) && (((fp + (return_addr_offset * sizeof(void*))) < thread->stack_base())));
84 // We know sp/unextended_s
356 interpreter_frame_set_last_sp(intptr_t* sp) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DDoubleByte.java143 int sp = src.arrayOffset() + src.position();
151 while (sp < sl && dp < dl) {
154 int b1 = sa[sp] & 0xff;
157 if (sl - sp < 2)
159 int b2 = sa[sp + 1] & 0xff;
167 sp += inSize;
169 return (sp >= sl) ? CoderResult.UNDERFLOW
172 src.position(sp - src.arrayOffset());
269 int sp = src.arrayOffset() + src.position();
278 while (sp < s
[all...]
H A DDoubleByteEncoder.java89 int sp = src.arrayOffset() + src.position();
96 while (sp < sl) {
97 char c = sa[sp];
99 if (sgp.parse(c, sa, sp, sl) < 0)
101 if (sl - sp < 2)
103 char c2 = sa[sp + 1];
116 sp += 2;
128 sp++;
138 sp++;
145 src.position(sp
[all...]
H A DSimpleEUCEncoder.java99 int sp = src.arrayOffset() + src.position();
101 assert (sp <= sl);
102 sp = (sp <= sl ? sp : sl);
114 while (sp < sl) {
116 char inputChar = sa[sp];
118 if (sgp.parse(inputChar, sa, sp, sl) < 0)
179 sp++;
183 src.position(sp
[all...]
H A DHKSCS.java84 int sp = src.arrayOffset() + src.position();
92 while (sp < sl) {
93 int b1 = sa[sp] & 0xff;
98 if (sl - sp < 2)
100 int b2 = sa[sp + 1] & 0xff;
126 sp += inSize;
130 src.position(sp - src.arrayOffset());
236 int sp = src.arrayOffset() + src.position();
244 while (sp < sl) {
245 char c = sa[sp];
[all...]
H A DGB18030.java12356 int sp = src.arrayOffset() + src.position();
12358 assert (sp <= sl);
12359 sp = (sp <= sl ? sp : sl);
12370 while (sp < sl) {
12373 byte1 = sa[sp] & 0xFF;
12383 if ( sl - sp < 2 )
12385 byte2 = sa[sp + 1] & 0xFF;
12393 if (sl - sp <
[all...]
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDoubleByteEncoder.java89 int sp = src.arrayOffset() + src.position();
96 while (sp < sl) {
97 char c = sa[sp];
99 if (sgp.parse(c, sa, sp, sl) < 0)
101 if (sl - sp < 2)
103 char c2 = sa[sp + 1];
116 sp += 2;
128 sp++;
138 sp++;
145 src.position(sp
[all...]
H A DDBCS_IBM_ASCII_Encoder.java90 int sp = src.arrayOffset() + src.position();
98 while (sp < sl) {
101 char c = sa[sp];
103 if (sgp.parse(c, sa, sp, sl) < 0)
134 sp++;
138 src.position(sp - src.arrayOffset());
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL.c130 #define LD_U8(sp, ind) vis_read_lo(vis_ld_u8(sp + ind))
131 #define LD_U16(sp, ind) vis_ld_u16(sp + ind)
153 #define GET_POINTER(sp) \
154 sp = *(mlib_u8**)((mlib_u8*)lineAddr + PTR_SHIFT(Y)) + \
271 #define GET_POINTER(sp) \
272 sp = *(mlib_u8**)((mlib_u8*)lineAddr + PTR_SHIFT(Y)) + \
574 mlib_u8 *sp; variable
582 sp
644 mlib_f32 *sp, s0, s1, s2, s3; variable
686 mlib_u8 *sp; variable
744 DTYPE *sp; local
805 DTYPE *sp; local
[all...]
H A Dmlib_v_ImageAffine_BL_S16.c165 #define LD_U16(sp, ind) vis_ld_u16(sp + ind)
212 #define GET_POINTER(sp) \
213 sp = *(mlib_u8**)((mlib_u8*)lineAddr + PTR_SHIFT(Y)) + 2*(X >> MLIB_SHIFT); \
331 #define GET_POINTER(sp) \
332 sp = *(mlib_f32**)((mlib_u8*)lineAddr + PTR_SHIFT(Y)) + (X >> MLIB_SHIFT); \
428 #define GET_POINTER(sp) \
429 sp = *(mlib_u8**)((mlib_u8*)lineAddr + PTR_SHIFT(Y)) + 4*(X >> MLIB_SHIFT); \
578 mlib_u8 *sp; variable
588 sp
634 mlib_d64 *sp; variable
679 mlib_u8 *sp; variable
745 DTYPE *sp; local
807 DTYPE *sp; local
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DScrollPaneAdjustable.java48 private ScrollPane sp; field in class:ScrollPaneAdjustable
180 * @param sp <code>ScrollPane</code>
186 ScrollPaneAdjustable(ScrollPane sp, AdjustmentListener l, int orientation) { argument
187 this.sp = sp;
254 if (sp.peer != null) {
255 ScrollPanePeer peer = (ScrollPanePeer) sp.peer;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSAXParseable.java88 SchemaParser sp = new SchemaParser(this, xr, eh, schemaBuilder, null, null,"");
90 ParsedPattern p = sp.getParsedPattern();
105 SchemaParser sp = new SchemaParser(this, xr, eh, schemaBuilder, g, g, inheritedNs);
107 return sp.getParsedPattern();
121 SchemaParser sp = new SchemaParser(this, xr, eh, schemaBuilder, null, s, inheritedNs);
123 return sp.getParsedPattern();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLocationPathPattern.java102 final StepPattern sp = getKernelPattern();
103 return (sp != null) ? sp.getAxis() : Axis.CHILD;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DNextDiagramAction.java69 int sp = model.getSecondPosition();
70 if (sp != model.getPositions().size() - 1) {
72 int nsp = sp + 1;
/openjdk7/jdk/test/java/lang/management/RuntimeMXBean/
H A DGetSystemProperties.java96 Properties sp = System.getProperties();
97 sp.put(KEY3, VALUE3);
98 sp.put(KEY4, VALUE4);

Completed in 133 milliseconds

1234567891011>>