Home
last modified time | relevance | path

Searched refs:use_hex (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/freedreno/registers/
Dgen_header.py18 use_hex = False
21 use_hex = True
25 if use_hex:
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Descaping.cc309 std::string CEscapeInternal(absl::string_view src, bool use_hex, in CEscapeInternal() argument
330 if (use_hex) { in CEscapeInternal()
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil.cc481 int dest_len, bool use_hex, bool utf8_safe) { in CEscapeInternal() argument
507 sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), in CEscapeInternal()
509 is_hex_escape = use_hex; in CEscapeInternal()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c8605 const bool use_hex = false; in putescaped() local
8630 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()
8631 is_hex_escape = use_hex; in putescaped()