/hardware/interfaces/sensors/2.0/multihal/include/ |
D | ScopedWakelock.h | 46 virtual bool incrementRefCountAndMaybeAcquireWakelock(size_t delta, 55 virtual void decrementRefCountAndMaybeReleaseWakelock(size_t delta,
|
D | HalProxy.h | 132 bool incrementRefCountAndMaybeAcquireWakelock(size_t delta, 135 void decrementRefCountAndMaybeReleaseWakelock(size_t delta, int64_t timeoutStart = -1) override;
|
/hardware/qcom/sdm845/display/libhistogram/ |
D | ringbuffer.cpp | 47 const auto delta = std::chrono::duration_cast<std::chrono::milliseconds>( in update_cumulative() local 51 auto const increment = ringbuffer.front().histogram.data[i] * delta.count(); in update_cumulative() 124 const auto delta = std::chrono::duration_cast<std::chrono::milliseconds>(time_displayed); in collect_max() local 126 bins[i] += it->histogram.data[i] * delta.count(); in collect_max()
|
/hardware/qcom/sm8150/display/libhistogram/ |
D | ringbuffer.cpp | 47 const auto delta = std::chrono::duration_cast<std::chrono::milliseconds>( in update_cumulative() local 51 auto const increment = ringbuffer.front().histogram.data[i] * delta.count(); in update_cumulative() 124 const auto delta = std::chrono::duration_cast<std::chrono::milliseconds>(time_displayed); in collect_max() local 126 bins[i] += it->histogram.data[i] * delta.count(); in collect_max()
|
/hardware/google/pixel/powerstats/ |
D | PowerStats.cpp | 324 int fd, bool delta) { in debugStateResidency() argument 367 if (!delta) { in debugStateResidency() 462 void PowerStats::debugEnergyData(int fd, bool delta) { in debugEnergyData() argument 494 if (!delta) { in debugEnergyData() 523 bool delta = (args.size() == 1) && (args[0] == "delta"); in debug() local 544 debugStateResidency(entityNames, fd, delta); in debug() 547 debugEnergyData(fd, delta); in debug()
|
/hardware/interfaces/broadcastradio/common/tests/ |
D | WorkerThread_test.cpp | 55 auto delta = stop.load() - start; in TEST() local 56 ASSERT_EQ_WITH_TOLERANCE(delta, 100ms, 50ms); in TEST()
|
/hardware/google/pixel/powerstats/include/pixelpowerstats/ |
D | PowerStats.h | 111 bool delta); 112 void debugEnergyData(int fd, bool delta);
|
/hardware/qcom/gps/msm8996/utils/ |
D | LocTimer.cpp | 675 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 676 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 677 return delta / mTimeOut; in deviation()
|
/hardware/qcom/gps/msm8998/utils/ |
D | LocTimer.cpp | 687 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 688 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 689 return delta / mTimeOut; in deviation()
|
/hardware/qcom/gps/msm8909w_3100/utils/ |
D | LocTimer.cpp | 688 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 689 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 690 return delta / mTimeOut; in deviation()
|
/hardware/qcom/sdm845/gps/msm8996/utils/ |
D | LocTimer.cpp | 681 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 682 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 683 return delta / mTimeOut; in deviation()
|
/hardware/qcom/sdm845/gps/msm8998/utils/ |
D | LocTimer.cpp | 687 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 688 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 689 return delta / mTimeOut; in deviation()
|
/hardware/qcom/sdm845/gps/sdm845/utils/ |
D | LocTimer.cpp | 690 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 691 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 692 return delta / mTimeOut; in deviation()
|
/hardware/qcom/sm8150/gps/utils/ |
D | LocTimer.cpp | 690 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 691 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 692 return delta / mTimeOut; in deviation()
|
/hardware/qcom/sdm845/gps/msm8909/utils/ |
D | LocTimer.cpp | 683 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 684 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 685 return delta / mTimeOut; in deviation()
|
/hardware/qcom/gps/msm8909/utils/ |
D | LocTimer.cpp | 676 double delta = getDeltaSeconds(mTimeOfBirth, now); in deviation() local 677 printf("%lf: %lf\n", delta, delta * 100 / mTimeOut); in deviation() 678 return delta / mTimeOut; in deviation()
|
/hardware/st/nfc/1.0/hal/ |
D | halcore.c | 437 int delta = in HalCalcSemWaitingTime() local 440 if (delta < 0) { in HalCalcSemWaitingTime() 444 } else if ((uint32_t)delta < result) { in HalCalcSemWaitingTime() 446 result = delta; in HalCalcSemWaitingTime()
|
/hardware/st/nfc/st21nfc/hal/ |
D | halcore.cc | 438 int delta = in HalCalcSemWaitingTime() local 441 if (delta < 0) { in HalCalcSemWaitingTime() 445 } else if ((uint32_t)delta < result) { in HalCalcSemWaitingTime() 447 result = delta; in HalCalcSemWaitingTime()
|
/hardware/interfaces/sensors/2.0/multihal/ |
D | HalProxy.cpp | 601 bool HalProxy::incrementRefCountAndMaybeAcquireWakelock(size_t delta, in incrementRefCountAndMaybeAcquireWakelock() argument 610 mWakelockRefCount += delta; in incrementRefCountAndMaybeAcquireWakelock() 617 void HalProxy::decrementRefCountAndMaybeReleaseWakelock(size_t delta, in decrementRefCountAndMaybeReleaseWakelock() argument 623 mWakelockRefCount -= std::min(mWakelockRefCount, delta); in decrementRefCountAndMaybeReleaseWakelock()
|
/hardware/interfaces/gnss/1.0/ |
D | IGnssMeasurementCallback.hal | 484 * Accumulated delta range's state. It indicates whether ADR is reset or 492 * Accumulated delta range since the last channel reset in meters. 495 * The sign of the 'accumulated delta range' and its relation to the sign of 497 * accumulated delta range = -k * carrier phase (where k is a constant) 499 * This value must be populated if 'accumulated delta range state' != 502 * 'accumulated delta range state' == ADR_STATE_VALID. 507 * 1-Sigma uncertainty of the accumulated delta range in meters. 508 * This value must be populated if 'accumulated delta range state' !=
|
/hardware/interfaces/radio/1.2/ |
D | IRadio.hal | 84 * hysteresisDb must be smaller than the smallest threshold delta. An interval value of 0 107 * reports. hysteresisDlKbps must be smaller than the smallest threshold delta. A value of 0 110 * reports. hysteresisUlKbps must be smaller than the smallest threshold delta. A value of 0
|
/hardware/interfaces/broadcastradio/2.0/ |
D | ITunerCallback.hal | 45 * A delta update of the program list, called whenever there's a change in
|
/hardware/qcom/camera/msm8998/QCamera2/HAL/test/ |
D | qcamera_test.cpp | 1966 int delta; in getPreviewSizeFromVideoSizes() local 1986 delta = abs((currentVideoSize.width *currentVideoSize.height)- in getPreviewSizeFromVideoSizes() 1992 delta) { in getPreviewSizeFromVideoSizes() 1994 delta = abs((currentVideoSize.width * in getPreviewSizeFromVideoSizes() 2004 delta = abs( in getPreviewSizeFromVideoSizes() 2012 delta) { in getPreviewSizeFromVideoSizes() 2014 delta = abs( in getPreviewSizeFromVideoSizes()
|
/hardware/interfaces/radio/1.5/ |
D | IRadio.hal | 85 * reports. hysteresisDlKbps must be smaller than the smallest threshold delta. A value of 0 88 * reports. hysteresisUlKbps must be smaller than the smallest threshold delta. A value of 0
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
D | AudioPolicyManagerBase.h | 259 void changeRefCount(AudioSystem::stream_type stream, int delta);
|