Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-numbers.cc230 CONVERT_SMI_ARG_CHECKED(y_value, 1); in RUNTIME_FUNCTION()
233 if (x_value == y_value) return Smi::FromInt(EQUAL); in RUNTIME_FUNCTION()
237 if (x_value == 0 || y_value == 0) in RUNTIME_FUNCTION()
238 return Smi::FromInt(x_value < y_value ? LESS : GREATER); in RUNTIME_FUNCTION()
247 uint32_t y_scaled = y_value; in RUNTIME_FUNCTION()
248 if (x_value < 0 || y_value < 0) { in RUNTIME_FUNCTION()
249 if (y_value >= 0) return Smi::FromInt(LESS); in RUNTIME_FUNCTION()
252 y_scaled = -y_value; in RUNTIME_FUNCTION()
/external/chromium-trace/catapult/dashboard/dashboard/
Dbisect_stats.py63 for x_value, y_value in series:
65 series_map[x_value] = y_value
67 series_map[x_value] += y_value
/external/webrtc/talk/media/base/
Dfakevideorenderer.h127 uint8_t y_value = *(y_pos + j); in CheckFrameColorYuv() local
128 if (y_value < y_min || y_value > y_max) { in CheckFrameColorYuv()