Searched defs:is_hex (Results 1 - 9 of 9) sorted by relevance

/external/libxkbcommon/xkbcommon/src/xkbcomp/
H A Dscanner.c31 bool is_float = false, is_hex = false; local
37 is_hex = true;
48 if (is_hex)
/external/skia/src/utils/
H A DSkParse.cpp45 static inline bool is_hex(int c) function
113 if (!is_hex(*str))
/external/skqp/src/utils/
H A DSkParse.cpp45 static inline bool is_hex(int c) function
113 if (!is_hex(*str))
/external/libxml2/
H A Duri.c1590 static int is_hex(char c) { function
1633 if ((len > 2) && (*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) {
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c688 int is_hex(const u8 *data, size_t len) function
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c688 int is_hex(const u8 *data, size_t len) function
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.c688 int is_hex(const u8 *data, size_t len) function
/external/dnsmasq/src/
H A Doption.c643 int i, addrs, digs, is_addr, is_hex, is_dec, is_string, dots; local
713 is_addr = is_hex = is_dec = is_string = 1;
720 is_dec = is_hex = 0;
729 is_dec = is_hex = 0;
735 is_dec = is_hex = 0;
739 is_hex = is_addr = 0;
741 is_dec = is_hex = 0;
756 is_hex = 0;
763 is_string = is_dec = is_hex = 0;
768 if (is_hex
[all...]
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp1077 int val, is_hex = d == 'x'; local
1080 val = strtol( ptr + is_hex, &endptr, is_hex ? 8 : 16 );
1082 if( endptr == ptr + is_hex )

Completed in 478 milliseconds