Home
last modified time | relevance | path

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

/third_party/flutter/glfw/src/
Dwin32_joystick.c575 XINPUT_STATE xis; in pollJoystickState() local
594 result = _glfw_XInputGetState(js->index, &xis); in pollJoystickState()
606 if (sqrt((double) (xis.Gamepad.sThumbLX * xis.Gamepad.sThumbLX + in pollJoystickState()
607 xis.Gamepad.sThumbLY * xis.Gamepad.sThumbLY)) > in pollJoystickState()
610 js->axes[0] = (xis.Gamepad.sThumbLX + 0.5f) / 32767.f; in pollJoystickState()
611 js->axes[1] = (xis.Gamepad.sThumbLY + 0.5f) / 32767.f; in pollJoystickState()
619 if (sqrt((double) (xis.Gamepad.sThumbRX * xis.Gamepad.sThumbRX + in pollJoystickState()
620 xis.Gamepad.sThumbRY * xis.Gamepad.sThumbRY)) > in pollJoystickState()
623 js->axes[2] = (xis.Gamepad.sThumbRX + 0.5f) / 32767.f; in pollJoystickState()
624 js->axes[3] = (xis.Gamepad.sThumbRY + 0.5f) / 32767.f; in pollJoystickState()
[all …]
/third_party/openssl/apps/
Dapps.c884 STACK_OF(X509_INFO) *xis = NULL; in load_certs_crls()
901 xis = PEM_X509_INFO_read_bio(bio, NULL, in load_certs_crls()
919 for (i = 0; i < sk_X509_INFO_num(xis); i++) { in load_certs_crls()
920 xi = sk_X509_INFO_value(xis, i); in load_certs_crls()
941 sk_X509_INFO_pop_free(xis, X509_INFO_free); in load_certs_crls()