Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/util/
Du_debug.h164 debug_get_num_option(const char *name, long dfault);
396 debug_get_option(const char *name, const char *dfault);
399 debug_get_bool_option(const char *name, boolean dfault);
402 debug_get_num_option(const char *name, long dfault);
407 uint64_t dfault);
409 #define DEBUG_GET_ONCE_OPTION(suffix, name, dfault) \ argument
417 value = debug_get_option(name, dfault); \
422 #define DEBUG_GET_ONCE_BOOL_OPTION(sufix, name, dfault) \ argument
430 value = debug_get_bool_option(name, dfault); \
435 #define DEBUG_GET_ONCE_NUM_OPTION(sufix, name, dfault) \ argument
[all …]
Du_debug.c150 debug_get_option(const char *name, const char *dfault) in debug_get_option() argument
156 result = dfault; in debug_get_option()
167 debug_get_bool_option(const char *name, boolean dfault) in debug_get_bool_option() argument
173 result = dfault; in debug_get_bool_option()
200 debug_get_num_option(const char *name, long dfault) in debug_get_num_option() argument
207 result = dfault; in debug_get_num_option()
214 result = dfault; in debug_get_num_option()
273 uint64_t dfault) in debug_get_flags_option() argument
282 result = dfault; in debug_get_flags_option()
284 result = dfault; in debug_get_flags_option()
/external/libcxx/src/
Dlocale.cpp880 ctype<wchar_t>::do_narrow(char_type c, char dfault) const in do_narrow()
884 return dfault; in do_narrow()
888 ctype<wchar_t>::do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) con… in do_narrow() argument
894 *dest = dfault; in do_narrow()
998 ctype<char>::do_narrow(char_type c, char dfault) const in do_narrow()
1002 return dfault; in do_narrow()
1006 ctype<char>::do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) const in do_narrow() argument
1012 *dest = dfault; in do_narrow()
1417 ctype_byname<wchar_t>::do_narrow(char_type c, char dfault) const in do_narrow()
1420 return r != static_cast<int>(WEOF) ? static_cast<char>(r) : dfault; in do_narrow()
[all …]
/external/libcxx/include/
Dios153 char narrow(char_type c, char dfault) const;