Home
last modified time | relevance | path

Searched refs:n_value (Results 1 – 2 of 2) sorted by relevance

/aosp12/bionic/libc/kernel/uapi/linux/
H A Da.out.h116 unsigned long n_value; member
/aosp12/hardware/google/camera/devices/EmulatedCamera/hwl/
H A DEmulatedSensor.cpp1641 float n_value = (static_cast<float>(value) / saturation); in ApplysRGBGamma() local
1642 n_value = (n_value <= 0.0031308f) in ApplysRGBGamma()
1643 ? n_value * 12.92f in ApplysRGBGamma()
1644 : 1.055f * pow(n_value, 0.4166667f) - 0.055f; in ApplysRGBGamma()
1645 return n_value * saturation; in ApplysRGBGamma()