Home
last modified time | relevance | path

Searched refs:currentTimeMS (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
DRecognizeCommands.java100 public RecognitionResult processLatestResults(float[] currentResults, long currentTimeMS) { in processLatestResults() argument
109 if ((!previousResults.isEmpty()) && (currentTimeMS < previousResults.getFirst().first)) { in processLatestResults()
112 + currentTimeMS in processLatestResults()
120 final long timeSinceMostRecent = currentTimeMS - previousResults.getLast().first; in processLatestResults()
127 previousResults.addLast(new Pair<Long, float[]>(currentTimeMS, currentResults)); in processLatestResults()
130 final long timeLimit = currentTimeMS - averageWindowDurationMs; in processLatestResults()
138 final long samplesDuration = currentTimeMS - earliestTime; in processLatestResults()
173 timeSinceLastTop = currentTimeMS - previousTopLabelTime; in processLatestResults()
178 previousTopLabelTime = currentTimeMS; in processLatestResults()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_receiver_help.cc143 const int64_t currentTimeMS) { in InsertTMMBRItem() argument
152 _tmmbrSetTimeouts[i] = currentTimeMS; in InsertTMMBRItem()
160 _tmmbrSetTimeouts.push_back(currentTimeMS); in InsertTMMBRItem()
167 const int64_t currentTimeMS) { in GetTMMBRSet() argument
175 if (currentTimeMS - _tmmbrSetTimeouts[sourceIdx] > in GetTMMBRSet()
Drtcp_receiver_help.h109 const int64_t currentTimeMS);
115 const int64_t currentTimeMS);
/external/v8/src/inspector/
Dv8-console-message.cc586 m_data[contextId].m_time[id] = m_inspector->client()->currentTimeMS(); in time()
601 return m_inspector->client()->currentTimeMS() - it->second; in timeLog()
608 double elapsed = m_inspector->client()->currentTimeMS() - it->second; in timeEnd()
Dv8-inspector-impl.cc267 m_client->currentTimeMS(), toString16(detailedMessage), in exceptionThrown()
283 m_client->currentTimeMS(), toString16(message), exceptionId); in exceptionRevoked()
Dcustom-preview.cc39 inspector->client()->currentTimeMS(), ConsoleAPIType::kError, arguments, in reportError()
Dv8-heap-profiler-agent-impl.cc333 lastSeenObjectId, m_session->inspector()->client()->currentTimeMS()); in requestHeapStatsUpdate()
Dv8-console.cc99 m_inspector->client()->currentTimeMS(), type, arguments, in reportCall()
/external/v8/include/
Dv8-inspector.h216 virtual double currentTimeMS() { return 0; } in currentTimeMS() function