HomeSort by relevance Sort by last modified time
    Searched full:_int (Results 51 - 75 of 93) sorted by null

1 23 4

  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_limits.h 110 # define _STLP_LIMITS_MIN_TYPE _Int
111 # define _STLP_LIMITS_MAX_TYPE _Int
114 template <class _Int,
118 class _Integer_limits : public _Numeric_limits_base<_Int> {
121 static _Int (_STLP_CALL min) () _STLP_NOTHROW { return (_Int)__imin; }
122 static _Int (_STLP_CALL max) () _STLP_NOTHROW { return (_Int)__imax; }
124 _STLP_STATIC_CONSTANT(int, digits = (__idigits < 0) ? ((int)((sizeof(_Int) * (CHAR_BIT))) - ((__imin == 0) ? 0 : 1)) : (__idigits));
_limits.c 66 template <class _Int, _STLP_LIMITS_MIN_TYPE __imin, _STLP_LIMITS_MAX_TYPE __imax, int __idigits, bool __ismod> \
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_limits.h 110 # define _STLP_LIMITS_MIN_TYPE _Int
111 # define _STLP_LIMITS_MAX_TYPE _Int
114 template <class _Int,
118 class _Integer_limits : public _Numeric_limits_base<_Int> {
121 static _Int (_STLP_CALL min) () _STLP_NOTHROW { return (_Int)__imin; }
122 static _Int (_STLP_CALL max) () _STLP_NOTHROW { return (_Int)__imax; }
124 _STLP_STATIC_CONSTANT(int, digits = (__idigits < 0) ? ((int)((sizeof(_Int) * (CHAR_BIT))) - ((__imin == 0) ? 0 : 1)) : (__idigits));
_limits.c 66 template <class _Int, _STLP_LIMITS_MIN_TYPE __imin, _STLP_LIMITS_MAX_TYPE __imax, int __idigits, bool __ismod> \
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_limits.h 110 # define _STLP_LIMITS_MIN_TYPE _Int
111 # define _STLP_LIMITS_MAX_TYPE _Int
114 template <class _Int,
118 class _Integer_limits : public _Numeric_limits_base<_Int> {
121 static _Int (_STLP_CALL min) () _STLP_NOTHROW { return (_Int)__imin; }
122 static _Int (_STLP_CALL max) () _STLP_NOTHROW { return (_Int)__imax; }
124 _STLP_STATIC_CONSTANT(int, digits = (__idigits < 0) ? ((int)((sizeof(_Int) * (CHAR_BIT))) - ((__imin == 0) ? 0 : 1)) : (__idigits));
_limits.c 66 template <class _Int, _STLP_LIMITS_MIN_TYPE __imin, _STLP_LIMITS_MAX_TYPE __imax, int __idigits, bool __ismod> \
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_limits.h 110 # define _STLP_LIMITS_MIN_TYPE _Int
111 # define _STLP_LIMITS_MAX_TYPE _Int
114 template <class _Int,
118 class _Integer_limits : public _Numeric_limits_base<_Int> {
121 static _Int (_STLP_CALL min) () _STLP_NOTHROW { return (_Int)__imin; }
122 static _Int (_STLP_CALL max) () _STLP_NOTHROW { return (_Int)__imax; }
124 _STLP_STATIC_CONSTANT(int, digits = (__idigits < 0) ? ((int)((sizeof(_Int) * (CHAR_BIT))) - ((__imin == 0) ? 0 : 1)) : (__idigits));
_limits.c 66 template <class _Int, _STLP_LIMITS_MIN_TYPE __imin, _STLP_LIMITS_MAX_TYPE __imax, int __idigits, bool __ismod> \
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_limits.h 110 # define _STLP_LIMITS_MIN_TYPE _Int
111 # define _STLP_LIMITS_MAX_TYPE _Int
114 template <class _Int,
118 class _Integer_limits : public _Numeric_limits_base<_Int> {
121 static _Int (_STLP_CALL min) () _STLP_NOTHROW { return (_Int)__imin; }
122 static _Int (_STLP_CALL max) () _STLP_NOTHROW { return (_Int)__imax; }
124 _STLP_STATIC_CONSTANT(int, digits = (__idigits < 0) ? ((int)((sizeof(_Int) * (CHAR_BIT))) - ((__imin == 0) ? 0 : 1)) : (__idigits));
_limits.c 66 template <class _Int, _STLP_LIMITS_MIN_TYPE __imin, _STLP_LIMITS_MAX_TYPE __imax, int __idigits, bool __ismod> \
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
  /external/dropbear/libtommath/
bn.tex 334 The basic ``multiple precision integer'' type is known as the ``mp\_int'' within LibTomMath. This data type is used to
338 \index{mp\_int}
350 All LTM functions that use the mp\_int type will expect a pointer to mp\_int structure. You must allocate memory to
352 done to use an mp\_int is that it must be initialized.
377 A single mp\_int can be initialized with the ``mp\_init'' function.
384 This function expects a pointer to an mp\_int structure and will initialize the members of the structure so the mp\_int
385 represents the default integer which is zero. If the functions returns MP\_OKAY then the mp\_int is ready to be used
407 When you are finished with an mp\_int it is ideal to return the heap it used back to the system. The following function
    [all...]
poster.tex 13 $a = b $ & {\tt mp\_set\_int(\&a, b)} & $c = a \vee b$ & {\tt mp\_or(\&a, \&b, \&c)} \\
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
509 __slots__ = ('_exp','_int','_sign', '_is_special')
511 # (-1)**_sign * _int * 10**_exp
530 # Note that the coefficient, self._int, is actually stored as
559 self._int = str(int(intpart+fracpart))
566 self._int = str(int(diag or '0')).lstrip('0')
573 self._int = '0'
585 self._int = str(abs(value))
593 self._int = value._int
    [all...]
stringold.py 192 _int = int variable
230 return _apply(_int, args)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
509 __slots__ = ('_exp','_int','_sign', '_is_special')
511 # (-1)**_sign * _int * 10**_exp
530 # Note that the coefficient, self._int, is actually stored as
559 self._int = str(int(intpart+fracpart))
566 self._int = str(int(diag or '0')).lstrip('0')
573 self._int = '0'
585 self._int = str(abs(value))
593 self._int = value._int
    [all...]
stringold.py 192 _int = int variable
230 return _apply(_int, args)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
xmlconfig.c 319 v->_int = strToI (string, &tail, 0);
370 ranges[i].start._int > ranges[i].end._int)
407 if (v->_int >= info->ranges[i].start._int &&
408 v->_int <= info->ranges[i].end._int)
782 else if (screenNum._int != data->screenNum)
    [all...]
xmlconfig.h 41 GLint _int; /**< \brief Integer or Enum */ member in union:driOptionValue
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.c 319 v->_int = strToI (string, &tail, 0);
370 ranges[i].start._int > ranges[i].end._int)
407 if (v->_int >= info->ranges[i].start._int &&
408 v->_int <= info->ranges[i].end._int)
782 else if (screenNum._int != data->screenNum)
    [all...]
xmlconfig.h 41 GLint _int; /**< \brief Integer or Enum */ member in union:driOptionValue
  /external/stlport/stlport/stl/
_limits.c 66 template <class _Int, _STLP_LIMITS_MIN_TYPE __imin, _STLP_LIMITS_MAX_TYPE __imax, int __idigits, bool __ismod> \
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_limits.c 66 template <class _Int, _STLP_LIMITS_MIN_TYPE __imin, _STLP_LIMITS_MAX_TYPE __imax, int __idigits, bool __ismod> \
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 100 extern "C" int __aeabi_idivmod(int32_t, int32_t); // [DIV|REM]_INT[_2ADDR|_LIT8|_LIT16]
  /external/chromium_org/third_party/sqlite/src/test/
malloc4.test 133 # Test for malloc() failures within _int(), _int64() and _real(). The only
  /external/wpa_supplicant_8/wpa_supplicant/
config.c     [all...]

Completed in 438 milliseconds

1 23 4