HomeSort by relevance Sort by last modified time
    Searched refs:a_ (Results 51 - 75 of 92) sorted by null

1 23 4

  /external/stlport/test/unit/
partition_test.cpp 35 bool operator() (int a_) const {
37 return a_ < _limit;
equal_test.cpp 33 static bool values_squared(int a_, int b_);
175 bool EqualTest::values_squared(int a_, int b_)
177 return (a_ * a_ == b_);
sort_test.cpp 42 static bool string_less(const char* a_, const char* b_)
44 return strcmp(a_, b_) < 0 ? 1 : 0;
partial_test.cpp 50 static bool str_compare(const char* a_, const char* b_)
52 return strcmp(a_, b_) < 0 ? 1 : 0;
rm_cp_test.cpp 46 static bool odd(int a_)
48 return (a_ % 2) != 0;
  /external/v8/test/mjsunit/
enumeration-order.js 37 for (var i = 0; i < size; i++) a["a_" + i] = i + 1;
40 for (var i = 0; i < size; i +=3) delete a["a_" + i];
50 for (var i = 0; i < size-1; i++) code += " a_" + i + " : " + (i + 1) + ", ";
51 code += "a_" + (size - 1) + " : " + size;
  /ndk/tests/device/test-gnustl-full/unit/
mismatch_test.cpp 34 bool str_equal(const char* a_, const char* b_)
36 return strcmp(a_, b_) == 0 ? 1 : 0;
partition_test.cpp 35 bool operator() (int a_) const {
37 return a_ < _limit;
equal_test.cpp 33 static bool values_squared(int a_, int b_);
175 bool EqualTest::values_squared(int a_, int b_)
177 return (a_ * a_ == b_);
sort_test.cpp 42 static bool string_less(const char* a_, const char* b_)
44 return strcmp(a_, b_) < 0 ? 1 : 0;
partial_test.cpp 50 static bool str_compare(const char* a_, const char* b_)
52 return strcmp(a_, b_) < 0 ? 1 : 0;
rm_cp_test.cpp 46 static bool odd(int a_)
48 return (a_ % 2) != 0;
  /ndk/tests/device/test-stlport/unit/
mismatch_test.cpp 34 bool str_equal(const char* a_, const char* b_)
36 return strcmp(a_, b_) == 0 ? 1 : 0;
partition_test.cpp 35 bool operator() (int a_) const {
37 return a_ < _limit;
equal_test.cpp 33 static bool values_squared(int a_, int b_);
175 bool EqualTest::values_squared(int a_, int b_)
177 return (a_ * a_ == b_);
sort_test.cpp 42 static bool string_less(const char* a_, const char* b_)
44 return strcmp(a_, b_) < 0 ? 1 : 0;
partial_test.cpp 50 static bool str_compare(const char* a_, const char* b_)
52 return strcmp(a_, b_) < 0 ? 1 : 0;
rm_cp_test.cpp 46 static bool odd(int a_)
48 return (a_ % 2) != 0;
  /external/clang/test/SemaCXX/
new-delete.cpp 468 Foo() : a_(new scoped_array<int>[5]) { }
469 scoped_array< scoped_array<int> > a_; member in struct:PR12061::Foo
478 Foo2() : a_(new scoped_array2<int>[5]) { }
479 scoped_array2< scoped_array2<int> > a_; member in struct:PR12061::Foo2
warn-thread-safety-analysis.cpp 477 int a_ __attribute__((guarded_by(mu1_))); member in class:LateBar
517 int res = b1.a_ + b3->b_;
789 static int a_ GUARDED_BY(mu1_);
798 if (a_ == 4)
811 int a_ GUARDED_BY(mu1_);
826 res = b1.a_ + b3->b_;
828 b1.a_ = res + b3->b_;
908 int GetA() EXCLUSIVE_LOCKS_REQUIRED(foo_->mu_) { return a_; }
909 int a_ GUARDED_BY(foo_->mu_);
1148 int a_ GUARDED_BY(mu_)
    [all...]
  /external/v8/tools/oom_dump/
oom_dump.cc 101 explicit IndirectSorter(int* a) : a_(a) { }
104 return a_[i0] > a_[i1];
108 int* a_; member in class:__anon13143::IndirectSorter
  /external/freetype/include/freetype/internal/
sfnt.h     [all...]
  /external/clang/test/CXX/class/class.union/
p1.cpp 6 int a_; member in class:Okay
  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft_sse2.c 282 const __m128 a_ = _mm_mul_ps(wkr_, xr_); local
286 const __m128 yr_ = _mm_sub_ps(a_, b_); // 2-126, 4-124, 6-122, 8-120,
373 const __m128 a_ = _mm_mul_ps(wkr_, xr_); local
377 const __m128 yr_ = _mm_add_ps(a_, b_); // 2-126, 4-124, 6-122, 8-120,
  /external/linux-tools-perf/util/
help.c 30 static int cmdname_compare(const void *a_, const void *b_)
32 struct cmdname *a = *(struct cmdname **)a_;

Completed in 516 milliseconds

1 23 4