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

  /external/chromium/base/
string_number_conversions.cc 29 template <typename INT2, typename UINT2, bool NEG2>
32 template <typename INT2, typename UINT2>
33 struct ToUnsignedT<INT2, UINT2, false> {
34 static UINT2 ToUnsigned(INT2 value) {
35 return static_cast<UINT2>(value);
39 template <typename INT2, typename UINT2>
40 struct ToUnsignedT<INT2, UINT2, true> {
41 static UINT2 ToUnsigned(INT2 value) {
42 return static_cast<UINT2>(value < 0 ? -value : value);
  /external/quake/quake/src/QW/client/
md4.c 27 /* UINT2 defines a two byte word */
28 typedef unsigned short int UINT2;

Completed in 79 milliseconds