Searched defs:ih (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionTargeter.java71 public boolean containsTarget(InstructionHandle ih); argument
H A DLineNumberGen.java74 private InstructionHandle ih; field in class:LineNumberGen
80 * @param ih instruction handle to reference
82 public LineNumberGen(InstructionHandle ih, int src_line) { argument
83 setInstruction(ih);
88 * @return true, if ih is target of this line number
91 public boolean containsTarget(InstructionHandle ih) { argument
92 return this.ih == ih;
101 if(old_ih != ih)
102 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih
117 setInstruction(InstructionHandle ih) argument
[all...]
H A DBranchHandle.java123 public void setTarget(InstructionHandle ih) { argument
124 bi.setTarget(ih);
H A DBranchInstruction.java253 * @return true, if ih is target of this instruction
256 public boolean containsTarget(InstructionHandle ih) { argument
257 return (target == ih);
H A DCodeExceptionGen.java173 * @return true, if ih is target of this handler
176 public boolean containsTarget(InstructionHandle ih) { argument
177 return (start_pc == ih) || (end_pc == ih) || (handler_pc == ih);
H A DLocalVariableGen.java244 * @return true, if ih is target of this variable
247 public boolean containsTarget(InstructionHandle ih) { argument
248 return (start == ih) || (end == ih);
H A DSelect.java228 * @return true, if ih is target of this instruction
231 public boolean containsTarget(InstructionHandle ih) { argument
232 if(target == ih)
236 if(targets[i] == ih)
H A DInstructionList.java197 InstructionHandle ih;
199 ih = append((BranchInstruction)i);
201 ih = append(i);
203 ih.setPosition(off);
204 ihs[count] = ih;
222 InstructionHandle ih = findHandle(ihs, pos, count, target);
224 if(ih == null) // Search failed
227 bi.setTarget(ih); // Update target
236 ih = findHandle(ihs, pos, count, target);
238 if(ih
256 append(InstructionHandle ih, InstructionList il) argument
331 append(InstructionHandle ih) argument
412 append(InstructionHandle ih, CompoundInstruction c) argument
423 append(InstructionHandle ih, Instruction i) argument
434 append(InstructionHandle ih, BranchInstruction i) argument
452 insert(InstructionHandle ih, InstructionList il) argument
498 insert(InstructionHandle ih) argument
596 insert(InstructionHandle ih, Instruction i) argument
607 insert(InstructionHandle ih, CompoundInstruction c) argument
618 insert(InstructionHandle ih, BranchInstruction i) argument
696 move(InstructionHandle ih, InstructionHandle target) argument
770 delete(InstructionHandle ih) argument
[all...]
H A DMethodGen.java427 * @param ih instruction to tag
431 public LineNumberGen addLineNumber(InstructionHandle ih, int src_line) { argument
432 LineNumberGen l = new LineNumberGen(ih, src_line);
711 for(InstructionHandle ih = il.getStart(); ih != null; ih = next) {
712 next = ih.next;
714 if((next != null) && (ih.getInstruction() instanceof NOP)) {
716 il.delete(ih);
790 for(InstructionHandle ih
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEEvent.java80 InternetHeaders ih; field in class:MIMEEvent.Headers
82 Headers(InternetHeaders ih) { argument
83 this.ih = ih;
91 return ih;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DExpression.java180 public void backPatchFalseList(InstructionHandle ih) { argument
181 _falseList.backPatch(ih);
184 public void backPatchTrueList(InstructionHandle ih) { argument
185 _trueList.backPatch(ih);
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dk_rem_pio2.c129 * ih integer. If >0 it indicates q[] is >= 0.5, hence
183 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
218 ih = 0;
222 ih = iq[jz-1]>>(23-q0);
224 else if(q0==0) ih = iq[jz-1]>>23;
225 else if(z>=0.5) ih=2;
227 if(ih>0) { /* q > 0.5 */
245 if(ih==2) {
299 y[0] = (ih==0)? fw: -fw;
305 y[0] = (ih
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrig.cpp226 * ih integer. If >0 it indicats q[] is >= 0.5, hence
261 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
296 ih = 0;
300 ih = iq[jz-1]>>(23-q0);
302 else if(q0==0) ih = iq[jz-1]>>23;
303 else if(z>=0.5) ih=2;
305 if(ih>0) { /* q > 0.5 */
323 if(ih==2) {
377 y[0] = (ih==0)? fw: -fw;
383 y[0] = (ih
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp1427 instanceOop ih = instanceKlass::cast(k())->allocate_instance(THREAD); local
1428 return ih;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp759 double ix, iy, iw, ih, pw, ph; local
776 ih = env->CallDoubleMethod(origPaper, getID);
831 if (ih < 0.0) {
832 ih = 0.0;
843 if (ih + epsilon > imgHgt) {
844 ih = imgHgt;
849 if ((iy + ih + epsilon) > (imgY+imgHgt)) {
850 iy = (imgY+imgHgt) - ih;
861 env->CallVoidMethod(newPaper, setImageableID, ix, iy, iw, ih);

Completed in 112 milliseconds