HomeSort by relevance Sort by last modified time
    Searched refs:n_ (Results 1 - 25 of 39) 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_;
  /external/stlport/test/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-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; }
  /external/compiler-rt/lib/tsan/rtl/
tsan_stack_trace.cc 21 : n_()
27 : n_()
40 CHECK_NE(n_, 0);
44 n_ = 0;
57 n_ = cnt;
63 n_ = thr->shadow_stack_pos - thr->shadow_stack;
64 if (n_ + !!toppc == 0)
69 if (n_ + !!toppc > c_) {
70 start = n_ - c_ + !!toppc;
71 n_ = c_ - !!toppc
    [all...]
tsan_stack_trace.h 44 uptr n_; member in class:__tsan::StackTrace
  /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::__anon43106
    [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/chromium_org/third_party/leveldatabase/src/table/
merger.cc 19 n_(n),
36 for (int i = 0; i < n_; i++) {
44 for (int i = 0; i < n_; i++) {
52 for (int i = 0; i < n_; i++) {
68 for (int i = 0; i < n_; i++) {
94 for (int i = 0; i < n_; i++) {
126 for (int i = 0; i < n_; i++) {
144 int n_; member in class:leveldb::__anon16111::MergingIterator
157 for (int i = 0; i < n_; i++) {
172 for (int i = n_-1; i >= 0; i--)
    [all...]
  /external/compiler-rt/test/tsan/
deadlock_detector_stress_test.cc 106 LockTest() : n_(), locks_() {}
108 n_ = n;
109 locks_ = new LockType*[n_];
110 for (size_t i = 0; i < n_; i++)
114 for (size_t i = 0; i < n_; i++)
119 assert(i < n_);
124 assert(i < n_);
129 assert(i < n_);
134 assert(i < n_);
139 assert(i < n_);
567 size_t n_; member in class:LockTest
    [all...]
  /external/chromium_org/third_party/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...]

Completed in 1003 milliseconds

1 2