/external/webrtc/webrtc/modules/ |
module_common_types_unittest.cc | 97 TEST(LatestTimestamp, NoWrap) { 98 EXPECT_EQ(0xFFFFFFFFu, LatestTimestamp(0xFFFFFFFF, 0xFFFFFFFE)); 99 EXPECT_EQ(0x00000001u, LatestTimestamp(0x00000001, 0x00000000)); 100 EXPECT_EQ(0x00010000u, LatestTimestamp(0x00010000, 0x0000FFFF)); 103 TEST(LatestTimestamp, Wrap) { 104 EXPECT_EQ(0x00000000u, LatestTimestamp(0x00000000, 0xFFFFFFFF)); 105 EXPECT_EQ(0x00000000u, LatestTimestamp(0x00000000, 0xFFFF0000)); 106 EXPECT_EQ(0x0000FFFFu, LatestTimestamp(0x0000FFFF, 0xFFFFFFFF)); 107 EXPECT_EQ(0x0000FFFFu, LatestTimestamp(0x0000FFFF, 0xFFFF0000)); 109 EXPECT_EQ(0x00000000u, LatestTimestamp(0xFFFFFFFF, 0x00000000)) [all...] |
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3ZslStream.h | 62 * latestTimestamp will be filled with the largest timestamp of buffers 65 status_t clearInputRingBuffer(nsecs_t* latestTimestamp); 104 status_t clearInputRingBufferLocked(nsecs_t* latestTimestamp);
|
Camera3ZslStream.cpp | 319 status_t Camera3ZslStream::clearInputRingBuffer(nsecs_t* latestTimestamp) { 322 return clearInputRingBufferLocked(latestTimestamp); 325 status_t Camera3ZslStream::clearInputRingBufferLocked(nsecs_t* latestTimestamp) { 327 if (latestTimestamp) { 328 *latestTimestamp = mProducer->getLatestTimestamp();
|
/frameworks/support/compat/gingerbread/android/support/v4/app/ |
NotificationCompatBase.java | 62 String[] participants, long latestTimestamp);
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
inter_arrival.cc | 75 current_timestamp_group_.timestamp = LatestTimestamp(
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/ |
index.php | 81 if ($timeStamp > $latestTimeStamp[$parts[0]]) {
82 $latestTimeStamp[$parts[0]] = $timeStamp;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
CallLogProvider.java | 614 long latestTimestamp = 0; 634 latestTimestamp = Long.valueOf(startTime); 653 if (latestTimestamp > lastSyncTime) { 654 setLastTimeSynced(latestTimestamp, forShadow); 661 return latestTimestamp;
|
/hardware/invensense/6515/libsensors_iio/ |
MPLSensor.cpp | [all...] |
/hardware/invensense/65xx/libsensors_iio/ |
MPLSensor.cpp | [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
BugleDatabaseOperations.java | 559 final String conversationId, final String messageId, final long latestTimestamp, 567 values.put(ConversationColumns.SORT_TIMESTAMP, latestTimestamp); 600 final String conversationId, final String messageId, final long latestTimestamp, 604 db, conversationId, messageId, latestTimestamp, keepArchived, null, [all...] |
/external/webrtc/webrtc/modules/include/ |
module_common_types.h | 763 inline uint32_t LatestTimestamp(uint32_t timestamp1, uint32_t timestamp2) {
|
/frameworks/support/compat/java/android/support/v4/app/ |
NotificationCompat.java | [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-packaging-plugin/0.20.0/ |
tycho-packaging-plugin-0.20.0.jar | |
/frameworks/base/core/java/android/app/ |
Notification.java | [all...] |