Home
last modified time | relevance | path

Searched refs:bound1 (Results 1 – 4 of 4) sorted by relevance

/hardware/interfaces/biometrics/face/aidl/default/
DFakeFaceEngine.h75 int32_t getRandomInRange(int32_t bound1, int32_t bound2);
DFakeFaceEngine.cpp422 int32_t FakeFaceEngine::getRandomInRange(int32_t bound1, int32_t bound2) { in getRandomInRange() argument
423 std::uniform_int_distribution<int32_t> dist(std::min(bound1, bound2), std::max(bound1, bound2)); in getRandomInRange()
/hardware/interfaces/biometrics/fingerprint/aidl/default/include/
DFakeFingerprintEngine.h111 int32_t getRandomInRange(int32_t bound1, int32_t bound2);
/hardware/interfaces/biometrics/fingerprint/aidl/default/
DFakeFingerprintEngine.cpp503 int32_t FakeFingerprintEngine::getRandomInRange(int32_t bound1, int32_t bound2) { in getRandomInRange() argument
504 std::uniform_int_distribution<int32_t> dist(std::min(bound1, bound2), std::max(bound1, bound2)); in getRandomInRange()