HomeSort by relevance Sort by last modified time
    Searched refs:y_val (Results 1 - 3 of 3) sorted by null

  /external/skia/src/effects/
SkMagnifierImageFilter.cpp 427 int y_val = SkTPin(bounds.y() + SkScalarFloorToInt(y_interp), 0, inputBM.height() - 1); local
429 *dptr = *inputBM.getAddr32(x_val, y_val);
  /external/v8/src/parsing/
parser.cc 252 double y_val = y->AsLiteral()->raw_value()->AsNumber(); local
258 *x = factory()->NewNumberLiteral(x_val + y_val, pos, has_dot);
261 *x = factory()->NewNumberLiteral(x_val - y_val, pos, has_dot);
264 *x = factory()->NewNumberLiteral(x_val * y_val, pos, has_dot);
267 *x = factory()->NewNumberLiteral(x_val / y_val, pos, has_dot);
270 int value = DoubleToInt32(x_val) | DoubleToInt32(y_val);
275 int value = DoubleToInt32(x_val) & DoubleToInt32(y_val);
280 int value = DoubleToInt32(x_val) ^ DoubleToInt32(y_val);
285 int value = DoubleToInt32(x_val) << (DoubleToInt32(y_val) & 0x1f);
290 uint32_t shift = DoubleToInt32(y_val) & 0x1f
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxer.h 362 PrimaryChromaticity(float x_val, float y_val) : x_(x_val), y_(y_val) {}
    [all...]

Completed in 128 milliseconds