HomeSort by relevance Sort by last modified time
    Searched refs:n_ (Results 1 - 25 of 34) sorted by null

1 2

  /ndk/tests/device/test-stlport_shared-exception/jni/
eh1.cpp 10 Foo(int n) : n_(n) { }
11 int f() { return n_; }
18 int n_; member in class:Foo
28 n_ = 16;
31 return n_;
50 return n_;
  /ndk/tests/device/test-stlport_static-exception/jni/
eh1.cpp 10 Foo(int n) : n_(n) { }
11 int f() { return n_; }
18 int n_; member in class:Foo
28 n_ = 16;
31 return n_;
50 return n_;
  /ndk/tests/device/test-gnustl-full/unit/
unary.h 12 bool operator()(int n_) const { return(n_ % 2) == 1; }
16 bool operator()(int n_) const { return n_ >= 0; }
ptr2_test.cpp 39 bool even(int n_)
41 return(n_ % 2) == 0;
rndshf_test.cpp 20 unsigned long operator()(unsigned long n_)
22 return rand() % n_;
  /ndk/tests/device/test-stlport/unit/
unary.h 12 bool operator()(int n_) const { return(n_ % 2) == 1; }
16 bool operator()(int n_) const { return n_ >= 0; }
ptr2_test.cpp 39 bool even(int n_)
41 return(n_ % 2) == 0;
rndshf_test.cpp 20 unsigned long operator()(unsigned long n_)
22 return rand() % n_;
  /frameworks/base/media/mca/filterfw/native/core/
statistics.h 30 float NumSamples() const { return n_; }
37 int n_; member in class:android::filterfw::IncrementalGaussian
51 : gain_(gain), n_(0), value_(0.0f) {}
54 value_ = n_++ ? gain_ * measurement + (1.0f - gain_) * value_ : measurement;
57 void Reset() { n_ = 0; }
59 int NumMeasurements() const { return n_; }
64 int n_; member in class:android::filterfw::RCFilter
statistics.cpp 25 : n_(0),
35 ++n_;
39 mean_ = sum_x_ / n_;
40 var_ = sum_x2_ / n_ - mean_ * mean_;
51 if (var_ == 0.0f) { return n_ > 0 ? value == mean_ : 0.0f; }
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
iterator.hpp 34 , BOOST_MPL_AUX_NTTP_DECL(long, n_)
40 typedef typename v_at<Vector,n_>::type type;
43 typedef mpl::long_<n_> pos;
47 next_ = n_ + 1
48 , prior_ = n_ - 1
49 , pos_ = n_
63 , BOOST_MPL_AUX_NTTP_DECL(long, n_)
65 struct next< v_iter<Vector,n_> >
67 typedef v_iter<Vector,(n_ + 1)> type;
72 , BOOST_MPL_AUX_NTTP_DECL(long, n_)
108 enum { pos_ = Iterator::pos_, n_ = N::value }; enumerator in enum:boost::mpl::advance_impl::apply::__anon28122
    [all...]
at.hpp 31 template< typename Vector, long n_ >
34 typedef long_< (Vector::lower_bound_::value + n_) > index_;
39 template< typename Vector, long n_ >
41 : aux::wrapped_type< typename v_at_impl<Vector,n_>::type >
62 template< typename Vector, BOOST_MPL_AUX_NTTP_DECL(long, n_) > struct v_at;
64 template< BOOST_MPL_AUX_NTTP_DECL(long, n_) >
65 struct at_impl< aux::vector_tag<n_> >
88 template< BOOST_MPL_AUX_NTTP_DECL(long, n_) > struct v_at_impl
104 template< typename T, BOOST_MPL_AUX_NTTP_DECL(long, n_) >
106 : aux::v_at_impl<n_>::template result_<T
    [all...]
back.hpp 44 template< long n_ >
45 struct back_impl< aux::vector_tag<n_> >
front.hpp 41 template< BOOST_MPL_AUX_NTTP_DECL(long, n_) >
42 struct front_impl< aux::vector_tag<n_> >
  /external/compiler-rt/test/tsan/
deadlock_detector_stress_test.cc 103 LockTest() : n_(), locks_() {}
105 n_ = n;
106 locks_ = new LockType*[n_];
107 for (size_t i = 0; i < n_; i++)
111 for (size_t i = 0; i < n_; i++)
116 assert(i < n_);
121 assert(i < n_);
126 assert(i < n_);
131 assert(i < n_);
136 assert(i < n_);
577 size_t n_; member in class:LockTest
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
type_traits_unittest.cc 60 int n_; member in struct:A
66 explicit B(int n) : n_(n) { }
68 int n_; member in class:B
76 explicit C(int n) : n_(n) { }
78 int n_; member in class:C
94 explicit D(int n) : n_(n) { }
96 int n_; member in class:D
112 int n_; member in class:E
128 explicit F(int n) : n_(n) { }
130 int n_; member in class:F
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
full_lambda.hpp 84 #define n_ BOOST_MPL_LIMIT_METAFUNCTION_ARITY macro
88 BOOST_MPL_PP_DEFAULT_PARAMS(n_,bool C,false)
96 struct lambda_or< BOOST_MPL_PP_ENUM(n_,false) >
102 #undef n_ macro
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyport.h 310 size_t i_, n_ = (length); \
313 if (n_ >= 16) \
314 memcpy(t_, s_, n_); \
316 for (i_ = 0; i_ < n_; i_++) \
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyport.h 310 size_t i_, n_ = (length); \
313 if (n_ >= 16) \
314 memcpy(t_, s_, n_); \
316 for (i_ = 0; i_ < n_; i_++) \
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-param-test_test.cc 843 NonParameterizedBaseTest() : n_(17) { }
845 int n_; member in class:NonParameterizedBaseTest
859 EXPECT_EQ(17, n_);
863 EXPECT_EQ(17, n_);
    [all...]
  /external/gtest/test/
gtest-param-test_test.cc 843 NonParameterizedBaseTest() : n_(17) { }
845 int n_; member in class:NonParameterizedBaseTest
859 EXPECT_EQ(17, n_);
863 EXPECT_EQ(17, n_);
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-param-test_test.cc 843 NonParameterizedBaseTest() : n_(17) { }
845 int n_; member in class:NonParameterizedBaseTest
859 EXPECT_EQ(17, n_);
863 EXPECT_EQ(17, n_);
    [all...]
  /bionic/libc/kernel/uapi/linux/usb/
video.h 320 #define UVC_INPUT_HEADER_DESCRIPTOR(n,p) uvc_input_header_descriptor_ ##n_ ##p
339 #define UVC_OUTPUT_HEADER_DESCRIPTOR(n,p) uvc_output_header_descriptor_ ##n_ ##p
  /development/ndk/platforms/android-21/include/linux/usb/
video.h 317 #define UVC_INPUT_HEADER_DESCRIPTOR(n, p) uvc_input_header_descriptor_##n_##p
335 #define UVC_OUTPUT_HEADER_DESCRIPTOR(n, p) uvc_output_header_descriptor_##n_##p
  /external/kernel-headers/original/uapi/linux/usb/
video.h 372 uvc_input_header_descriptor_##n_##p
407 uvc_output_header_descriptor_##n_##p

Completed in 625 milliseconds

1 2