HomeSort by relevance Sort by last modified time
    Searched refs:earlier (Results 1 - 25 of 283) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ARM/
obsolete-v8.s 4 @ CHECK: instruction requires: armv7 or earlier
7 @ CHECK: instruction requires: armv7 or earlier
directive-fpu-multiple.s 3 @ The later .fpu directive should overwrite the earlier one.
  /external/webrtc/webrtc/base/
timeutils.h 51 bool TimeIsBetween(uint32_t earlier,
54 bool TimeIsLaterOrEqual(uint32_t earlier, uint32_t later); // Inclusive
55 bool TimeIsLater(uint32_t earlier, uint32_t later); // Exclusive
62 // Returns the earlier of two timestamps.
67 // Number of milliseconds that would elapse between 'earlier' and 'later'
68 // timestamps. The value is negative if 'later' occurs before 'earlier'.
69 int32_t TimeDiff(uint32_t later, uint32_t earlier);
71 // The number of milliseconds that have elapsed since 'earlier'.
72 inline int32_t TimeSince(uint32_t earlier) {
73 return TimeDiff(Time(), earlier);
    [all...]
timeutils.cc 65 // If now is earlier than old, there may have been a race between
144 bool TimeIsBetween(uint32_t earlier, uint32_t middle, uint32_t later) {
145 if (earlier <= later) {
146 return ((earlier <= middle) && (middle <= later));
148 return !((later < middle) && (middle < earlier));
152 bool TimeIsLaterOrEqual(uint32_t earlier, uint32_t later) {
154 int32_t diff = later - earlier;
157 const bool later_or_equal = TimeIsBetween(earlier, later, earlier + HALF);
162 bool TimeIsLater(uint32_t earlier, uint32_t later)
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-d10v/
regression-001.s 3 ;; The next line caused an earlier ld to core dump.
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug488.go 8 // import, then an earlier file in the package would incorrectly
issue18915.go 8 // or tags are consistent with earlier Go versions.
issue15091.go 15 // or (now, with the error caught earlier)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug488.go 8 // import, then an earlier file in the package would incorrectly
issue18915.go 8 // or tags are consistent with earlier Go versions.
issue15091.go 15 // or (now, with the error caught earlier)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
b-badfil2.s 3 % number 42, without specifying the file name, which an earlier LOP_FILE
  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/dep3/
dep3.go 5 // linker before depBase (because it is earlier in the import list).
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/dep3/
dep3.go 5 // linker before depBase (because it is earlier in the import list).
  /prebuilts/go/darwin-x86/src/net/
tcpsockopt_darwin.go 24 case nil, syscall.ENOPROTOOPT: // OS X 10.7 and earlier don't support this option
  /prebuilts/go/linux-x86/src/net/
tcpsockopt_darwin.go 24 case nil, syscall.ENOPROTOOPT: // OS X 10.7 and earlier don't support this option
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlmain.i 21 This library file works with Perl 5.003. It may work with earlier
  /external/mesa3d/src/glsl/
ast_to_hir.cpp 2236 ir_variable *earlier = state->symbols->get_variable(decl->identifier); local
2501 ir_variable *const earlier = local
2887 ir_variable *earlier = get_variable_being_redeclared(var, decl, state); local
    [all...]
  /external/nanohttpd/
README.md 30 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
153 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
184 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
196 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
  /external/nanohttpd/src/site/markdown/
index.md 30 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
153 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
180 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
192 <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
  /prebuilts/go/darwin-x86/src/go/ast/
filter_test.go 39 // later in the source over ones appearing earlier. This is why
  /prebuilts/go/linux-x86/src/go/ast/
filter_test.go 39 // later in the source over ones appearing earlier. This is why
  /external/autotest/site_utils/bootperf-bin/
bootperf 107 results are added in without overwriting earlier results.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
loadstore.go 49 // earlier basic block by using it on both branches.
  /prebuilts/go/darwin-x86/src/io/
multi.go 30 mr.readers[0] = eofReader{} // permit earlier GC

Completed in 910 milliseconds

1 2 3 4 5 6 7 8 91011>>