HomeSort by relevance Sort by last modified time
    Searched refs:number (Results 1376 - 1400 of 1948) sorted by null

<<51525354555657585960>>

  /hardware/samsung_slsi/exynos5/libgscaler/
exynos_gscaler.c 155 int number, int N)
157 int result = number;
168 result = (number - (number & (N-1)));
171 result = number - (number % N);
    [all...]
  /external/v8/src/
d8.js 675 // be the step count. If it's not a number, then assume that we're
677 var stepcount = Number(args[0]);
678 if (stepcount == Number.NaN) {
783 request.arguments.number = args[0];
804 request.arguments.number = args[0];
    [all...]
spaces.cc     [all...]
  /development/scripts/app_engine_server/
memcache_zipserve.py 251 # number of redirects
626 A positive number if file1 is before file2
627 A negative number if file2 is before file1
653 # the number of segments differs, we either mismatched comparing
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 81 /** The channel number for the current token */
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 160 expr = number(opPos); break;
481 * Compile a 'number(...)' operation.
485 * @return reference to {@link org.apache.xpath.operations.Number} instance.
489 protected Expression number(int opPos) throws TransformerException method in class:Compiler
491 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
512 * Compile a literal number value.
814 * @param stepCount The number of steps to expect.
966 * Count the number of predicates in the step.
970 * @return The number of predicates for this step.
    [all...]
  /external/bison/build-aux/
texinfo.tex 62 % If in a .fmt file, print the version number
107 % Use TeX 3.0's \inputlineno to get the line number, for better error
    [all...]
  /external/bison/
cfg.mk 41 # files -- otherwise, you'd need to have the upcoming version number
  /external/bison/djgpp/
djunpack.bat 32 Rem where XYZ is the version number. If the argument includes leading
  /external/ceres-solver/docs/
helloworld.tex 16 : public ceres::SizedCostFunction<1 /* number of residuals */,
  /external/chromium/net/tools/testserver/
chromiumsync.py 130 return SYNC_TYPE_TO_EXTENSION[data_type].number
136 if protocol_extension.number == protocol_data_type_id:
272 # Monotonically increasing version number. The next object change will
287 entry will be updated with a new version number and sync_timestamp.
293 # Maintain a global (rather than per-item) sequence number and use it
468 timestamp query. Changes_remaining indicates the number of changes
507 """Perform an optimistic concurrency check on the version number.
607 # Perform the optimistic concurrency check on the entry's version number.
691 # Commit the change. This also updates the version number.
    [all...]
  /external/chromium/testing/gtest/src/
gtest-internal-inl.h 230 // Parameter num_chars may additionally limit the number
261 // Given the total number of shards, the shard index, and the test id,
270 // Returns the number of elements in the given container that satisfy
409 // max_depth - the maximum number of stack frames to be included
411 // skip_count - the number of top frames to be skipped; doesn't count
516 // Gets the number of successful test cases.
519 // Gets the number of failed test cases.
522 // Gets the number of all test cases.
525 // Gets the number of all test cases that contain at least one test
529 // Gets the number of successful tests
    [all...]
  /external/compiler-rt/lib/msandr/
msandr.cc 581 CHECK(sysnum == sysnum_full.number);
624 CHECK(sysnum == sysnum_full.number);
  /external/elfutils/src/
ld.h 122 /* If nonzero this is the archive sequence number which can be used to
181 /* Section group number. This is the index of the SHT_GROUP section. */
207 /* The version number section. */
211 /* Number of versions defined. */
213 /* True if the version with the given index number is used in the
226 /* Number of entries in the symbol table. */
377 /* Check whether special section number is known. */
379 #define SPECIAL_SECTION_NUMBER_P(state, number) \
380 DL_CALL_FCT ((state)->callbacks.special_section_number_p, (state, number))
757 /* Number of DSO files. *
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 230 // Parameter num_chars may additionally limit the number
261 // Given the total number of shards, the shard index, and the test id,
270 // Returns the number of elements in the given container that satisfy
416 // max_depth - the maximum number of stack frames to be included
418 // skip_count - the number of top frames to be skipped; doesn't count
523 // Gets the number of successful test cases.
526 // Gets the number of failed test cases.
529 // Gets the number of all test cases.
532 // Gets the number of all test cases that contain at least one test
536 // Gets the number of successful tests
    [all...]
  /external/icu4c/i18n/
fmtable.cpp 155 // Creates a formattable object with a decimal number value from a string.
157 Formattable::Formattable(const StringPiece &number, UErrorCode &status) {
159 setDecimalNumber(number, status);
702 // No decimal number for the formattable yet. Which means the value was
704 // from parsing, or from the user setting a decimal number, fDecimalNum
803 return; // String didn't contain a decimal number.
  /external/iproute2/doc/
ip-tunnels.tex 86 only skips some number of hops.
204 growing number of tunneled fragments is very real.
236 \verb|N| is number in the range 1--255. 0 is special value,
259 either number or IP address-like dotted quad.
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-internal-inl.h 230 // Parameter num_chars may additionally limit the number
261 // Given the total number of shards, the shard index, and the test id,
270 // Returns the number of elements in the given container that satisfy
416 // max_depth - the maximum number of stack frames to be included
418 // skip_count - the number of top frames to be skipped; doesn't count
523 // Gets the number of successful test cases.
526 // Gets the number of failed test cases.
529 // Gets the number of all test cases.
532 // Gets the number of all test cases that contain at least one test
536 // Gets the number of successful tests
    [all...]
  /external/libxml2/
xpointer.c 132 * Returns the number of child for an element, -1 in case of error
175 * @no: the child number
915 * @index: the child number
2778 xmlXPathObjectPtr number = NULL; local
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 19 (* numberexpr ::= number *)
20 | [< 'Token.Number n >] -> Ast.Number n
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h 229 // Parameter num_chars may additionally limit the number
260 // Given the total number of shards, the shard index, and the test id,
269 // Returns the number of elements in the given container that satisfy
415 // max_depth - the maximum number of stack frames to be included
417 // skip_count - the number of top frames to be skipped; doesn't count
522 // Gets the number of successful test cases.
525 // Gets the number of failed test cases.
528 // Gets the number of all test cases.
531 // Gets the number of all test cases that contain at least one test
535 // Gets the number of successful tests
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-internal-inl.h 207 // Parameter num_chars may additionally limit the number
217 // Returns the number of active threads, or 0 when there is an error.
240 // Given the total number of shards, the shard index, and the test id,
277 // Gets the number of elements.
326 // Returns the number of elements that satisfy a given predicate.
484 int capacity_; // The number of elements allocated for elements_.
485 int size_; // The number of elements; in the range [0, capacity_].
659 // max_depth - the maximum number of stack frames to be included
661 // skip_count - the number of top frames to be skipped; doesn't count
766 // Gets the number of successful test cases
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 203 // Parameter num_chars may additionally limit the number
213 // Returns the number of active threads, or 0 when there is an error.
236 // Given the total number of shards, the shard index, and the test id,
273 // Gets the number of elements.
322 // Returns the number of elements that satisfy a given predicate.
480 int capacity_; // The number of elements allocated for elements_.
481 int size_; // The number of elements; in the range [0, capacity_].
655 // max_depth - the maximum number of stack frames to be included
657 // skip_count - the number of top frames to be skipped; doesn't count
762 // Gets the number of successful test cases
    [all...]
  /external/skia/tools/
PictureRenderer.cpp 226 * If path is non NULL, append number to it, and call write(SkCanvas*, SkString) to write the
229 static bool writeAppendNumber(SkCanvas* canvas, const SkString* path, int number) {
234 pathWithNumber.appendf("%i", number);
414 // space in the width-wise direction and then minimize the number of tiles. The
  /external/v8/test/mjsunit/
arguments.js 93 // an unexpected number of arguments works.

Completed in 739 milliseconds

<<51525354555657585960>>