Searched refs:endTime (Results 1 - 25 of 94) sorted by relevance

1234

/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/ckutils/atomTime/
H A DatomTime.c147 PLAT_TIME endTime; local
328 PLAT_GET_TIME(endTime);
329 elapsed = PLAT_GET_NS(startTime, endTime);
345 PLAT_GET_TIME(endTime);
346 elapsed = PLAT_GET_NS(startTime, endTime);
362 PLAT_GET_TIME(endTime);
363 elapsed = PLAT_GET_NS(startTime, endTime);
381 PLAT_GET_TIME(endTime);
382 elapsed = PLAT_GET_NS(startTime, endTime);
402 PLAT_GET_TIME(endTime);
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DMediaFragmentURIParser.h44 double endTime();
54 bool parseNPTFragment(const LChar*, unsigned length, double& startTime, double& endTime);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/ckutils/giantAsmBench/
H A DgiantAsmBench.c81 PLAT_TIME endTime; local
154 PLAT_GET_TIME(endTime);
155 elapsed = PLAT_GET_NS(startTime, endTime);
169 PLAT_GET_TIME(endTime);
170 elapsed = PLAT_GET_NS(startTime, endTime);
183 PLAT_GET_TIME(endTime);
184 elapsed = PLAT_GET_NS(startTime, endTime);
197 PLAT_GET_TIME(endTime);
198 elapsed = PLAT_GET_NS(startTime, endTime);
221 PLAT_GET_TIME(endTime);
[all...]
/macosx-10.10/WebCore-7600.1.25/html/track/
H A DDataCue.idl30 CustomConstructor(unrestricted double startTime, unrestricted double endTime, any value, optional DOMString type),
33 CustomConstructor(unrestricted double startTime, unrestricted double endTime, ArrayBuffer data),
H A DTextTrackCue.idl29 Constructor(unrestricted double startTime, unrestricted double endTime, DOMString text),
41 [SetterRaisesException] attribute unrestricted double endTime;
H A DInbandGenericTextTrack.cpp114 double endTime = cueData->endTime(); local
115 if (std::isinf(endTime) && mediaElement())
116 endTime = mediaElement()->duration();
117 cue->setEndTime(endTime, IGNORE_EXCEPTION);
156 RefPtr<TextTrackCueGeneric> cue = TextTrackCueGeneric::create(*scriptExecutionContext(), cueData->startTime(), cueData->endTime(), cueData->content());
159 LOG(Media, "InbandGenericTextTrack::addGenericCue ignoring already added cue: start=%.2f, end=%.2f, content=\"%s\"\n", cueData->startTime(), cueData->endTime(), cueData->content().utf8().data());
163 LOG(Media, "InbandGenericTextTrack::addGenericCue added cue: start=%.2f, end=%.2f, content=\"%s\"\n", cueData->startTime(), cueData->endTime(), cueData->content().utf8().data());
187 LOG(Media, "InbandGenericTextTrack::removeGenericCue removing cue: start=%.2f, end=%.2f, content=\"%s\"\n", cueData->startTime(), cueData->endTime(), cueData->content().utf8().data());
190 LOG(Media, "InbandGenericTextTrack::removeGenericCue UNABLE to find cue: start=%.2f, end=%.2f, content=\"%s\"\n", cueData->startTime(), cueData->endTime(), cueDat
[all...]
H A DVTTCue.idl27 Constructor(unrestricted double startTime, unrestricted double endTime, DOMString text),
H A DTextTrackCue.cpp202 return startTime() < other->startTime() || (startTime() == other->startTime() && endTime() > other->endTime());
221 if (match != IgnoreDuration && endTime() != cue.endTime())
247 if (endTime() != cue.startTime())
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DTimelineRecord.js26 WebInspector.TimelineRecord = function(type, startTime, endTime, callFrames, sourceCodeLocation)
37 this._endTime = endTime || NaN;
80 get endTime()
89 return this.endTime - this.startTime;
101 return this.endTime - this.activeStartTime;
H A DTimeline.js50 get endTime()
95 if (isNaN(this._endTime) || this._endTime < record.endTime) {
96 this._endTime = record.endTime;
H A DProfileNode.js102 get endTime()
105 this._endTime = Math.min(this._calls.lastValue.endTime, Infinity);
156 if (rangeStartTime > call.endTime || rangeEndTime < call.startTime)
162 return previousValue + Math.min(call.endTime, rangeEndTime) - Math.max(rangeStartTime, call.startTime);
166 var endTime = Math.min(this._calls.lastValue.endTime, rangeEndTime); variable
178 return {startTime: startTime, endTime: endTime, totalTime: totalTime, selfTime: selfTime, callCount: callCount, averageTime: averageTime};
233 this._endTime = info.endTime;
H A DProfileNodeCall.js55 get endTime()
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DProfileNodeDataGridNode.js81 updateRangeTimes: function(startTime, endTime)
86 if (oldRangeStartTime === startTime && oldRangeEndTime === endTime)
90 this._rangeEndTime = endTime;
94 var profileEnd = this._profileNode.endTime;
98 var newEndBoundary = clamp(profileStart, endTime, profileEnd);
H A DScriptTimelineView.js111 if (this.startTime !== this._oldStartTime || this.endTime !== this._oldEndTime) {
114 dataGridNode.updateRangeTimes(this.startTime, this.endTime);
121 this._oldEndTime = this.endTime;
178 return new WebInspector.ProfileNodeDataGridNode(treeElement.profileNode, this.zeroTime, this.startTime, this.endTime);
186 var endTime = this.endTime;
190 var profileNodeDataGridNode = new WebInspector.ProfileNodeDataGridNode(childProfileNode, zeroTime, startTime, endTime);
216 var endTime = this.endTime;
220 var profileNodeDataGridNode = new WebInspector.ProfileNodeDataGridNode(profileNode, zeroTime, startTime, endTime);
[all...]
H A DScriptTimelineDataGridNode.js81 updateRangeTimes: function(startTime, endTime)
86 if (oldRangeStartTime === startTime && oldRangeEndTime === endTime)
90 this._rangeEndTime = endTime;
102 var newEndBoundary = clamp(recordStart, endTime, recordEnd);
H A DTimelineContentView.js179 var endTime = this._timelineOverview.selectionStartTime + this._timelineOverview.selectionDuration;
187 return startTime <= itemEndTime && itemStartTime <= endTime;
199 if (!checkTimeBounds(sourceCodeTimeline.startTime, sourceCodeTimeline.endTime))
203 if (checkTimeBounds(record.startTime, record.endTime))
213 if (checkTimeBounds(call.startTime, call.endTime))
222 return checkTimeBounds(record.startTime, record.endTime);
267 this._currentTimelineView.endTime = this._timelineOverview.selectionStartTime + this._timelineOverview.selectionDuration;
286 var endTime = this._recording.endTime;
291 this._updateTimes(startTime, currentTime, endTime);
[all...]
H A DTimelineOverviewGraph.js78 get endTime()
83 set endTime(x)
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/kcTime/
H A DkcTime.cpp83 CPUTime startTime, endTime; local
165 endTime = CPUTimeRead();
170 deltaMs[dex] = CPUTimeDeltaMs(startTime, endTime);
192 endTime = CPUTimeRead();
193 deltaMs[dex] = CPUTimeDeltaMs(startTime, endTime);
209 endTime = CPUTimeRead();
210 deltaMs[0] = CPUTimeDeltaMs(startTime, endTime);
222 endTime = CPUTimeRead();
227 deltaMs[dex] = CPUTimeDeltaMs(startTime, endTime);
239 endTime
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DTimelineManager.js124 var endTime = recordPayload.endTime / 1000;
142 console.assert(isNaN(endTime));
161 console.assert(isNaN(endTime));
178 console.assert(isNaN(endTime));
180 // Pass the startTime as the endTime since this record type has no duration.
185 this._addRecord(new WebInspector.LayoutTimelineRecord(WebInspector.LayoutTimelineRecord.EventType.RecalculateStyles, startTime, endTime, callFrames, sourceCodeLocation));
189 console.assert(isNaN(endTime));
191 // Pass the startTime as the endTime since this record type has no duration.
201 this._addRecord(new WebInspector.LayoutTimelineRecord(layoutRecordType, startTime, endTime, callFrame
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/kc/
H A Dkc-50-thread.c29 double endTime = GetTimeOfDay() + kTestLength; local
41 } while (GetTimeOfDay() < endTime);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/ckutils/giantBench/
H A DgiantBench.c137 PLAT_TIME endTime; local
143 PLAT_GET_TIME(endTime);
144 return PLAT_GET_NS(startTime, endTime);
153 PLAT_TIME endTime; local
159 PLAT_GET_TIME(endTime);
160 return PLAT_GET_NS(startTime, endTime);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOFilterInterruptEventSource.cpp158 uint64_t endTime = 0; local
180 endTime = mach_absolute_time();
181 IA_ADD_VALUE(&IOInterruptEventSource::reserved->statistics->interruptStatistics[kInterruptAccountingFirstLevelTimeIndex], endTime - startTime);
198 uint64_t endTime = 0; local
220 endTime = mach_absolute_time();
221 IA_ADD_VALUE(&IOInterruptEventSource::reserved->statistics->interruptStatistics[kInterruptAccountingFirstLevelTimeIndex], endTime - startTime);
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAudioParamTimeline.h63 float valuesForTimeRange(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate);
106 float valuesForTimeRangeImpl(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate);
H A DAudioParamTimeline.cpp130 double endTime = startTime + 1.1 / sampleRate; // time just beyond one sample-frame local
132 value = valuesForTimeRange(startTime, endTime, defaultValue, &value, 1, sampleRate, controlRate);
138 float AudioParamTimeline::valuesForTimeRange(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate) argument
150 float value = valuesForTimeRangeImpl(startTime, endTime, defaultValue, values, numberOfValues, sampleRate, controlRate);
155 float AudioParamTimeline::valuesForTimeRangeImpl(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate) argument
162 if (!m_events.size() || endTime <= m_events[0].time()) {
176 double fillToTime = std::min(endTime, firstEventTime);
203 double time2 = nextEvent ? nextEvent->time() : endTime + 1;
209 double fillToTime = std::min(endTime, time2);
303 fillToTime = std::min(endTime, time
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/OriginData/
H A DWebOriginDataManager.cpp81 void WebOriginDataManager::deleteEntriesModifiedBetweenDates(WKOriginDataTypes types, double startTime, double endTime, uint64_t callbackID) argument
87 DatabaseProcess::shared().deleteIndexedDatabaseEntriesModifiedBetweenDates(startTime, endTime, callbackID);

Completed in 98 milliseconds

1234