/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
func.go | 359 // These magic auxint values let us easily cache non-numeric constants
|
/prebuilts/go/darwin-x86/src/image/png/ |
writer.go | 41 // Positive CompressionLevel values are reserved to mean a numeric zlib
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
func.go | 359 // These magic auxint values let us easily cache non-numeric constants
|
/prebuilts/go/linux-x86/src/image/png/ |
writer.go | 41 // Positive CompressionLevel values are reserved to mean a numeric zlib
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
r5900-full-vu0.d | 1 #objdump: -dr --prefix-addresses --show-raw-insn -M gpr-names=numeric -mmips:5900
|
r5900-full.d | 1 #objdump: -dr --prefix-addresses --show-raw-insn -M gpr-names=numeric -mmips:5900
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/pydoc_data/ |
topics.py | 6 'atom-literals': u"\nLiterals\n********\n\nPython supports string literals and various numeric literals:\n\n literal ::= stringliteral | integer | longinteger\n | floatnumber | imagnumber\n\nEvaluation of a literal yields an object of the given type (string,\ninteger, long integer, floating point number, complex number) with the\ngiven value. The value may be approximated in the case of floating\npoint and imaginary (complex) literals. See section Literals for\ndetails.\n\nAll literals correspond to immutable data types, and hence the\nobject's identity is less important than its value. Multiple\nevaluations of literals with the same value (either the same\noccurrence in the program text or a different occurrence) may obtain\nthe same object or a different object with the same value.\n",
10 'binary': u'\nBinary arithmetic operations\n****************************\n\nThe binary arithmetic operations have the conventional priority\nlevels. Note that some of these operations also apply to certain non-\nnumeric types. Apart from the power operator, there are only two\nlevels, one for multiplicative operators and one for additive\noperators:\n\n m_expr ::= u_expr | m_expr "*" u_expr | m_expr "//" u_expr | m_expr "/" u_expr\n | m_expr "%" u_expr\n a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr\n\nThe "*" (multiplication) operator yields the product of its arguments.\nThe arguments must either both be numbers, or one argument must be an\ninteger (plain or long) and the other must be a sequence. In the\nformer case, the numbers are converted to a common type and then\nmultiplied together. In the latter case, sequence repetition is\nperformed; a negative repetition factor yields an empty sequence.\n\nThe "/" (division) and "//" (floor division) operators yield the\nquotient of their arguments. The numeric arguments are first\nconverted to a common type. Plain or long integer division yields an\ninteger of the same type; the result is that of mathematical division\nwith the \'floor\' function applied to the result. Division by zero\nraises the "ZeroDivisionError" exception.\n\nThe "%" (modulo) operator yields the remainder from the division of\nthe first argument by the second. The numeric arguments are first\nconverted to a common type. A zero right argument raises the\n"ZeroDivisionError" exception. The arguments may be floating point\nnumbers, e.g., "3.14%0.7" equals "0.34" (since "3.14" equals "4*0.7 +\n0.34".) The modulo operator always yields a result with the same sign\nas its second operand (or zero); the absolute value of the result is\nstrictly smaller than the absolute value of the second operand [2].\n\nThe integer division and modulo operators are connected by the\nfollowing identity: "x == (x/y)*y + (x%y)". Integer division and\nmodulo are also connected with the built-in function "divmod()":\n"divmod(x, y) == (x/y, x%y)". These identities don\'t hold for\nfloating point numbers; there similar identities hold approximately\nwhere "x/y" is replaced by "floor(x/y)" or "floor(x/y) - 1" [3].\n\nIn addition to performing the modulo operation on numbers, the "%"\noperator is also overloaded by string and unicode objects to perform\nstring formatting (also known as interpolation). The syntax for string\nformatting is described in the Python Library Reference, section\nString Formatting Operations.\n\nDeprecated since version 2.3: The floor division operator, the modulo\noperator, and the "divmod()" function are no longer defined for\ncomplex numbers. Instead, convert to a floating point number using\nthe "abs()" function if appropriate.\n\nThe "+" (addition) operator yields the sum of its arguments. The\narguments must either both be numbers or both sequences of the same\ntype. In the former case, the numbers are converted to a common type\nand then added together. In the latter case, the sequences are\nconcatenated.\n\nThe "-" (subtraction) operator yields the difference of its arguments.\nThe numeric arguments are first converted to a common type.\n',
16 'booleans': u'\nBoolean operations\n******************\n\n or_test ::= and_test | or_test "or" and_test\n and_test ::= not_test | and_test "and" not_test\n not_test ::= comparison | "not" not_test\n\nIn the context of Boolean operations, and also when expressions are\nused by control flow statements, the following values are interpreted\nas false: "False", "None", numeric zero of all types, and empty\nstrings and containers (including strings, tuples, lists,\ndictionaries, sets and frozensets). All other values are interpreted\nas true. (See the "__nonzero__()" special method for a way to change\nthis.)\n\nThe operator "not" yields "True" if its argument is false, "False"\notherwise.\n\nThe expression "x and y" first evaluates *x*; if *x* is false, its\nvalue is returned; otherwise, *y* is evaluated and the resulting value\nis returned.\n\nThe expression "x or y" first evaluates *x*; if *x* is true, its value\nis returned; otherwise, *y* is evaluated and the resulting value is\nreturned.\n\n(Note that neither "and" nor "or" restrict the value and type they\nreturn to "False" and "True", but rather return the last evaluated\nargument. This is sometimes useful, e.g., if "s" is a string that\nshould be replaced by a default value if it is empty, the expression\n"s or \'foo\'" yields the desired value. Because "not" has to invent a\nvalue anyway, it does not bother to return a value of the same type as\nits argument, so e.g., "not \'foo\'" yields "False", not "\'\'".)\n',
[all...] |
/art/runtime/gc/collector/ |
semi_space.cc | 21 #include <numeric> [all...] |
/external/ImageMagick/www/api/ |
image.php | 470 <p>A filename describing the format to use to write the numeric argument. Only the first numeric format identifier is replaced.</p> 473 <p>Numeric value to substitute into format filename.</p>
|
/external/libbrillo/brillo/http/ |
http_utils_unittest.cc | 5 #include <numeric>
|
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/ |
eval.pass.cpp | 22 #include <numeric>
|
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/ |
eval.pass.cpp | 22 #include <numeric>
|
/external/llvm/lib/Analysis/ |
BlockFrequencyInfoImpl.cpp | 18 #include <numeric>
|
/external/llvm/lib/LTO/ |
ThinLTOCodeGenerator.cpp | 53 #include <numeric>
|
/external/piex/src/ |
tiff_parser.cc | 21 #include <numeric>
|
/external/webrtc/webrtc/modules/audio_device/android/ |
audio_device_unittest.cc | 14 #include <numeric> [all...] |
/external/webrtc/webrtc/modules/audio_device/ios/ |
audio_device_unittest_ios.cc | 14 #include <numeric> [all...] |
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
bwe_test_framework_unittest.cc | 13 #include <numeric> [all...] |
/frameworks/native/libs/vr/libpdx_default_transport/ |
pdx_benchmarks.cpp | 32 #include <numeric> [all...] |
/packages/apps/Settings/src/com/android/settings/ |
ChooseLockPassword.java | 643 if (metrics.numeric < mPasswordMinNumeric) { [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
StringUtil.java | [all...] |
/prebuilts/go/darwin-x86/src/archive/tar/ |
reader.go | 572 // newline-terminated numeric fields. The first field is the number of entries 577 // Note that the GNU manual says that numeric values should be encoded in octal
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
type.go | 93 // - Types[TIDEAL] represents untyped numeric constants. 110 // Types to represent untyped numeric constants.
|
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/driver/ |
driver.go | 889 " Restrict to samples with numeric tags in range (eg \"32kb:1mb\")\n" + 891 " Avoid samples with numeric tags in range (eg \"1mb:\")\n" +
|
/prebuilts/go/darwin-x86/src/unicode/ |
maketables.go | 280 logger.Fatalf("%U: bad numeric field: %s", point, err) 355 // Break on slashes and look for the first numeric field [all...] |