HomeSort by relevance Sort by last modified time
    Searched refs:Unsigned (Results 1 - 6 of 6) sorted by null

  /external/chromium/base/json/
string_escape.cc 59 typename ToUnsigned<typename STR::value_type>::Unsigned c = *it;
64 unsigned int as_uint = static_cast<unsigned int>(c);
67 unsigned char ascii = static_cast<unsigned char>(*it);
  /external/chromium/base/
string_util.h 406 std::string UintToString(unsigned int value);
407 std::wstring UintToWString(unsigned int value);
408 string16 UintToString16(unsigned int value);
636 // Hack to convert any char-like type to its unsigned counterpart.
637 // For example, it will convert char, signed char and unsigned char to unsigned
641 typedef T Unsigned;
646 typedef unsigned char Unsigned;
650 typedef unsigned char Unsigned
    [all...]
string_util.cc 112 static unsigned int strtoui(const char *nptr, char **endptr, int base) {
113 unsigned long res = strtoul(nptr, endptr, base);
116 // if the result can fit into 32-bits (as signed or unsigned).
118 static_cast<unsigned int>(res) != res) {
123 return static_cast<unsigned int>(res);
208 // For the HexString variants, use the unsigned variants like strtoul for
593 typename ToUnsigned<typename STR::value_type>::Unsigned c = str[i];
665 typename ToUnsigned<CHAR>::Unsigned olupper = 0;
668 typename ToUnsigned<CHAR>::Unsigned slower = 0;
675 // This whole function assume an unsigned value so force its conversion t
    [all...]
  /external/gtest/test/
gtest_output_test_.cc 762 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
763 INSTANTIATE_TYPED_TEST_CASE_P(Unsigned, TypedTestP, UnsignedTypes);
  /external/protobuf/gtest/test/
gtest_output_test_.cc 755 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
756 INSTANTIATE_TYPED_TEST_CASE_P(Unsigned, TypedTestP, UnsignedTypes);
  /external/dropbear/libtommath/
bn.tex 347 ISO C ``unsigned long'' data type and each digit is $28-$bits long. The mp\_digit type can be configured to suit other
643 an ISO C style ``unsigned long'' constant. The reason for both functions is efficiency. Setting a single digit is quick but the
683 To set a constant that is the size of an ISO C ``unsigned long'' and larger than a single digit the following function
688 int mp_set_int (mp_int * a, unsigned long b);
695 To get the ``unsigned long'' copy of an mp\_int the following function can be used.
699 unsigned long mp_get_int (mp_int * a);
743 int mp_init_set_int (mp_int * a, unsigned long b);
807 \subsection{Unsigned comparison}
809 An unsigned comparison considers only the digits themselves and not the associated \textit{sign} flag of the
    [all...]

Completed in 88 milliseconds