Searched refs:hb (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_hypot.c69 int j,k,ha,hb; local
72 hb = __HI(y)&0x7fffffff; /* high word of y */
73 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
75 __HI(b) = hb; /* b <- |b| */
76 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
82 if(((hb^0x7ff00000)|__LO(b))==0) w = b;
86 ha -= 0x25800000; hb -= 0x25800000; k += 600;
88 __HI(b) = hb;
[all...]
/openjdk7/jaxp/src/javax/xml/parsers/
H A DSAXParser.java123 * @param hb The SAX HandlerBase to use.
132 public void parse(InputStream is, HandlerBase hb) argument
139 this.parse(input, hb);
149 * @param hb The SAX HandlerBase to use.
162 HandlerBase hb,
171 this.parse(input, hb);
235 * @param hb The SAX HandlerBase to use.
243 public void parse(String uri, HandlerBase hb) argument
250 this.parse(input, hb);
284 * @param hb Th
160 parse( InputStream is, HandlerBase hb, String systemId) argument
292 parse(File f, HandlerBase hb) argument
348 parse(InputSource is, HandlerBase hb) argument
[all...]
/openjdk7/jdk/test/javax/management/notification/
H A DFilterExceptionTest.java55 public void handleNotification(Notification n, Object hb) {
H A DNotifExecutorTest.java53 public void handleNotification(Notification n, Object hb) {
/openjdk7/jdk/src/share/classes/java/nio/
H A DHeap-X-Buffer.java.template50 protected final $type$[] hb;
59 hb = new $type$[cap];
72 hb = buf;
88 hb = buf;
98 return new Heap$Type$Buffer$RW$(hb,
107 return new Heap$Type$Buffer$RW$(hb,
117 return new Heap$Type$BufferR(hb,
135 return hb[ix(nextGetIndex())];
139 return hb[ix(checkIndex(i))];
146 System.arraycopy(hb, i
[all...]
H A DX-Buffer.java.template266 final $type$[] hb; // Non-null only for heap buffers
274 $type$[] hb, int offset)
277 this.hb = hb;
935 return (hb != null) && !isReadOnly;
958 if (hb == null)
962 return hb;
986 if (hb == null)
H A DDirect-X-Buffer.java.template329 } else if (src.hb != null) {
336 put(src.hb, src.offset + spos, srem);
/openjdk7/jdk/test/javax/management/timer/
H A DStartTest.java85 public void handleNotification(Notification n, Object hb) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DSAXParserImpl.java327 public void parse(InputSource is, HandlerBase hb) argument
332 if (hb != null) {
333 xmlReader.setDocumentHandler(hb);
334 xmlReader.setEntityResolver(hb);
335 xmlReader.setErrorHandler(hb);
336 xmlReader.setDTDHandler(hb);
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotifBufferSizePropertyNameTest.java48 public void handleNotification(Notification n, Object hb) {
H A DNotifReconnectDeadlockTest.java143 public void handleNotification(Notification n, Object hb) {
/openjdk7/jdk/test/javax/management/monitor/
H A DCounterMonitorInitThresholdTest.java65 public void handleNotification(Notification n, Object hb) { argument
H A DCounterMonitorThresholdTest.java73 public void handleNotification(Notification n, Object hb) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java279 Type hb = null;
281 hb = syms.objectType;
283 hb = hibounds.head;
285 hb = types.glb(hibounds);
286 if (hb == null ||
287 hb.isErroneous())
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java250 long hb = ((bv >>> 1) + carry) & LONG_MASK;
252 if (v != hb)
253 return v < hb ? -1 : 1;
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXMBeanNotifications.java665 final Notification n, Object hb) {
664 handleNotification( final Notification n, Object hb) argument

Completed in 54 milliseconds