Home
last modified time | relevance | path

Searched refs:fCore (Results 1 – 10 of 10) sorted by relevance

/haiku/src/add-ons/media/media-add-ons/mixer/
H A DAudioMixer.cpp103 fCore(new MixerCore(this)), in AudioMixer()
131 fCore->Settings()->SetSettingsFile(path.Path()); in AudioMixer()
147 fCore->Lock(); in ~AudioMixer()
148 fCore->Stop(); in ~AudioMixer()
149 fCore->Unlock(); in ~AudioMixer()
154 delete fCore; in ~AudioMixer()
157 DEBUG_ONLY(fCore = 0; fBufferGroup = 0; fWeb = 0); in ~AudioMixer()
164 fCore->Lock(); in ApplySettings()
165 fCore->SetOutputAttenuation(fCore->Settings()->AttenuateOutput() ? 0.708 : 1.0); in ApplySettings()
166 fCore->Unlock(); in ApplySettings()
[all …]
H A DMixerInput.cpp26 fCore(core), in MixerInput()
247 "frames %ld to %ld and %ld to %ld\n", fCore->fTimeSource->Now(), in BufferReceived()
288 "frames %ld to %ld\n", fCore->fTimeSource->Now(), start, in BufferReceived()
322 switch (fCore->Settings()->ResamplingAlgorithm()) { in UpdateResamplingAlgorithm()
464 if (fCore->OutputChannelCount() <= 2) { in _UpdateInputChannelDestinationMask()
H A DMixerOutput.h92 MixerCore *fCore; variable
H A DMixerInput.h95 MixerCore* fCore;
H A DAudioMixer.h131 MixerCore* fCore; variable
H A DMixerOutput.cpp21 fCore(core), in MixerOutput()
/haiku/src/system/kernel/scheduler/
H A Dscheduler_thread.cpp109 fCore = NULL; in Init()
130 fCore = core; in Init()
155 fCore != NULL ? fCore->ID() : -1); in Dump()
156 if (fCore != NULL && HasCacheExpired()) in Dump()
189 if (fCore != targetCore) { in ChooseCoreAndCPU()
192 if (fCore != NULL) in ChooseCoreAndCPU()
193 fCore->RemoveLoad(fNeededLoad, true); in ChooseCoreAndCPU()
198 fCore = targetCore; in ChooseCoreAndCPU()
211 int32 threadCount = fCore->ThreadCount(); in ComputeQuantum()
212 if (fCore->CPUCount() > 0) in ComputeQuantum()
[all …]
H A Dscheduler_thread.h88 inline CoreEntry* Core() const { return fCore; } in Core()
132 CoreEntry* fCore; member
266 if (fCore == NULL) in ShouldCancelPenalty()
363 fWentSleepActive = fCore->GetActiveTime(); in GoesAway()
366 fLoadMeasurementEpoch = fCore->RemoveLoad(fNeededLoad, false); in GoesAway()
378 fCore->RemoveLoad(fNeededLoad, true); in Dies()
400 CoreRunQueueLocker _(fCore); in PutBack()
404 fCore->PushFront(this, priority); in PutBack()
419 fCore->AddLoad(fNeededLoad, fLoadMeasurementEpoch, !updateLoad); in Enqueue()
445 CoreRunQueueLocker _(fCore); in Enqueue()
[all …]
H A Dscheduler_cpu.cpp47 CoreEntry* fCore; member
96 fCore = core; in Init()
104 fCore->AddCPU(this); in Start()
189 fCore->CPUHeap()->ModifyKey(this, priority); in UpdatePriority()
192 fCore->CPUWakesUp(this); in UpdatePriority()
194 fCore->CPUGoesIdle(this); in UpdatePriority()
233 CoreRunQueueLocker coreLocker(fCore); in ChooseNextThread()
235 ThreadData* sharedThread = fCore->PeekThread(); in ChooseNextThread()
248 fCore->Remove(sharedThread); in ChooseNextThread()
277 fCore->IncreaseActiveTime(active); in TrackActivity()
[all …]
H A Dscheduler_cpu.h53 inline CoreEntry* Core() const { return fCore; } in Core()
99 CoreEntry* fCore; variable