Home
last modified time | relevance | path

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

/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/libcamera/libcamera/
H A D0001-rpi-Use-alloca-instead-of-variable-length-arrays.patch8 …n C++ are a Clang extension [-Werror,-Wvla-cxx-extension] | 499 | int xLo[X], xHi[X];
27 - int xLo[X], xHi[X];
29 + int *xLo = (int*)malloc(X), *xHi = (int*)malloc(X);
40 + free(xLo);
/openbmc/qemu/hw/display/
H A Dartist.c323 int16_t xHi, xLo; in artist_get_cursor_pos() local
343 xLo = (s->cursor_pos >> 16) & 0x07; in artist_get_cursor_pos()
344 *x += ((xLo - hbp_times_vi) & (videoInterleave - 1)) + 8 - 1; in artist_get_cursor_pos()