/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/grub/stage2/ |
gunzip.c | 77 lbits and dbits tuning parameters. 410 This results of this trade are in the variables lbits and dbits 411 below. lbits is the number of bits the first level table for literal/ 425 about one bit more than those, so lbits is 8+1 and dbits is 5+1. 431 static int lbits = 9; /* bits in base literal/length lookup table */ variable 1036 bl = lbits; [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
DoubleTest.java | 283 long lbits = Double.doubleToLongBits(d.doubleValue()); local 284 double r = Double.longBitsToDouble(lbits); 394 long lbits = Double.doubleToLongBits(d.doubleValue()); local 395 double r = Double.longBitsToDouble(lbits); [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_allocator.h | 131 uptr lbits = size & ((1 << (l - S)) - 1); local 133 return kMidClass + (l1 << S) + hbits + (lbits > 0); [all...] |