Searched refs:Ebits (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/vp8/common/x86/
H A Dboolcoder.cxx33 bool bool_coder_spec::float_init( uint Ebits, uint Mbits) { argument
34 uint b = (ebits = Ebits) + (mbits = Mbits);
349 unsigned int Ebits, unsigned int Mbits, vp8bc_c_prec *p
351 return new bool_coder_spec_float( Ebits, Mbits, NS::r( p), p? p->prec : 12);
/external/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc356 #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 |
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A Ddtoa.cpp138 #define Ebits 11 macro
646 if (k < Ebits) {
647 d0 = Exp_1 | (y >> (Ebits - k));
649 d1 = (y << (32 - Ebits + k)) | (w >> (Ebits - k));
653 if (k -= Ebits) {

Completed in 72 milliseconds