Home
last modified time | relevance | path

Searched defs:hexdigit (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/
H A Dwrite-properties.c59 static const char hexdigit[] = "0123456789abcdef"; in conv_to_java() local
129 static const char hexdigit[] = "0123456789abcdef"; in write_escaped_string() local
H A Dwrite-csharp.c133 static const char hexdigit[] = "0123456789abcdef"; in construct_class_name() local
181 static const char hexdigit[] = "0123456789abcdef"; in write_csharp_string() local
H A Dwrite-tcl.c57 static const char hexdigit[] = "0123456789abcdef"; in write_tcl_string() local
H A Dwrite-java.c338 static const char hexdigit[] = "0123456789abcdef"; in write_java_string() local
/netbsd-src/external/bsd/nvi/dist/common/
H A Dkey.c244 static const char hexdigit[] = "0123456789abcdef"; in v_key_name() local
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-diff/
H A DClangDiff.cpp114 static char hexdigit(int N) { return N &= 0xf, N + (N < 10 ? '0' : 'a' - 10); } in hexdigit() function