HomeSort by relevance Sort by last modified time
    Searched defs:is_hex (Results 1 - 8 of 8) sorted by null

  /external/skia/src/utils/
SkParse.cpp 46 static inline bool is_hex(int c) function
114 if (!is_hex(*str))
  /external/skia/src/animator/
SkMemberInfo.cpp 172 static inline bool is_hex(int c) function
211 if (is_hex(r) == false || is_hex(g) == false || is_hex(b) == false)
214 if (is_hex(hex) == false) {
  /external/libxml2/
uri.c 1589 static int is_hex(char c) { function
    [all...]
  /external/wpa_supplicant_8/src/utils/
common.c 688 int is_hex(const u8 *data, size_t len) function
  /system/connectivity/shill/wifi/
wifi_service.cc 953 bool is_hex = false; local
    [all...]
  /external/dnsmasq/src/
option.c 670 int i, addrs, digs, is_addr, is_hex, is_dec, is_string, dots; local
740 is_addr = is_hex = is_dec = is_string = 1;
747 is_dec = is_hex = 0;
756 is_dec = is_hex = 0;
762 is_dec = is_hex = 0;
766 is_hex = is_addr = 0;
768 is_dec = is_hex = 0;
783 is_hex = 0;
790 is_string = is_dec = is_hex = 0;
795 if (is_hex && digs > 1
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp 1077 int val, is_hex = d == 'x'; local
1080 val = strtol( ptr + is_hex, &endptr, is_hex ? 8 : 16 );
1082 if( endptr == ptr + is_hex )
    [all...]
  /external/opencv3/modules/core/src/
persistence.cpp 1177 int val, is_hex = d == 'x'; local
1180 val = (int)strtol( ptr + is_hex, &endptr, is_hex ? 8 : 16 );
1182 if( endptr == ptr + is_hex )
    [all...]

Completed in 304 milliseconds