Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_format_float.c78 boolean has_sign) in lp_build_float_to_smallfloat() argument
101 if (has_sign) { in lp_build_float_to_smallfloat()
157 if (has_sign) { in lp_build_float_to_smallfloat()
205 if (has_sign) { in lp_build_float_to_smallfloat()
287 boolean has_sign) in lp_build_smallfloat_to_float() argument
385 if (has_sign) { in lp_build_smallfloat_to_float()
Dlp_bld_format.h190 boolean has_sign);
199 boolean has_sign);
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_mpeg12_bitstream.c550 bool has_sign = true; in init_dct_coeff_table() local
557 has_sign = false; in init_dct_coeff_table()
561 has_sign = false; in init_dct_coeff_table()
589 if (has_sign) { in init_dct_coeff_table()
/external/flatbuffers/src/
Didl_parser.cpp417 const auto has_sign = (c == '+') || (c == '-'); in Next()
420 if (IsIdentifierStart(c) || (has_sign && IsIdentifierStart(*cursor_))) { in Next()
425 token_ = has_sign ? kTokenStringConstant : kTokenIdentifier; in Next()
432 if (is_digit(c) || has_sign || !dot_lvl) { in Next()