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.h150 debug_get_num_option(const char *name, long dfault);
354 debug_get_option(const char *name, const char *dfault);
357 debug_get_bool_option(const char *name, boolean dfault);
360 debug_get_num_option(const char *name, long dfault);
365 unsigned long dfault);
367 #define DEBUG_GET_ONCE_BOOL_OPTION(sufix, name, dfault) \ argument
375 value = debug_get_bool_option(name, dfault); \
380 #define DEBUG_GET_ONCE_NUM_OPTION(sufix, name, dfault) \ argument
388 value = debug_get_num_option(name, dfault); \
393 #define DEBUG_GET_ONCE_FLAGS_OPTION(sufix, name, flags, dfault) \ argument
[all …]
Du_debug.c104 debug_get_option(const char *name, const char *dfault) in debug_get_option() argument
110 result = dfault; in debug_get_option()
119 debug_get_bool_option(const char *name, boolean dfault) in debug_get_bool_option() argument
125 result = dfault; in debug_get_bool_option()
151 debug_get_num_option(const char *name, long dfault) in debug_get_num_option() argument
158 result = dfault; in debug_get_num_option()
230 unsigned long dfault) in debug_get_flags_option() argument
239 result = dfault; in debug_get_flags_option()
241 result = dfault; in debug_get_flags_option()
/external/libcxx/src/
Dlocale.cpp879 ctype<wchar_t>::do_narrow(char_type c, char dfault) const in do_narrow()
883 return dfault; in do_narrow()
887 ctype<wchar_t>::do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) con… in do_narrow() argument
893 *dest = dfault; in do_narrow()
997 ctype<char>::do_narrow(char_type c, char dfault) const in do_narrow()
1001 return dfault; in do_narrow()
1005 ctype<char>::do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) const in do_narrow() argument
1011 *dest = dfault; in do_narrow()
1418 ctype_byname<wchar_t>::do_narrow(char_type c, char dfault) const in do_narrow()
1425 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;