Home
last modified time | relevance | path

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

/external/skia/src/animator/
DSkMemberInfo.cpp172 static inline bool is_hex(int c) in is_hex() function
211 if (is_hex(r) == false || is_hex(g) == false || is_hex(b) == false) in setValue()
214 if (is_hex(hex) == false) { in setValue()
/external/skia/src/utils/
DSkParse.cpp46 static inline bool is_hex(int c) in is_hex() function
114 if (!is_hex(*str)) in FindHex()
/external/dnsmasq/src/
Doption.c670 int i, addrs, digs, is_addr, is_hex, is_dec, is_string, dots; in parse_dhcp_opt() local
740 is_addr = is_hex = is_dec = is_string = 1; in parse_dhcp_opt()
747 is_dec = is_hex = 0; in parse_dhcp_opt()
756 is_dec = is_hex = 0; in parse_dhcp_opt()
762 is_dec = is_hex = 0; in parse_dhcp_opt()
766 is_hex = is_addr = 0; in parse_dhcp_opt()
768 is_dec = is_hex = 0; in parse_dhcp_opt()
783 is_hex = 0; in parse_dhcp_opt()
790 is_string = is_dec = is_hex = 0; in parse_dhcp_opt()
795 if (is_hex && digs > 1) in parse_dhcp_opt()
/external/wpa_supplicant_8/src/utils/
Dcommon.h482 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.c1588 static int is_hex(char c) { in is_hex() function
1631 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/opencv3/modules/core/src/
Dpersistence.cpp1177 int val, is_hex = d == 'x'; in icvYMLParseValue() local
1180 val = (int)strtol( ptr + is_hex, &endptr, is_hex ? 8 : 16 ); in icvYMLParseValue()
1182 if( endptr == ptr + is_hex ) in icvYMLParseValue()
/external/wpa_supplicant_8/src/ap/
Dwps_hostapd.c505 if (is_hex(cred->ssid, cred->ssid_len)) { in hapd_wps_cred_cb()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig.c171 if (is_hex(value, len)) in wpa_config_write_string()