Home
last modified time | relevance | path

Searched refs:r_int (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/bootable/deprecated-ota/edify/
H A Dexpr.cpp273 int64_t r_int; in LessThanIntFn() local
274 if (!android::base::ParseInt(args[1].c_str(), &r_int)) { in LessThanIntFn()
279 return StringValue(l_int < r_int ? "t" : ""); in LessThanIntFn()
301 int64_t r_int; in GreaterThanIntFn() local
302 if (!android::base::ParseInt(args[1].c_str(), &r_int)) { in GreaterThanIntFn()
307 return StringValue(l_int > r_int ? "t" : ""); in GreaterThanIntFn()
/aosp_15_r20/hardware/google/gfxstream/common/detector/
DImage.cpp242 const int r_int = static_cast<int>(r); in ConvertRGBA8888PixelToYUV() local
245 *out_y = Clamp(((( 66 * r_int) + (129 * g_int) + (25 * b_int) + 128) >> 8) + 16); in ConvertRGBA8888PixelToYUV()
246 *out_u = Clamp((((-38 * r_int) - (74 * g_int) + (112 * b_int) + 128) >> 8) + 128); in ConvertRGBA8888PixelToYUV()
247 *out_v = Clamp((((112 * r_int) - (94 * g_int) - (18 * b_int) + 128) >> 8) + 128); in ConvertRGBA8888PixelToYUV()
/aosp_15_r20/external/scapy/scapy/arch/windows/
H A D__init__.py956 r_int = [".*:\s+(\d+)"]
960 regex_list = r_ipv6*2 + r_int + r_all*3 + r_int + r_all*3