Home
last modified time | relevance | path

Searched refs:is_hex (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/utils/
DSkParse.cpp45 static inline bool is_hex(int c) in is_hex() function
113 if (!is_hex(*str)) in FindHex()
/external/dnsmasq/src/
Doption.c675 int i, addrs, digs, is_addr, is_hex, is_dec, is_string, dots; in parse_dhcp_opt() local
745 is_addr = is_hex = is_dec = is_string = 1; in parse_dhcp_opt()
752 is_dec = is_hex = 0; in parse_dhcp_opt()
761 is_dec = is_hex = 0; in parse_dhcp_opt()
767 is_dec = is_hex = 0; in parse_dhcp_opt()
771 is_hex = is_addr = 0; in parse_dhcp_opt()
773 is_dec = is_hex = 0; in parse_dhcp_opt()
788 is_hex = 0; in parse_dhcp_opt()
795 is_string = is_dec = is_hex = 0; in parse_dhcp_opt()
800 if (is_hex && digs > 1) in parse_dhcp_opt()
/external/wpa_supplicant_8/src/utils/
Dcommon.h491 int is_hex(const u8 *data, size_t len);
Dcommon.c688 int is_hex(const u8 *data, size_t len) in is_hex() function
/external/libxml2/
Duri.c1590 static int is_hex(char c) { in is_hex() function
1633 if ((len > 2) && (*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) { in xmlURIUnescapeString()
/external/opencv/cxcore/src/
Dcxpersistence.cpp1077 int val, is_hex = d == 'x'; in icvYMLParseValue() local
1080 val = strtol( ptr + is_hex, &endptr, is_hex ? 8 : 16 ); in icvYMLParseValue()
1082 if( endptr == ptr + is_hex ) in icvYMLParseValue()
/external/wpa_supplicant_8/src/ap/
Dwps_hostapd.c499 if (is_hex(cred->ssid, cred->ssid_len)) { in hapd_wps_cred_cb()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig.c172 if (is_hex(value, len)) in wpa_config_write_string()