Searched refs:latency (Results 1 - 25 of 53) sorted by last modified time

123

/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c9839 cmd.latency = htole32(sc->sc_xtal_latency);
9844 printf("%s: failed to set soc latency: %d\n", DEVNAME(sc), err);
H A Dif_iwmreg.h1401 * host DRAM powered on (via dummy accesses to DRAM) to maintain low-latency
1403 * from going into a power-savings mode that would cause higher DRAM latency,
2563 * struct iwm_soc_configuration_cmd - Set device stabilization latency
2568 * @latency: time for SOC to ensure stable power & XTAL
2572 uint32_t latency; member in struct:iwm_soc_configuration_cmd
3011 * @low_latency: low latency status IWM_QUOTA_LOW_LATENCY_*
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c908 * To workaround hardware latency issues during the boot process,
8907 cmd.latency = htole32(sc->sc_xtal_latency);
8912 printf("%s: failed to set soc latency: %d\n", DEVNAME(sc), err);
H A Dif_iwxreg.h2367 * struct iwx_soc_configuration_cmd - Set device stabilization latency
2372 * @latency: time for SOC to ensure stable power & XTAL
2376 uint32_t latency; member in struct:iwx_soc_configuration_cmd
2614 * @FW_DBG_TX_LATENCY: trigger log collection when the tx latency goes above a
2844 * struct iwx_fw_dbg_trigger_tx_latency - configures tx latency related trigger
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci.cpp1345 dev->info.latency = ReadConfig(dev->domain, dev->bus, dev->device,
H A Dpci_info.cpp272 TRACE(("PCI: line_size %02x, latency %02x, header_type %02x, BIST %02x\n",
273 info->line_size, info->latency, info->header_type, info->bist));
/haiku/headers/os/drivers/
H A DPCI.h41 uchar latency; /* latency timer */ member in struct:pci_info
247 #define PCI_latency 0x0d /* (1 byte) latency timer */
284 #define PCI_secondary_latency 0x1B /* (1 byte) latency of secondary bus */
308 #define PCI_secondary_latency_2 0x1B /* (1 byte) latency of secondary bus */
/haiku/src/apps/cortex/NodeManager/
H A DNodeRef.cpp334 // +++++ 28sep99: adds downstream latency
352 bigtime_t latency = 0LL; local
353 m_manager->roster->GetLatencyFor(node(), &latency); local
356 " %" B_PRIdBIGTIME "\n", latency));
358 return latency; // +++++ stab in the dark 28sep99
359 // return maxBufferDur + latency;
700 // calculate total (internal + downstream) latency for this node
1931 // fetch new node latency
2028 // fetch new node latency
2040 // refresh the node's current latency; i
2052 bigtime_t latency; local
[all...]
/haiku/src/kits/media/
H A DMediaRoster.cpp2892 // Reports in outLatency the maximum latency found downstream from
2913 *_latency = reply.latency;
2915 // printf("BMediaRoster::GetLatencyFor producer %ld has maximum latency %lld\n", producer.node, *out_latency);
2945 "maximum initial latency %" B_PRId64 "\n", producer.node, *_latency);
2973 "maximum initial latency %" B_PRId64 "\n", timeSource.node, *_latency);
H A DBufferConsumer.cpp328 command.latency = newLatency;
331 TRACE("###### BBufferConsumer::SendLatencyChange: latency from %" B_PRId32 "/%" B_PRId32 " to "
411 rv = GetLatencyFor(request->for_whom, &reply.latency, &reply.timesource);
/haiku/src/apps/mediaplayer/media_node_framework/video/
H A DVideoProducer.cpp444 // get the latency
449 // recompute the latency
453 bigtime_t latency = 0; local
455 FindLatencyFor(fOutput.destination, &latency, &tsID);
456 SetEventLatency(latency + fBufferLatency);
/haiku/src/apps/mediaplayer/media_node_framework/
H A DNodeManager.cpp613 bigtime_t latency = 0;
618 &latency);
620 print_error("error getting latency for video producer",
623 TRACE("video latency: %lld\n", latency);
625 fVideoConnection.producer, latency);
635 print_error("error getting initial latency for video producer",
646 TRACE("audio latency: %lld\n", audioLatency);
677 bigtime_t perf = timeSource->PerformanceTimeFor(real + latency
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DProducer.cpp577 /* get the latency */
578 bigtime_t latency = 0; local
580 FindLatencyFor(fOutput.destination, &latency, &tsID);
582 SetEventLatency(latency + NODE_LATENCY);
1010 //XXX: that's what we should be doing, but CodyCam drops all frames as they are late. (maybe add latency ??)
1015 // update processing latency
/haiku/src/add-ons/media/media-add-ons/usb_vision/
H A DProducer.cpp612 /* get the latency */
613 bigtime_t latency = 0; local
615 FindLatencyFor(fOutput.destination, &latency, &tsID);
617 SetEventLatency(latency + NODE_LATENCY);
/haiku/src/add-ons/media/media-add-ons/opensound/
H A DOpenSoundNode.cpp215 status_t AllocateBuffers(bigtime_t bufferDuration, bigtime_t latency) argument
218 "latency = %lld)\n", bufferDuration, latency);
222 // allocate enough buffers to span our downstream latency, plus one
224 int32 count = int32(latency / bufferDuration + 1 + 1);
822 // start with the node latency (1 buffer duration)
825 // add the OSS driver buffer's latency as well
860 // use one half buffer length latency
863 TRACE(" internal latency = %lld\n", fInternalLatency);
1232 // Now that we're connected, we can determine our downstream latency
[all...]
H A DOpenSoundDeviceEngine.cpp172 bigtime_t latency = time_for_buffer(fDriverBufferSize, fMediaFormat); local
176 cardLatency = latency / 3;
178 latency += cardLatency;
179 // PRINT(("PlaybackLatency: odelay %d latency %lld card %lld\n",
180 // fDriverBufferSize, latency, CardLatency()));
181 return latency;
/haiku/src/add-ons/media/media-add-ons/firewire_dv/
H A DFireWireDVNode.cpp404 bigtime_t latency; local
406 if (B_OK != FindLatencyFor(destination, &latency, &ts))
409 TRACE("downstream latency %lld\n", latency);
/haiku/src/add-ons/media/media-add-ons/finepix_webcam/FinePixProducer/
H A DProducer.cpp429 /* get the latency */
430 bigtime_t latency = 0; local
432 FindLatencyFor(fOutput.destination, &latency, &tsID);
434 SetEventLatency(latency + NODE_LATENCY);
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DDVBMediaNode.cpp105 // assumed latency for sending the buffer
843 bigtime_t latency; local
845 if (B_OK != FindLatencyFor(destination, &latency, &ts))
848 TRACE("downstream latency %lld\n", latency);
/haiku/src/apps/debuganalyzer/model/
H A DModel.cpp416 Model::Thread::AddLatency(nanotime_t latency) argument
419 fTotalLatency += latency;
421 if (fMinLatency < 0 || latency < fMinLatency)
422 fMinLatency = latency;
423 if (latency > fMaxLatency)
424 fMaxLatency = latency;
/haiku/src/add-ons/kernel/drivers/power/x86_cpuidle/
H A Dacpi_cpuidle.cpp305 cState->latency = n;
/haiku/src/add-ons/accelerants/nvidia/engine/
H A Dnv_general.c1419 * (CAS latency is dependant on NV setup on some (DRAM) boards) */
1423 uint8 latency = 0; local
1440 LOG(4,("INIT: RAM access errors; tuning CAS latency if prudent...\n"));
1450 LOG(4,("INIT: RAM access OK. CAS latency set to %d cycles.\n", latency));
1452 LOG(4,("INIT: RAM access not fixable. CAS latency set to %d cycles.\n", latency));
/haiku/src/servers/midi/
H A DMidiServerApp.cpp188 && msg->FindInt64("midi:latency", &endpoint->latency)
300 bigtime_t latency; local
301 if (msg->FindInt64("midi:latency", &latency) == B_OK) {
302 notify.AddInt64("midi:latency", latency);
303 endpoint->latency = latency;
522 msg->AddInt64("midi:latency", endpoin
[all...]
/haiku/src/kits/game/
H A DGameSoundBuffer.cpp439 bigtime_t latency = 0; local
440 status_t status = roster->GetLatencyFor(fConnection->producer, &latency);
443 source->Now() + latency);
/haiku/src/add-ons/media/media-add-ons/video_producer_demo/
H A DProducer.cpp428 /* get the latency */
429 bigtime_t latency = 0; local
431 FindLatencyFor(fOutput.destination, &latency, &tsID);
433 SetEventLatency(latency + NODE_LATENCY);

Completed in 385 milliseconds

123