Home
last modified time | relevance | path

Searched refs:input_num (Results 1 – 4 of 4) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-support/vte/vte/
H A D0004-fast_float-Add-single-header-library-for-from_char-i.patch399 +leading_zeroes_generic(uint64_t input_num, int last_bit = 0) {
400 + if (input_num & uint64_t(0xffffffff00000000)) {
401 + input_num >>= 32;
404 + if (input_num & uint64_t(0xffff0000)) {
405 + input_num >>= 16;
408 + if (input_num & uint64_t(0xff00)) {
409 + input_num >>= 8;
412 + if (input_num & uint64_t(0xf0)) {
413 + input_num >>= 4;
416 + if (input_num & uint64_t(0xc)) {
[all …]
/openbmc/linux/drivers/staging/vc04_services/vchiq-mmal/
H A Dmmal-msg.h116 u32 input_num; /* Number of input ports */ member
H A Dmmal-vchiq.c962 component->inputs = rmsg->u.component_create_reply.input_num; in create_component()
/openbmc/linux/drivers/hid/
H A Dhid-nintendo.c1938 static int input_num = 1; in joycon_leds_create() local
1943 ret = joycon_set_player_leds(ctlr, 0, 0xF >> (4 - input_num)); in joycon_leds_create()
1961 led->brightness = ((i + 1) <= input_num) ? 1 : 0; in joycon_leds_create()
1975 if (++input_num > 4) in joycon_leds_create()
1976 input_num = 1; in joycon_leds_create()