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

1 2

  /external/compiler-rt/test/asan/TestCases/
use-after-scope-dtor-order.cc 7 explicit IntHolder(int *val = 0) : val_(val) { }
9 printf("Value: %d\n", *val_); // BOOM
13 void set(int *val) { val_ = val; }
14 int *get() { return val_; }
16 int *val_; member in struct:IntHolder
  /toolchain/binutils/binutils-2.25/gold/testsuite/
many_sections_test.cc 37 static T val() { return C::val_; }
39 static T val_; member in class:C
43 T C<T>::val_; member in class:C
  /art/runtime/
offsets.h 30 explicit Offset(size_t val) : val_(val) {}
32 return static_cast<int32_t>(val_);
35 return static_cast<uint32_t>(val_);
38 return val_;
42 size_t val_; member in class:art::Offset
50 bool operator>(FrameOffset other) const { return val_ > other.val_; }
51 bool operator<(FrameOffset other) const { return val_ < other.val_; }
monitor_pool_test.cc 29 explicit RandGen(uint32_t seed) : val_(seed) {}
32 val_ = val_ * 48271 % 2147483647 + 13;
33 return val_;
36 uint32_t val_; member in class:art::RandGen
  /external/brotli/dec/
bit_reader.c 19 br->val_ = 0;
20 br->bit_pos_ = sizeof(br->val_) << 3;
24 size_t aligned_read_mask = (sizeof(br->val_) >> 1) - 1;
bit_reader.h 45 reg_t val_; /* pre-fetched bits */ member in struct:__anon13460
46 uint32_t bit_pos_; /* current bit-reading position in val_ */
52 reg_t val_; member in struct:__anon13461
69 to->val_ = from->val_;
77 to->val_ = from->val_;
89 BrotliInput, including whole bytes in br->val_. */
95 (excluding the bits remaining in br->val_). */
166 br->val_ >>= 56
    [all...]
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.create/
make_unique.array.pass.cpp 19 foo () : val_(3) {}
20 int get () const { return val_; }
22 int val_; member in class:foo
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
make_unique.array.pass.cpp 18 foo () : val_(3) {}
19 int get () const { return val_; }
21 int val_; member in class:foo
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/unique.ptr/unique.ptr.create/
make_unique.array.pass.cpp 18 foo () : val_(3) {}
19 int get () const { return val_; }
21 int val_; member in class:foo
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
attribute.swg 158 template < class C > inline void %mangle(Class) ##_## AttributeName ## _set(C* self_, AttributeType val_) {
165 #define %mangle(Class) ##_## AttributeName ## _set(self_, val_) SetMethodCall
198 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, self_->GetMethod(), self_->SetMethod(val_))
206 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, &self_->GetMethod(), self_->SetMethod(*val_))
214 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AccessorMethod, AccessorMethod, self_->AccessorMethod(), self_->AccessorMethod() = val_)
216 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AttributeName, AttributeName, self_->AttributeName(), self_->AttributeName() = val_)
222 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AccessorMethod, AccessorMethod, &self_->AccessorMethod(), self_->AccessorMethod() = *val_)
224 %attribute_custom(%arg(Class), %arg(AttributeType), AccessorName, AccessorName, AccessorName, &self_->AccessorName(), self_->AccessorName() = *val_)
231 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AccessorMethod, AccessorMethod, self_->AccessorMethod(), self_->AccessorMethod() = val_)
233 %attribute_custom(%arg(Class), %arg(AttributeType), AccessorMethod, AccessorMethod, AccessorMethod, self_->AccessorMethod(), self_->AccessorMethod() = val_)
    [all...]
  /external/eigen/unsupported/test/
cxx11_eventcount.cpp 42 std::atomic<int> val_; member in struct:TestQueue
45 TestQueue() : val_() {}
47 ~TestQueue() { VERIFY_IS_EQUAL(val_.load(), 0); }
50 int val = val_.load(std::memory_order_relaxed);
55 if (val_.compare_exchange_weak(val, val + 1, std::memory_order_relaxed))
61 int val = val_.load(std::memory_order_relaxed);
66 if (val_.compare_exchange_weak(val, val - 1, std::memory_order_relaxed))
71 bool Empty() { return val_.load(std::memory_order_relaxed) == 0; }
  /external/vixl/test/
test-invalset.cc 43 Obj(KeyType key, ValType val) : key_(key), val_(val) {}
45 ValType val_; member in class:vixl::Obj
48 return (key_ == other.key_) && (val_ == other.val_);
51 return (key_ < other.key_) || ((key_ == other.key_) && (val_ < other.val_));
55 ((key_ == other.key_) && (val_ <= other.val_));
58 return (key_ > other.key_) || ((key_ == other.key_) && (val_ > other.val_));
    [all...]
  /system/update_engine/update_manager/
generic_variables_unittest.cc 78 : copied_(true), val_(other.val_ * 2) {}
84 int val_ = 0; member in class:chromeos_update_manager::CopyConstructorTestClass
117 obj->val_++; // So we can check that the function was called.
127 test_obj.val_ = 5;
135 EXPECT_EQ(6, test_obj.val_); // Check that the function was called.
138 EXPECT_EQ(12, copy->val_); // Check that copying occurred once.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.h 113 #define val_(o) ((o)->value_) macro
114 #define num_(o) (val_(o).n)
154 #define gcvalue(o) check_exp(iscollectable(o), val_(o).gc)
155 #define pvalue(o) check_exp(ttislightuserdata(o), val_(o).p)
156 #define rawtsvalue(o) check_exp(ttisstring(o), &val_(o).gc->ts)
158 #define rawuvalue(o) check_exp(ttisuserdata(o), &val_(o).gc->u)
160 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl)
161 #define clLvalue(o) check_exp(ttisLclosure(o), &val_(o).gc->cl.l)
162 #define clCvalue(o) check_exp(ttisCclosure(o), &val_(o).gc->cl.c)
163 #define fvalue(o) check_exp(ttislcf(o), val_(o).f
327 #undef val_ macro
328 #define val_ macro
    [all...]
  /external/skia/third_party/lua/src/
lobject.h 113 #define val_(o) ((o)->value_) macro
114 #define num_(o) (val_(o).n)
154 #define gcvalue(o) check_exp(iscollectable(o), val_(o).gc)
155 #define pvalue(o) check_exp(ttislightuserdata(o), val_(o).p)
156 #define rawtsvalue(o) check_exp(ttisstring(o), &val_(o).gc->ts)
158 #define rawuvalue(o) check_exp(ttisuserdata(o), &val_(o).gc->u)
160 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl)
161 #define clLvalue(o) check_exp(ttisLclosure(o), &val_(o).gc->cl.l)
162 #define clCvalue(o) check_exp(ttisCclosure(o), &val_(o).gc->cl.c)
163 #define fvalue(o) check_exp(ttislcf(o), val_(o).f
327 #undef val_ macro
328 #define val_ macro
    [all...]
  /external/syslinux/com32/lua/src/
lobject.h 113 #define val_(o) ((o)->value_) macro
114 #define num_(o) (val_(o).n)
154 #define gcvalue(o) check_exp(iscollectable(o), val_(o).gc)
155 #define pvalue(o) check_exp(ttislightuserdata(o), val_(o).p)
156 #define rawtsvalue(o) check_exp(ttisstring(o), &val_(o).gc->ts)
158 #define rawuvalue(o) check_exp(ttisuserdata(o), &val_(o).gc->u)
160 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl)
161 #define clLvalue(o) check_exp(ttisLclosure(o), &val_(o).gc->cl.l)
162 #define clCvalue(o) check_exp(ttisCclosure(o), &val_(o).gc->cl.c)
163 #define fvalue(o) check_exp(ttislcf(o), val_(o).f
327 #undef val_ macro
328 #define val_ macro
    [all...]
  /external/webp/src/utils/
bit_reader_utils.c 148 br->val_ = 0;
152 if (length > sizeof(br->val_)) {
153 length = sizeof(br->val_);
158 br->val_ = value;
182 br->val_ >>= 8;
183 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (VP8L_LBITS - 8);
195 if (br->pos_ + sizeof(br->val_) < br->len_) {
196 br->val_ >>= VP8L_WBITS;
198 br->val_ |= (vp8l_val_t)HToLE32(WebPMemToUint32(br->buf_ + br->pos_)) <<
  /external/squashfs-tools/squashfs-tools/
unsquashfs_xattr.c 31 #define lsetxattr(path_, name_, val_, sz_, flags_) \
32 setxattr(path_, name_, val_, sz_, 0, flags_ | XATTR_NOFOLLOW)
  /art/runtime/arch/
memcmp16_test.cc 22 explicit RandGen(uint32_t seed) : val_(seed) {}
25 val_ = val_ * 48271 % 2147483647 + 13;
26 return val_;
29 uint32_t val_; member in class:RandGen
  /external/protobuf/src/google/protobuf/
map.h 107 delete val_.string_value_;
123 val_.int64_value_ = value;
127 val_.uint64_value_ = value;
131 val_.int32_value_ = value;
135 val_.uint32_value_ = value;
139 val_.bool_value_ = value;
143 *val_.string_value_ = val;
149 return val_.int64_value_;
154 return val_.uint64_value_;
159 return val_.int32_value_
279 } val_; member in class:google::protobuf::MapKey
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map.h 107 delete val_.string_value_;
123 val_.int64_value_ = value;
127 val_.uint64_value_ = value;
131 val_.int32_value_ = value;
135 val_.uint32_value_ = value;
139 val_.bool_value_ = value;
143 *val_.string_value_ = val;
149 return val_.int64_value_;
154 return val_.uint64_value_;
159 return val_.int32_value_
279 } val_; member in class:google::protobuf::MapKey
    [all...]
  /external/libchrome/base/threading/
thread_local_unittest.cc 34 val_(NULL) {
38 void set_value(char* val) { val_ = val; }
42 tlp_->Set(val_);
47 char* val_; member in class:base::__anon22905::SetThreadLocal
simple_thread_unittest.cc 17 SetIntRunner(int* ptr, int val) : ptr_(ptr), val_(val) { }
20 void Run() override { *ptr_ = val_; }
24 int val_; member in class:base::__anon22897::SetIntRunner
  /frameworks/base/tools/aapt2/java/
ClassDefinition.h 64 : name_(name.to_string()), val_(val) {}
77 *out << prefix << "public static " << (final ? "final " : "") << "int " << name_ << "=" << val_ variable
85 T val_; member in class:aapt::PrimitiveMember
93 : name_(name.to_string()), val_(val) {}
108 << name_ << "=\"" << val_ << "\";"; variable
115 std::string val_; member in class:aapt::PrimitiveMember
  /art/runtime/gc/accounting/
space_bitmap_test.cc 145 explicit RandGen(uint32_t seed) : val_(seed) {}
148 val_ = val_ * 48271 % 2147483647;
149 return val_;
152 uint32_t val_; member in class:art::gc::accounting::RandGen

Completed in 1140 milliseconds

1 2