Searched refs:Ebits (Results 1 – 5 of 5) sorted by relevance
/external/libvpx/vp8/common/ |
D | boolcoder.h | 185 bool float_init(uint Ebits, uint Mbits); 190 uint prec, Rounding rr, uint Ebits = 0, uint Mbits = 0 194 float_init(Ebits, Mbits); in w() 279 uint Ebits = 3, uint Mbits = 4, Rounding rr = down_full, uint prec = 12 281 : bool_coder_spec(prec, rr, Ebits, Mbits) in bool_coder_spec()
|
/external/webkit/JavaScriptCore/wtf/ |
D | dtoa.cpp | 225 #define Ebits 11 macro 843 if (k < Ebits) { in b2d() 844 d0 = Exp_1 | (y >> (Ebits - k)); in b2d() 846 d1 = (y << (32 - Ebits + k)) | (w >> (Ebits - k)); in b2d() 850 if (k -= Ebits) { in b2d() 859 if (k < Ebits + 16) { in b2d() 861 d0 = Exp_1 | y << k - Ebits | z >> Ebits + 16 - k; in b2d() 864 d1 = z << k + 16 - Ebits | w << k - Ebits | y >> 16 + Ebits - k; in b2d() 869 k -= Ebits + 16; in b2d()
|
/external/libvpx/vp8/common/x86/ |
D | boolcoder.cxx | 33 bool bool_coder_spec::float_init( uint Ebits, uint Mbits) { in float_init() argument 34 uint b = (ebits = Ebits) + (mbits = Mbits); in float_init() 349 unsigned int Ebits, unsigned int Mbits, vp8bc_c_prec *p in vp8bc_float_spec() argument 351 return new bool_coder_spec_float( Ebits, Mbits, NS::r( p), p? p->prec : 12); in vp8bc_float_spec()
|
/external/v8/src/third_party/dtoa/ |
D | dtoa.c | 318 #define Ebits 11 macro 373 #define Ebits 8 /* exponent has 7 bits, but 8 is the right value in b2d */ macro 399 #define Ebits 8 macro 1173 if (k < Ebits) { 1174 d0 = Exp_1 | (y >> (Ebits - k)); 1176 d1 = (y << ((32-Ebits) + k)) | (w >> (Ebits - k)); 1180 if (k -= Ebits) { 1190 if (k < Ebits + 16) { 1192 d0 = Exp_1 | (y << (k - Ebits)) | (z >> (Ebits + 16 - k)); 1195 d1 = (z << (k + 16 - Ebits)) | (w << (k - Ebits)) | (y >> (16 + Ebits - k)); [all …]
|
/external/chromium/base/third_party/dmg_fp/ |
D | dtoa.cc | 356 #define Ebits 11 macro 413 #define Ebits 8 /* exponent has 7 bits, but 8 is the right value in b2d */ macro 442 #define Ebits 8 macro 1221 if (k < Ebits) { 1222 d0 = Exp_1 | y >> (Ebits - k); 1224 d1 = y << ((32-Ebits) + k) | w >> (Ebits - k); 1228 if (k -= Ebits) { 1238 if (k < Ebits + 16) { 1240 d0 = Exp_1 | y << k - Ebits | z >> Ebits + 16 - k; 1243 d1 = z << k + 16 - Ebits | w << k - Ebits | y >> 16 + Ebits - k; [all …]
|