HomeSort by relevance Sort by last modified time
    Searched refs:a_ (Results 26 - 50 of 139) sorted by null

12 3 4 5 6

  /ndk/tests/device/test-stlport/unit/
transform_test.cpp 28 static int negate_int(int a_) {
29 return -a_;
31 static char map_char(char a_, int b_) {
32 return char(a_ + b_);
find_test.cpp 29 static bool odd(int a_);
30 static bool div_3(int a_);
107 bool FindTest::odd(int a_)
109 return (a_ % 2) != 0;
112 bool FindTest::div_3(int a_)
114 return a_ % 3 ? 0 : 1;
max_test.cpp 28 static bool str_compare(const char* a_, const char* b_)
29 { return strcmp(a_, b_) < 0 ? 1 : 0; }
min_test.cpp 27 static bool str_compare(const char* a_, const char* b_)
28 { return strcmp(a_, b_) < 0 ? 1 : 0; }
count_test.cpp 24 static int odd(int a_);
70 int CountTest::odd(int a_)
72 return a_ % 2;
  /external/ceres-solver/include/ceres/
loss_function.h 177 explicit HuberLoss(double a) : a_(a), b_(a * a) { }
181 const double a_; member in class:ceres::HuberLoss
231 explicit ArctanLoss(double a) : a_(a), b_(1 / (a * a)) { }
235 const double a_; member in class:ceres::ArctanLoss
274 const double a_, b_, c_; member in class:ceres::TolerantLoss
315 rho_(rho), a_(a), ownership_(ownership) { }
326 const double a_; member in class:ceres::ScaledLoss
  /external/stlport/test/unit/
find_test.cpp 29 static bool odd(int a_);
30 static bool div_3(int a_);
107 bool FindTest::odd(int a_)
109 return (a_ % 2) != 0;
112 bool FindTest::div_3(int a_)
114 return a_ % 3 ? 0 : 1;
max_test.cpp 28 static bool str_compare(const char* a_, const char* b_)
29 { return strcmp(a_, b_) < 0 ? 1 : 0; }
min_test.cpp 27 static bool str_compare(const char* a_, const char* b_)
28 { return strcmp(a_, b_) < 0 ? 1 : 0; }
count_test.cpp 24 static int odd(int a_);
70 int CountTest::odd(int a_)
72 return a_ % 2;
  /ndk/tests/device/test-gnustl-full/unit/
find_test.cpp 29 static bool odd(int a_);
30 static bool div_3(int a_);
107 bool FindTest::odd(int a_)
109 return (a_ % 2) != 0;
112 bool FindTest::div_3(int a_)
114 return a_ % 3 ? 0 : 1;
max_test.cpp 28 static bool str_compare(const char* a_, const char* b_)
29 { return strcmp(a_, b_) < 0 ? 1 : 0; }
min_test.cpp 27 static bool str_compare(const char* a_, const char* b_)
28 { return strcmp(a_, b_) < 0 ? 1 : 0; }
count_test.cpp 24 static int odd(int a_);
70 int CountTest::odd(int a_)
72 return a_ % 2;
  /external/ceres-solver/internal/ceres/
conditioned_cost_function_test.cc 49 LinearCostFunction(double a, double b) : a_(a), b_(b) {
57 *residuals = **parameters * a_ + b_;
59 **jacobians = a_;
66 const double a_, b_; member in class:ceres::internal::LinearCostFunction
autodiff_cost_function_test.cc 43 explicit BinaryScalarCost(double a): a_(a) {}
47 cost[0] = x[0] * y[0] + x[1] * y[1] - T(a_);
51 double a_; member in class:ceres::internal::BinaryScalarCost
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
default02.pass.cpp 43 std::unique_ptr<A[], D> a_; member in struct:B
47 A* get() const {return a_.get();}
48 D& get_deleter() {return a_.get_deleter();}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
default02.pass.cpp 43 std::unique_ptr<A[], D> a_; member in struct:B
47 A* get() const {return a_.get();}
48 D& get_deleter() {return a_.get_deleter();}
  /external/chromium_org/testing/gtest/test/
gtest-tuple_test.cc 264 a_(1, 0, 0, 0, 0, 0, 0, 0, 0, 2),
267 BigTuple a_, b_; member in class:__anon15501::BigTupleTest
278 EXPECT_EQ(1, get<0>(a_));
279 EXPECT_EQ(2, get<9>(a_));
282 const BigTuple a(a_);
289 EXPECT_TRUE(a_ == a_);
290 EXPECT_FALSE(a_ != a_);
292 EXPECT_TRUE(a_ != b_)
    [all...]
  /external/gtest/test/
gtest-tuple_test.cc 264 a_(1, 0, 0, 0, 0, 0, 0, 0, 0, 2),
267 BigTuple a_, b_; member in class:__anon5313::BigTupleTest
278 EXPECT_EQ(1, get<0>(a_));
279 EXPECT_EQ(2, get<9>(a_));
282 const BigTuple a(a_);
289 EXPECT_TRUE(a_ == a_);
290 EXPECT_FALSE(a_ != a_);
292 EXPECT_TRUE(a_ != b_)
    [all...]
  /external/protobuf/gtest/test/
gtest-tuple_test.cc 232 a_(1, 0, 0, 0, 0, 0, 0, 0, 0, 2),
235 BigTuple a_, b_; member in class:__anon12603::BigTupleTest
246 EXPECT_EQ(1, get<0>(a_));
247 EXPECT_EQ(2, get<9>(a_));
250 const BigTuple a(a_);
257 EXPECT_TRUE(a_ == a_);
258 EXPECT_FALSE(a_ != a_);
260 EXPECT_TRUE(a_ != b_)
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-tuple_test.cc 264 a_(1, 0, 0, 0, 0, 0, 0, 0, 0, 2),
267 BigTuple a_, b_; member in class:__anon23091::BigTupleTest
278 EXPECT_EQ(1, get<0>(a_));
279 EXPECT_EQ(2, get<9>(a_));
282 const BigTuple a(a_);
289 EXPECT_TRUE(a_ == a_);
290 EXPECT_FALSE(a_ != a_);
292 EXPECT_TRUE(a_ != b_)
    [all...]
  /external/qemu/fpu/
softfloat-specialize.h 139 int float16_is_quiet_nan(float16 a_)
141 return float16_is_any_nan(a_);
144 int float16_is_signaling_nan(float16 a_)
154 int float16_is_quiet_nan(float16 a_)
156 uint16_t a = float16_val(a_);
169 int float16_is_signaling_nan(float16 a_)
171 uint16_t a = float16_val(a_);
184 float16 float16_maybe_silence_nan(float16 a_)
186 if (float16_is_signaling_nan(a_)) {
194 uint16_t a = float16_val(a_);
    [all...]
  /external/chromium_org/ppapi/utility/
completion_callback_factory.h 649 a_() {
653 a_(a) {
657 (object->*method_)(result, a_);
661 A a_; member in class:pp::CompletionCallbackFactory::Dispatcher1
672 a_(),
678 a_(a),
686 (object->*method_)(result, Traits::StorageToPluginArg(output_), a_); local
695 A a_; member in class:pp::CompletionCallbackFactory::DispatcherWithOutput1
705 a_(),
710 a_(a)
719 A a_; member in class:pp::CompletionCallbackFactory::Dispatcher2
747 (object->*method_)(result, Traits::StorageToPluginArg(output_), a_, b_); local
756 A a_; member in class:pp::CompletionCallbackFactory::DispatcherWithOutput2
783 A a_; member in class:pp::CompletionCallbackFactory::Dispatcher3
826 A a_; member in class:pp::CompletionCallbackFactory::DispatcherWithOutput3
    [all...]
  /external/libnl/lib/
data.c 176 void *a_ = nl_data_get(a); local
179 if (a_ && b_)
180 return memcmp(a_, b_, nl_data_get_size(a));

Completed in 521 milliseconds

12 3 4 5 6