HomeSort by relevance Sort by last modified time
    Searched defs:huge (Results 51 - 53 of 53) sorted by null

1 23

  /external/fdlibm/
e_j1.c 72 huge = 1e300, variable
126 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
e_pow.c 75 huge = 1.0e300, variable
190 /* |y| is huge */
193 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
194 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
197 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
198 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java 1116 final long huge = 0xFFFFffffL; /* 2^32 - 1 */ local
1118 c.remoteWindow += (windowChange & huge); /* avoid sign extension */
1122 if ((c.remoteWindow > huge))
1123 c.remoteWindow = huge;
    [all...]

Completed in 600 milliseconds

1 23