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

1 2 3 4 5 6 7

  /external/chromium/third_party/libjingle/source/talk/base/
time.cc 76 bool TimeIsBetween(uint32 earlier, uint32 middle, uint32 later) {
77 if (earlier <= later) {
78 return ((earlier <= middle) && (middle <= later));
80 return !((later < middle) && (middle < earlier));
84 bool TimeIsLaterOrEqual(uint32 earlier, uint32 later) {
86 int32 diff = later - earlier;
89 const bool later_or_equal = TimeIsBetween(earlier, later, earlier + HALF);
94 bool TimeIsLater(uint32 earlier, uint32 later) {
96 int32 diff = later - earlier;
99 const bool earlier_or_equal = TimeIsBetween(later, earlier, later + HALF)
    [all...]
time.h 51 bool TimeIsBetween(uint32 earlier, uint32 middle, uint32 later); // Inclusive
52 bool TimeIsLaterOrEqual(uint32 earlier, uint32 later); // Inclusive
53 bool TimeIsLater(uint32 earlier, uint32 later); // Exclusive
55 // Returns the later of two timestamps.
65 // Number of milliseconds that would elapse between 'earlier' and 'later'
66 // timestamps. The value is negative if 'later' occurs before 'earlier'.
67 int32 TimeDiff(uint32 later, uint32 earlier);
74 // The number of milliseconds that will elapse between now and 'later'.
75 inline int32 TimeUntil(uint32 later) {
76 return TimeDiff(later, Time())
    [all...]
  /external/clang/test/SemaCXX/
statements.cpp 13 goto later; // expected-error {{goto into protected scope}}
15 later:
  /external/mesa3d/docs/
MESA_release_buffers.spec 27 OpenGL 1.0 or later is required.
28 GLX 1.0 or later is required.
MESA_pack_invert.spec 16 Shipping (Mesa 4.0.4 and later)
28 OpenGL 1.0 or later is required
MESA_agp_offset.spec 16 Shipping (Mesa 4.0.4 and later. Only implemented in particular
29 OpenGL 1.0 or later is required
MESA_copy_sub_buffer.spec 27 OpenGL 1.0 or later is required.
28 GLX 1.0 or later is required.
MESA_pixmap_colormap.spec 27 OpenGL 1.0 or later is required.
28 GLX 1.0 or later is required.
MESA_set_3dfx_mode.spec 27 OpenGL 1.0 or later is required.
28 GLX 1.0 or later is required.
MESA_ycbcr_texture.spec 16 Shipping (Mesa 4.0.4 and later)
28 OpenGL 1.0 or later is required
MESA_resize_buffers.spec 26 Mesa 2.2 or later is required.
  /external/valgrind/main/helgrind/tests/
tc13_laog1.stderr.exp 14 followed by a later acquisition of lock at 0x........
22 followed by a later acquisition of lock at 0x........
hg02_deadlock.stderr.exp 20 followed by a later acquisition of lock at 0x........
32 followed by a later acquisition of lock at 0x........
tc15_laog_lockdel.stderr.exp 16 followed by a later acquisition of lock at 0x........
24 followed by a later acquisition of lock at 0x........
tc14_laog_dinphils.stderr.exp 17 followed by a later acquisition of lock at 0x........
  /external/quake/quake/src/QW/
qwcl.spec.sh 28 like excessive lag - actions actually happening much later than you did them;
29 packet loss - the game would freeze and resume several seconds later; and
qwsv.spec.sh 28 like excessive lag - actions actually happening much later than you did them;
29 packet loss - the game would freeze and resume several seconds later; and
  /dalvik/vm/mterp/x86/
OP_INVOKE_VIRTUAL_QUICK.S 21 EXPORT_PC # might throw later - get ready
OP_APUT_OBJECT.S 33 movl %ecx,sReg0 # store the two classes for later
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CommonToken.pm 199 =begin later
218 =end later
  /external/clang/test/SemaTemplate/
instantiate-function-1.cpp 184 later_label = &&later; // expected-error{{assigning to 'int'}}
186 later:
  /ndk/sources/host-tools/make-3.81/
subproc.bat 8 rem Software Foundation; either version 2, or (at your option) any later
  /external/linux-tools-perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Context.pm 49 at your option, any later version of Perl 5 you may have available.
Util.pm 88 at your option, any later version of Perl 5 you may have available.
  /external/protobuf/
configure.ac 98 AC_MSG_RESULT([ok (1.2.0.4 or later)])

Completed in 343 milliseconds

1 2 3 4 5 6 7