HomeSort by relevance Sort by last modified time
    Searched refs:lbits (Results 1 - 15 of 15) sorted by null

  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java 217 long lbits = Double.doubleToLongBits( dval ) & ~signMask; local
218 int binexp = (int)(lbits >>> expShift);
219 lbits &= fractMask;
221 lbits |= fractHOB;
223 assert lbits != 0L : lbits; // doubleToBigInt(0.0)
225 while ( (lbits & fractHOB ) == 0L){
226 lbits <<= 1;
231 int nbits = countBits( lbits );
237 lbits >>>= lowOrderZeros
251 long lbits = Double.doubleToLongBits( dval ) & ~signMask; local
282 long lbits = Double.doubleToLongBits( dval ); local
    [all...]
  /external/freetype/src/gzip/
infcodes.c 50 Byte lbits; /* ltree bits decoded per branch */ member in struct:inflate_codes_state
70 c->lbits = (Byte)bl;
108 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
117 c->sub.code.need = c->lbits;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
infcodes.c 50 Byte lbits; /* ltree bits decoded per branch */ member in struct:inflate_codes_state
70 c->lbits = (Byte)bl;
108 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
117 c->sub.code.need = c->lbits;
  /external/webp/src/utils/
bit_writer.c 271 vp8l_atype_t lbits = bw->bits_; local
278 lbits |= (vp8l_atype_t)bits << used;
296 *(vp8l_wtype_t*)bw->cur_ = (vp8l_wtype_t)WSWAP((vp8l_wtype_t)lbits);
298 lbits >>= VP8L_WRITER_BITS;
301 bw->bits_ = lbits | ((vp8l_atype_t)bits << used);
  /libcore/ojluni/src/main/java/java/lang/
FloatingDecimal.java 200 long lbits = Double.doubleToLongBits( dval ) & ~signMask; local
201 int binexp = (int)(lbits >>> expShift);
202 lbits &= fractMask;
204 lbits |= fractHOB;
206 assert lbits != 0L : lbits; // doubleToBigInt(0.0)
208 while ( (lbits & fractHOB ) == 0L){
209 lbits <<= 1;
214 int nbits = countBits( lbits );
220 lbits >>>= lowOrderZeros
234 long lbits = Double.doubleToLongBits( dval ) & ~signMask; local
265 long lbits = Double.doubleToLongBits( dval ); local
    [all...]
  /system/core/libpixelflinger/
buffer.cpp 263 const int32_t lbits = GGL_COLOR_BITS - 8; local
264 p = downshift_component(p, r, hbits, lbits, f->rh, f->rl, 0, 1, -1);
265 p = downshift_component(p, g, hbits, lbits, f->gh, f->gl, 0, 1, -1);
266 p = downshift_component(p, b, hbits, lbits, f->bh, f->bl, 0, 1, -1);
267 p = downshift_component(p, a, hbits, lbits, f->ah, f->al, 0, 1, -1);
  /external/zopfli/src/zopfli/
squeeze.c 127 int lbits = ZopfliGetLengthExtraBits(litlen); local
133 return cost + dbits + lbits;
147 int lbits = ZopfliGetLengthExtraBits(litlen); local
150 return stats->ll_symbols[lsym] + lbits + stats->d_symbols[dsym] + dbits;
  /external/iproute2/ip/
xfrm_policy.c 66 fprintf(stderr, "Usage: ip xfrm policy set [ hthresh4 LBITS RBITS ] [ hthresh6 LBITS RBITS ]\n");
981 fprintf(fp," local %d", th->lbits);
994 fprintf(fp," local %d", th->lbits);
1033 if (get_u8(&thr.lbits, *argv, 0) || thr.lbits > 32)
1034 invarg("hthresh4 LBITS value is invalid", *argv);
1048 if (get_u8(&thr.lbits, *argv, 0) || thr.lbits > 128)
1049 invarg("hthresh6 LBITS value is invalid", *argv)
    [all...]
  /bionic/libc/kernel/uapi/linux/
xfrm.h 369 __u8 lbits; member in struct:xfrmu_spdhthresh
  /external/iproute2/include/linux/
xfrm.h 355 __u8 lbits; member in struct:xfrmu_spdhthresh
  /external/kernel-headers/original/uapi/linux/
xfrm.h 355 __u8 lbits; member in struct:xfrmu_spdhthresh
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DoubleTest.java 283 long lbits = Double.doubleToLongBits(d.doubleValue()); local
284 double r = Double.longBitsToDouble(lbits);
410 long lbits = Double.doubleToLongBits(d.doubleValue()); local
411 double r = Double.longBitsToDouble(lbits);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 134 uptr lbits = size & ((1 << (l - S)) - 1); local
136 return kMidClass + (l1 << S) + hbits + (lbits > 0);
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 

Completed in 968 milliseconds