/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_r11g11b10f.h | 119 float scale, decimal; local 127 decimal = 1.0f + (float) mantissa / 64; 128 f32.f = scale * decimal; 205 float scale, decimal; local 213 decimal = 1.0f + (float) mantissa / 32; 214 f32.f = scale * decimal;
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_r11g11b10f.h | 119 float scale, decimal; local 127 decimal = 1.0f + (float) mantissa / 64; 128 f32.f = scale * decimal; 205 float scale, decimal; local 213 decimal = 1.0f + (float) mantissa / 32; 214 f32.f = scale * decimal;
|
/frameworks/base/telephony/java/android/telephony/ |
CellIdentityCdma.java | 38 * Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. 45 * Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. 68 * @param lon Longitude is a decimal number ranges from -2592000 70 * @param lat Latitude is a decimal number ranges from -1296000 117 * @return Base station longitude, which is a decimal number as 128 * @return Base station latitude, which is a decimal number as
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLParserIdioms.cpp | 76 String serializeForNumberType(const Decimal& number) 79 // Decimal::toString appends exponent, e.g. "0e-18" 92 Decimal parseToDecimalForNumberType(const String& string, const Decimal& fallbackValue) 101 const Decimal value = Decimal::fromString(string); 108 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max()); 113 return value.isZero() ? Decimal(0) : value;
|
/external/chromium_org/third_party/simplejson/ |
__init__.py | 71 >>> from decimal import Decimal 72 >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1') 109 from decimal import Decimal 189 If *use_decimal* is true (default: ``True``) then decimal.Decimal 286 If *use_decimal* is true (default: ``True``) then decimal.Decimal [all...] |
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/ |
float.h | 46 /* Number of decimal digits, q, such that any floating-point number with q 47 decimal digits can be rounded into a floating-point number with p radix b 48 digits and back again without change to the q decimal digits, 152 /* Number of decimal digits, n, such that any floating-point number in the 154 to a floating-point number with n decimal digits and back again without
|
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/ |
float.h | 46 /* Number of decimal digits, q, such that any floating-point number with q 47 decimal digits can be rounded into a floating-point number with p radix b 48 digits and back again without change to the q decimal digits, 152 /* Number of decimal digits, n, such that any floating-point number in the 154 to a floating-point number with n decimal digits and back again without
|
/libcore/luni/src/main/java/java/text/ |
DecimalFormat.java | 33 * A concrete subclass of {@link NumberFormat} that formats decimal numbers. It 124 * <td>Decimal separator or monetary decimal separator.</td> 176 * international currency symbol. If present in a pattern, the monetary decimal 177 * separator is used instead of the decimal separator.</td> 207 * thousands separators, decimal separators, etc. may be set to arbitrary 212 * positive from negative values. Another example is that the decimal separator 269 * grouping intervals are recognized: The one between the decimal point and the 280 * {@code DecimalFormat} parses all Unicode characters that represent decimal 314 * positions after the decimal, where <em>j</em> is less than the maximu [all...] |
/external/chromium_org/chrome/browser/resources/print_preview/data/ |
measurement_system.js | 25 * and decimal point. 59 * Maximum number of decimal places to keep for local unit. 104 * @return {string} The decimal delimeter character of the measurement
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/ |
SAXUtil.java | 85 throw new SAXException("Expected a decimal, got '"+f+"'"); 92 throw new SAXException("Expected a decimal"); 97 throw new SAXException("Expected a decimal, got '"+f+"'");
|
/external/llvm/include/llvm/ADT/ |
Twine.h | 107 /// unsigned decimal integer. 111 /// decimal integer. 114 /// A pointer to an unsigned long value, to render as an unsigned decimal 118 /// A pointer to a long value, to render as a signed decimal integer. 122 /// decimal integer. 125 /// A pointer to a long long value, to render as a signed decimal integer. 306 /// Construct a twine to print \p Val as an unsigned decimal integer. 312 /// Construct a twine to print \p Val as a signed decimal integer. 318 /// Construct a twine to print \p Val as an unsigned decimal integer. 324 /// Construct a twine to print \p Val as a signed decimal integer [all...] |
/prebuilts/devtools/repository/ |
sdk-stats-1.xsd | 84 <!-- A decimal percentage, between 0.0 and 100.0% --> 88 <xsd:documentation>A decimal percentage, between 0.0 and 100.0%.</xsd:documentation> 90 <xsd:restriction base="xsd:decimal">
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
decDouble.decTest | 2 -- decDouble.decTest -- run all decDouble decimal arithmetic tests -- 5 -- Please see the document "General Decimal Arithmetic Testcases" -- 6 -- at http://www2.hursley.ibm.com/decimal for the description of --
|
decQuad.decTest | 2 -- decQuad.decTest -- run all decQuad decimal arithmetic tests -- 5 -- Please see the document "General Decimal Arithmetic Testcases" -- 6 -- at http://www2.hursley.ibm.com/decimal for the description of --
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_unicodedata.py | 94 str(self.db.decimal(char, -1)), 129 self.assertEqual(self.db.decimal(u'A',None), None) 130 self.assertEqual(self.db.decimal(u'9'), 9) 131 self.assertEqual(self.db.decimal(u'\u215b', None), None) 132 self.assertEqual(self.db.decimal(u'\u2468', None), None) 133 self.assertEqual(self.db.decimal(u'\U00020000', None), None) 135 self.assertRaises(TypeError, self.db.decimal) 136 self.assertRaises(TypeError, self.db.decimal, u'xx') 137 self.assertRaises(ValueError, self.db.decimal, u'x') 242 # Test that decimal and numeric are consistent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
decDouble.decTest | 2 -- decDouble.decTest -- run all decDouble decimal arithmetic tests -- 5 -- Please see the document "General Decimal Arithmetic Testcases" -- 6 -- at http://www2.hursley.ibm.com/decimal for the description of --
|
decQuad.decTest | 2 -- decQuad.decTest -- run all decQuad decimal arithmetic tests -- 5 -- Please see the document "General Decimal Arithmetic Testcases" -- 6 -- at http://www2.hursley.ibm.com/decimal for the description of --
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_unicodedata.py | 94 str(self.db.decimal(char, -1)), 129 self.assertEqual(self.db.decimal(u'A',None), None) 130 self.assertEqual(self.db.decimal(u'9'), 9) 131 self.assertEqual(self.db.decimal(u'\u215b', None), None) 132 self.assertEqual(self.db.decimal(u'\u2468', None), None) 133 self.assertEqual(self.db.decimal(u'\U00020000', None), None) 135 self.assertRaises(TypeError, self.db.decimal) 136 self.assertRaises(TypeError, self.db.decimal, u'xx') 137 self.assertRaises(ValueError, self.db.decimal, u'x') 242 # Test that decimal and numeric are consistent [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
JSONValues.cpp | 222 DecimalNumber decimal = m_doubleValue; local 224 if (decimal.bufferLengthForStringDecimal() > WTF::NumberToStringBufferLength) { 225 // Not enough room for decimal. Use exponential format. 226 if (decimal.bufferLengthForStringExponential() > WTF::NumberToStringBufferLength) { 231 length = decimal.toStringExponential(buffer, WTF::NumberToStringBufferLength); 233 length = decimal.toStringDecimal(buffer, WTF::NumberToStringBufferLength);
|
/frameworks/base/telephony/java/android/telephony/cdma/ |
CdmaCellLocation.java | 34 * Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. 42 * Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. 84 * Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. 97 * Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. 232 * 3GPP2 C.S0005-A v6.0 standard) to decimal degrees 235 * @return latitude or longitude in decimal degrees units
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
binary.sed | 6 # b convert decimal to binary 7 # d convert binary to decimal 10 # < shift left binary by decimal number of bits (11 3< gives 11000) 11 # > shift right binary by decimal number of bits (1011 2> gives 10) 99 # Decimal to binary via analog form 112 # Binary to decimal via analog form
|
binary2.sed | 6 # b convert decimal to binary 7 # d convert binary to decimal 10 # < shift left binary by decimal number of bits (11 3< gives 11000) 11 # > shift right binary by decimal number of bits (1011 2> gives 10) 127 # Decimal to binary via analog form 141 # Binary to decimal via analog form
|
binary3.sed | 6 # b convert decimal to binary 7 # d convert binary to decimal 10 # < shift left binary by decimal number of bits (11 3< gives 11000) 11 # > shift right binary by decimal number of bits (1011 2> gives 10) 112 # Decimal to binary via analog form 125 # Binary to decimal via analog form
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
calc.rb | 51 | n=DECIMAL {$result = Float($n.text)} 59 DECIMAL: DIGIT+ '.' DIGIT+;
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
bandwidth_view.js | 112 * Converts bytes to kilobytes rounded to one decimal place. 119 * Returns bandwidth savings as a percent rounded to one decimal place.
|