Home
last modified time | relevance | path

Searched refs:alpha2 (Results 1 - 19 of 19) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dkbdwin.c31 double alpha2 = (alpha * M_PI / n) * (alpha * M_PI / n); in ff_kbd_window_init() local
36 tmp = i * (n - i) * alpha2; in ff_kbd_window_init()
/third_party/skia/third_party/externals/libwebp/examples/
H A Danim_diff.c118 const int alpha2 = (bg2 >> 24) & 0xff; in CompareBackgroundColor() local
119 if (alpha1 == 0 && alpha2 == 0) return 1; in CompareBackgroundColor()
H A Danim_util.c750 const int alpha2 = rgba2[offset + kAlphaChannel]; in GetDiffAndPSNR() local
751 Accumulate(alpha1, alpha2, &f_max_diff, &sse); in GetDiffAndPSNR()
760 rgba2[offset + k] * alpha2 / 255., in GetDiffAndPSNR()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_privsep.c806 static int wpa_driver_privsep_set_country(void *priv, const char *alpha2) in wpa_driver_privsep_set_country() argument
809 wpa_printf(MSG_DEBUG, "%s country='%s'", __func__, alpha2); in wpa_driver_privsep_set_country()
810 return wpa_priv_cmd(drv, PRIVSEP_CMD_SET_COUNTRY, alpha2, in wpa_driver_privsep_set_country()
811 os_strlen(alpha2), NULL, NULL); in wpa_driver_privsep_set_country()
H A Ddriver_nl80211.c1638 * country ISO / IEC alpha2.
1644 char alpha2[3]; in wpa_driver_nl80211_set_country() local
1651 alpha2[0] = alpha2_arg[0]; in wpa_driver_nl80211_set_country()
1652 alpha2[1] = alpha2_arg[1]; in wpa_driver_nl80211_set_country()
1653 alpha2[2] = '\0'; in wpa_driver_nl80211_set_country()
1656 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, alpha2)) { in wpa_driver_nl80211_set_country()
1668 char *alpha2 = arg; in nl80211_get_country() local
1678 os_strlcpy(alpha2, nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]), 3); in nl80211_get_country()
1683 static int wpa_driver_nl80211_get_country(void *priv, char *alpha2) in wpa_driver_nl80211_get_country() argument
1695 alpha2[ in wpa_driver_nl80211_get_country()
8827 char alpha2[3] = { 0, 0, 0 }; wpa_driver_nl80211_status() local
[all...]
H A Ddriver.h2628 * @alpha2: country to which to switch to
2634 int (*set_country)(void *priv, const char *alpha2);
2639 * @alpha2: Buffer for returning country code (at least 3 octets)
2642 int (*get_country)(void *priv, char *alpha2);
5558 * @alpha2: Country code (or "" if not available)
5563 char alpha2[3]; member
H A Ddriver_nl80211_event.c2219 os_strlcpy(data.channel_list_changed.alpha2, in nl80211_reg_change_event()
2221 sizeof(data.channel_list_changed.alpha2)); in nl80211_reg_change_event()
2222 wpa_printf(MSG_DEBUG, " * alpha2=%s", in nl80211_reg_change_event()
2223 data.channel_list_changed.alpha2); in nl80211_reg_change_event()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_privsep.c814 static int wpa_driver_privsep_set_country(void *priv, const char *alpha2) in wpa_driver_privsep_set_country() argument
817 wpa_printf(MSG_DEBUG, "%s country='%s'", __func__, alpha2); in wpa_driver_privsep_set_country()
818 return wpa_priv_cmd(drv, PRIVSEP_CMD_SET_COUNTRY, alpha2, in wpa_driver_privsep_set_country()
819 os_strlen(alpha2), NULL, NULL); in wpa_driver_privsep_set_country()
H A Ddriver_nl80211.c1964 * country ISO / IEC alpha2.
1970 char alpha2[3]; in wpa_driver_nl80211_set_country() local
1977 alpha2[0] = alpha2_arg[0]; in wpa_driver_nl80211_set_country()
1978 alpha2[1] = alpha2_arg[1]; in wpa_driver_nl80211_set_country()
1979 alpha2[2] = '\0'; in wpa_driver_nl80211_set_country()
1982 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, alpha2)) { in wpa_driver_nl80211_set_country()
1994 char *alpha2 = arg; in nl80211_get_country() local
2004 os_strlcpy(alpha2, nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]), 3); in nl80211_get_country()
2009 static int wpa_driver_nl80211_get_country(void *priv, char *alpha2) in wpa_driver_nl80211_get_country() argument
2021 alpha2[ in wpa_driver_nl80211_get_country()
10138 char alpha2[3] = { 0, 0, 0 }; global() local
[all...]
H A Ddriver.h3032 * @alpha2: country to which to switch to
3038 int (*set_country)(void *priv, const char *alpha2);
3043 * @alpha2: Buffer for returning country code (at least 3 octets)
3046 int (*get_country)(void *priv, char *alpha2);
6096 * @alpha2: Country code (or "" if not available)
6101 char alpha2[3]; member
H A Ddriver_nl80211_event.c2983 os_strlcpy(data.channel_list_changed.alpha2,
2985 sizeof(data.channel_list_changed.alpha2));
2986 wpa_printf(MSG_DEBUG, " * alpha2=%s",
2987 data.channel_list_changed.alpha2);
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLContextCompatibilityTest.cpp210 EGLint red1, red2, green1, green2, blue1, blue2, alpha1, alpha2; in areConfigsCompatible() local
224 eglGetConfigAttrib(mDisplay, c2, EGL_ALPHA_SIZE, &alpha2); in areConfigsCompatible()
245 blue1 == blue2 && alpha1 == alpha2 && colorComponentType1 == colorComponentType2 && in areConfigsCompatible()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dap_drv_ops.h274 static inline int hostapd_get_country(struct hostapd_data *hapd, char *alpha2) in hostapd_get_country() argument
278 return hapd->driver->get_country(hapd->drv_priv, alpha2); in hostapd_get_country()
/third_party/ffmpeg/libavfilter/
H A Dformats.c98 int alpha1=0, alpha2=0; in merge_formats_internal() local
118 alpha2 |= adesc->flags & bdesc->flags & AV_PIX_FMT_FLAG_ALPHA; in merge_formats_internal()
128 if (alpha2 > alpha1 || chroma2 > chroma1) in merge_formats_internal()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dap_drv_ops.h279 static inline int hostapd_get_country(struct hostapd_data *hapd, char *alpha2) in hostapd_get_country() argument
283 return hapd->driver->get_country(hapd->drv_priv, alpha2); in hostapd_get_country()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Ddriver_i.h298 const char *alpha2) in wpa_drv_set_country()
301 return wpa_s->driver->set_country(wpa_s->drv_priv, alpha2); in wpa_drv_set_country()
297 wpa_drv_set_country(struct wpa_supplicant *wpa_s, const char *alpha2) wpa_drv_set_country() argument
H A Devents.c3733 info->alpha2[0] ? " alpha2=" : "", in wpa_supplicant_update_channel_list()
3734 info->alpha2[0] ? info->alpha2 : ""); in wpa_supplicant_update_channel_list()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Ddriver_i.h353 const char *alpha2) in wpa_drv_set_country()
356 return wpa_s->driver->set_country(wpa_s->drv_priv, alpha2); in wpa_drv_set_country()
352 wpa_drv_set_country(struct wpa_supplicant *wpa_s, const char *alpha2) wpa_drv_set_country() argument
H A Devents.c5218 info->alpha2[0] ? " alpha2=" : "",
5219 info->alpha2[0] ? info->alpha2 : "");

Completed in 59 milliseconds