Home
last modified time | relevance | path

Searched refs:earlier (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/webrtc/webrtc/base/
Dtimeutils.cc144 bool TimeIsBetween(uint32_t earlier, uint32_t middle, uint32_t later) { in TimeIsBetween() argument
145 if (earlier <= later) { in TimeIsBetween()
146 return ((earlier <= middle) && (middle <= later)); in TimeIsBetween()
148 return !((later < middle) && (middle < earlier)); in TimeIsBetween()
152 bool TimeIsLaterOrEqual(uint32_t earlier, uint32_t later) { in TimeIsLaterOrEqual() argument
154 int32_t diff = later - earlier; in TimeIsLaterOrEqual()
157 const bool later_or_equal = TimeIsBetween(earlier, later, earlier + HALF); in TimeIsLaterOrEqual()
162 bool TimeIsLater(uint32_t earlier, uint32_t later) { in TimeIsLater() argument
164 int32_t diff = later - earlier; in TimeIsLater()
167 const bool earlier_or_equal = TimeIsBetween(later, earlier, later + HALF); in TimeIsLater()
[all …]
Dtimeutils.h51 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
69 int32_t TimeDiff(uint32_t later, uint32_t earlier);
72 inline int32_t TimeSince(uint32_t earlier) { in TimeSince() argument
73 return TimeDiff(Time(), earlier); in TimeSince()
/external/llvm/test/MC/ARM/
Dobsolete-v8.s4 @ CHECK: instruction requires: armv7 or earlier
7 @ CHECK: instruction requires: armv7 or earlier
Ddirective-fpu-multiple.s3 @ The later .fpu directive should overwrite the earlier one.
/external/mesa3d/src/glsl/
Dast_to_hir.cpp2236 ir_variable *earlier = state->symbols->get_variable(decl->identifier); in get_variable_being_redeclared() local
2237 if (earlier == NULL || in get_variable_being_redeclared()
2252 if ((earlier->type->array_size() == 0) in get_variable_being_redeclared()
2254 && (var->type->element_type() == earlier->type->element_type())) { in get_variable_being_redeclared()
2262 if ((size > 0) && (size <= earlier->max_array_access)) { in get_variable_being_redeclared()
2265 earlier->max_array_access); in get_variable_being_redeclared()
2268 earlier->type = var->type; in get_variable_being_redeclared()
2273 && earlier->type == var->type in get_variable_being_redeclared()
2274 && earlier->mode == var->mode) { in get_variable_being_redeclared()
2278 earlier->origin_upper_left = var->origin_upper_left; in get_variable_being_redeclared()
[all …]
/external/icu/icu4c/source/data/brkitr/
Dlaodict.txt17 # out 4 entries that duplicate earlier entries.
4470 # ຊາດູກາຍ duplicate of an earlier entry
10734 # ອິດທິພົນ duplicate of earlier entry
/external/squashfs-tools/RELEASE-READMEs/
DREADME-4.09 earlier this year.
12 layouts for earlier kernels.
/external/markdown/tests/markdown-test/
Dhard-wrapped.txt1 In Markdown 1.0.0 and earlier. Version
/external/markdown/MarkdownTest/Tests_2004/
DHard-wrapped paragraphs with list-like lines.text1 In Markdown 1.0.0 and earlier. Version
/external/markdown/MarkdownTest/Tests_2007/
DHard-wrapped paragraphs with list-like lines.text1 In Markdown 1.0.0 and earlier. Version
/external/protobuf/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/libusb-compat/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/libexif/auto-m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/libopus/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/libcap-ng/libcap-ng-0.7/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/libmicrohttpd/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/pcre/dist/m4/
Dltsugar.m421 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
54 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/google-breakpad/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/libedit/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/vulkan-validation-layers/tests/gtest-1.7.0/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/libmtp/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/google-tv-pairing-protocol/cpp/m4/
Dltsugar.m420 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
53 # This macro is needed until we can rely on Autoconf 2.62, since earlier
/external/clang/test/SemaObjCXX/
Dcrash.mm24 #if __cplusplus <= 199711L // C++03 or earlier modes
Dvararg-non-pod.mm23 #if __cplusplus <= 199711L // C++03 or earlier modes
/external/autotest/client/tests/iosched_bugs/
Dcontrol11 starved forever without the bugfix(220.4 and earlier kernels) and with the

1234567891011