| /nv-g11n/inputmethod/sunpinyin2/src/ |
| portability.cpp | 56 m_base = da.getValue(); 58 m_base = d; 66 double d = this->m_base * b.m_base; 75 double d = this->m_base / b.m_base; 84 if (m_base >= 0.0 && b.m_base >= 0.0) { 85 return (m_exp < b.m_exp || (m_exp == b.m_exp && m_base < b.m_base)); [all...] |
| portability.h | 109 TLongExpFloat(const TLongExpFloat& b) : m_base(b.m_base), m_exp(b.m_exp) { } 111 TLongExpFloat(int exp = 0, double base=0.0) : m_base(base), m_exp(exp) { } 135 {if (buf) sprintf(buf, "%10lf*2^%d", m_base, m_exp);} 139 {return ::log2(m_base)+m_exp;} 142 double m_base; member in struct:TLongExpFloat
|
| /nv-g11n/inputmethod/sunpinyin2/src/pinyin/ |
| datrie_impl.h | 83 m_base = (T *) (m_mem + 8); 84 m_check = m_base + m_len; 103 m_base = m_check = NULL; 111 unsigned t = abs (m_base[s]) + c; 113 if (t < m_len && m_check[t] == (T)s && m_base[t]) { 117 v = m_base[t] < 0? -1: 0;
|
| datrie.h | 59 CDATrie () : m_mem(0), m_len(0), m_base(0), m_check(0), m_value(0) {}; 77 T * m_base; member in class:CDATrie
|
| /nv-g11n/inputmethod/sunpinyin/ime/src/ |
| imi_context.h | 67 TLongExpFloat(const TLongExpFloat& b) : m_base(b.m_base), m_exp(b.m_exp) { } 69 TLongExpFloat(int exp = 0, double base=0.0) : m_base(base), m_exp(exp) { } 93 { if (buf) sprintf(buf, "%10lf*2^%d", m_base, m_exp); } 99 //assert(m_base > 0.0); 101 return ::log2(m_base)+m_exp; 105 double m_base; member in struct:TLongExpFloat
|
| imi_context.cpp | [all...] |