HomeSort by relevance Sort by last modified time
    Searched defs:result_type (Results 151 - 175 of 193) sorted by null

1 2 3 4 5 67 8

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
shared_ptr.h 283 typedef void result_type; typedef in struct:tr1::_Sp_deleter
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
hashtable_policy.h 341 typedef std::size_t result_type; typedef in struct:__detail::_Mod_range_hashing
343 result_type
    [all...]
random.h 250 typedef _UIntType result_type;
253 static constexpr result_type multiplier = __a;
255 static constexpr result_type increment = __c;
257 static constexpr result_type modulus = __m;
258 static constexpr result_type default_seed = 1u;
268 linear_congruential_engine(result_type __s = default_seed)
291 seed(result_type __s = default_seed);
310 static constexpr result_type
317 static constexpr result_type
334 result_type
3137 typedef _RealType result_type; typedef in class:fisher_f_distribution
3361 typedef _RealType result_type; typedef in class:student_t_distribution
3576 typedef bool result_type; typedef in class:bernoulli_distribution
3784 typedef _IntType result_type; typedef in class:binomial_distribution
4015 typedef _IntType result_type; typedef in class:geometric_distribution
4215 typedef _IntType result_type; typedef in class:negative_binomial_distribution
4437 typedef _IntType result_type; typedef in class:poisson_distribution
4653 typedef _RealType result_type; typedef in class:exponential_distribution
4855 typedef _RealType result_type; typedef in class:weibull_distribution
5058 typedef _RealType result_type; typedef in class:extreme_value_distribution
5258 typedef _IntType result_type; typedef in class:discrete_distribution
5488 typedef _RealType result_type; typedef in class:piecewise_constant_distribution
5755 typedef _RealType result_type; typedef in class:piecewise_linear_distribution
6030 typedef uint_least32_t result_type; typedef in class:seed_seq
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
shared_ptr.h 283 typedef void result_type; typedef in struct:tr1::_Sp_deleter
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
random.h 252 typedef _UIntType result_type;
255 static constexpr result_type multiplier = __a;
257 static constexpr result_type increment = __c;
259 static constexpr result_type modulus = __m;
260 static constexpr result_type default_seed = 1u;
270 linear_congruential_engine(result_type __s = default_seed)
293 seed(result_type __s = default_seed);
312 static constexpr result_type
319 static constexpr result_type
336 result_type
3139 typedef _RealType result_type; typedef in class:fisher_f_distribution
3363 typedef _RealType result_type; typedef in class:student_t_distribution
3578 typedef bool result_type; typedef in class:bernoulli_distribution
3786 typedef _IntType result_type; typedef in class:binomial_distribution
4017 typedef _IntType result_type; typedef in class:geometric_distribution
4217 typedef _IntType result_type; typedef in class:negative_binomial_distribution
4439 typedef _IntType result_type; typedef in class:poisson_distribution
4655 typedef _RealType result_type; typedef in class:exponential_distribution
4857 typedef _RealType result_type; typedef in class:weibull_distribution
5060 typedef _RealType result_type; typedef in class:extreme_value_distribution
5260 typedef _IntType result_type; typedef in class:discrete_distribution
5490 typedef _RealType result_type; typedef in class:piecewise_constant_distribution
5757 typedef _RealType result_type; typedef in class:piecewise_linear_distribution
6032 typedef uint_least32_t result_type; typedef in class:seed_seq
    [all...]
hashtable_policy.h 444 typedef std::size_t result_type; typedef in struct:_Mod_range_hashing
446 result_type
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
shared_ptr.h 283 typedef void result_type; typedef in struct:tr1::_Sp_deleter
  /toolchain/binutils/binutils-2.25/opcodes/
m32c-asm.c 133 enum cgen_parse_operand_result result_type;
138 & result_type, & val);
144 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
228 enum cgen_parse_operand_result result_type;
233 & result_type, & val);
239 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
269 enum cgen_parse_operand_result result_type;
274 & result_type, & val);
280 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
327 enum cgen_parse_operand_result result_type;
132 enum cgen_parse_operand_result result_type; local
227 enum cgen_parse_operand_result result_type; local
268 enum cgen_parse_operand_result result_type; local
326 enum cgen_parse_operand_result result_type; local
347 enum cgen_parse_operand_result result_type; local
    [all...]
mep-asm.c 232 enum cgen_parse_operand_result result_type;
239 & result_type, & value);
244 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
257 & result_type, & value);
262 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
272 & result_type, & value);
277 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
368 enum cgen_parse_operand_result result_type;
383 &result_type, &value);
388 && (result_type != CGEN_PARSE_OPERAND_RESULT_NUMBER || value != 0)
231 enum cgen_parse_operand_result result_type; local
367 enum cgen_parse_operand_result result_type; local
    [all...]
  /art/compiler/optimizing/
instruction_simplifier.cc 788 static bool IsTypeConversionImplicit(Primitive::Type input_type, Primitive::Type result_type) {
790 DCHECK_NE(Primitive::kPrimBoolean, result_type);
795 return result_type == input_type ||
796 (result_type == Primitive::kPrimInt && (input_type == Primitive::kPrimBoolean ||
800 (result_type == Primitive::kPrimChar && input_type == Primitive::kPrimBoolean) ||
801 (result_type == Primitive::kPrimShort && (input_type == Primitive::kPrimBoolean ||
803 (result_type == Primitive::kPrimByte && input_type == Primitive::kPrimBoolean);
806 static bool IsTypeConversionLossless(Primitive::Type input_type, Primitive::Type result_type) {
811 DCHECK_NE(input_type, result_type);
812 return Primitive::ComponentSize(result_type) > Primitive::ComponentSize(input_type) &
820 Primitive::Type result_type = instruction->GetResultType(); local
    [all...]
code_generator_mips.cc 4708 Primitive::Type result_type = conversion->GetResultType(); local
4714 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type; local
4755 Primitive::Type result_type = conversion->GetResultType(); local
4802 << " to " << result_type; local
5018 << " to " << result_type; local
    [all...]
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraStateMachine.h 104 qcamera_api_result_type_t result_type; // result type member in struct:qcamera::__anon3256
106 int enabled; // result_type == QCAMERA_API_RESULT_TYPE_ENABLE_FLAG
107 char *params; // result_type == QCAMERA_API_RESULT_TYPE_PARAMS
108 int handle; // result_type ==QCAMERA_API_RESULT_TYPE_HANDLE
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraStateMachine.h 104 qcamera_api_result_type_t result_type; // result type member in struct:qcamera::__anon3808
106 int enabled; // result_type == QCAMERA_API_RESULT_TYPE_ENABLE_FLAG
107 char *params; // result_type == QCAMERA_API_RESULT_TYPE_PARAMS
108 int handle; // result_type ==QCAMERA_API_RESULT_TYPE_HANDLE
  /hardware/qcom/camera/QCamera2/HAL/
QCameraStateMachine.h 116 qcamera_api_result_type_t result_type; // result type member in struct:qcamera::__anon31305
118 int enabled; // result_type == QCAMERA_API_RESULT_TYPE_ENABLE_FLAG
119 char *params; // result_type == QCAMERA_API_RESULT_TYPE_PARAMS
120 int handle; // result_type ==QCAMERA_API_RESULT_TYPE_HANDLE
  /hardware/qcom/camera/msmcobalt/QCamera2/HAL/
QCameraStateMachine.h 116 qcamera_api_result_type_t result_type; // result type member in struct:qcamera::__anon31942
118 int enabled; // result_type == QCAMERA_API_RESULT_TYPE_ENABLE_FLAG
119 char *params; // result_type == QCAMERA_API_RESULT_TYPE_PARAMS
120 int handle; // result_type ==QCAMERA_API_RESULT_TYPE_HANDLE
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
lexical_cast.hpp 216 > result_type; typedef in struct:boost::detail::is_char_or_wchar
218 BOOST_STATIC_CONSTANT(bool, value = (result_type::value) );
587 typedef BOOST_DEDUCED_TYPENAME make_unsigned<T>::type result_type; typedef
588 const result_type uvalue = static_cast<result_type>(value);
2038 > result_type; typedef in struct:boost::detail::is_this_float_conversion_optimized
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
bitmap_allocator.h 307 typename _Functor::result_type>
313 typedef typename _Functor::result_type result_type; typedef in class:__detail::_Functor_Ref
318 result_type
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
bitmap_allocator.h 307 typename _Functor::result_type>
313 typedef typename _Functor::result_type result_type; typedef in class:__detail::_Functor_Ref
318 result_type
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
bitmap_allocator.h 307 typename _Functor::result_type>
313 typedef typename _Functor::result_type result_type; typedef in class:__detail::_Functor_Ref
318 result_type
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
bitmap_allocator.h 307 typename _Functor::result_type>
313 typedef typename _Functor::result_type result_type; typedef in class:__detail::_Functor_Ref
318 result_type
  /external/clang/bindings/python/clang/
cindex.py 1326 def result_type(self): member in class:Cursor
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 795 template <typename ArgumentType> struct result_type {}; struct in namespace:mpfr::internal
797 template <> struct result_type<mpreal> {typedef mpreal type;}; struct in namespace:mpfr::internal
798 template <> struct result_type<mpz_t> {typedef mpreal type;}; struct in namespace:mpfr::internal
799 template <> struct result_type<mpq_t> {typedef mpreal type;}; struct in namespace:mpfr::internal
800 template <> struct result_type<long double> {typedef mpreal type;}; struct in namespace:mpfr::internal
801 template <> struct result_type<double> {typedef mpreal type;}; struct in namespace:mpfr::internal
802 template <> struct result_type<unsigned long int> {typedef mpreal type;}; struct in namespace:mpfr::internal
803 template <> struct result_type<unsigned int> {typedef mpreal type;}; struct in namespace:mpfr::internal
804 template <> struct result_type<long int> {typedef mpreal type;}; struct in namespace:mpfr::internal
805 template <> struct result_type<int> {typedef mpreal type;}; struct in namespace:mpfr::internal
808 template <> struct result_type<int64_t > {typedef mpreal type;}; struct in namespace:mpfr::internal
809 template <> struct result_type<uint64_t > {typedef mpreal type;}; struct in namespace:mpfr::internal
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 3461 typedef int result_type; typedef in struct:testing::gmock_matchers_test::PolymorphicFunctor
3481 typedef const int* result_type; typedef in struct:testing::gmock_matchers_test::ReferencingFunctor
    [all...]
  /external/v8/src/
code-stubs-hydrogen.cc 1523 Type* result_type = state.GetResultType(); local
1602 Type* result_type = state.GetResultType(); local
    [all...]
typing-asm.cc 180 Type* result_type = Type::Undefined(); local
193 result_type = computed_type_;
197 Type::Function(result_type, Type::Any(), fun->parameter_count(), zone());
816 Type* result_type; local
818 result_type = cache_.kAsmIntQ;
822 result_type = cache_.kAsmFloatDoubleQ;
824 result_type = cache_.kAsmFloatQ;
829 result_type = cache_.kAsmFloatDoubleQ;
834 result_type = cache_.kAsmDoubleQ;
841 if (!assignment_type->Is(result_type)) {
1024 Type* result_type = fun_type->Result(); local
    [all...]

Completed in 1075 milliseconds

1 2 3 4 5 67 8