HomeSort by relevance Sort by last modified time
    Searched full:addressof (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/specialized.addressof/
addressof.pass.cpp 12 // template <ObjectType T> T* addressof(T& r);
35 assert(std::addressof(i) == &i);
36 assert(std::addressof(d) == &d);
39 assert(std::addressof(*tp) == tp);
40 assert(std::addressof(*ctp) == tp);
49 assert(std::addressof(n) == (void*)std::addressof(i));
  /external/clang/test/CXX/expr/expr.post/expr.static.cast/
p9-0x.cpp 23 template <class _Tp> inline _Tp* addressof(_Tp& __x) { function in namespace:PR9107
28 addressof(a);
  /external/clang/test/CodeGenCXX/
builtins.cpp 13 S *addressof(bool b, S &s, S &t) { function
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
addressof.hpp 51 template<class T> T * addressof( T & v ) function in namespace:boost
77 typename detail::addressof_addp< T[N] >::type addressof( T (&t)[N] )
88 T (*addressof(T (&t)[N]))[N]
94 const T (*addressof(const T (&t)[N]))[N] function in namespace:boost
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
utility.hpp 12 #include <boost/utility/addressof.hpp>
ref.hpp 11 #include <boost/utility/addressof.hpp>
43 explicit reference_wrapper(T& t): t_(boost::addressof(t)) {}
  /external/clang/test/Analysis/
cxx11-crashes.cpp 54 template<class T> T * addressof( T & v ) { function
59 addressof(s);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_loading.py 68 # addressof gets the address where the function pointer is stored
69 a_ord = addressof(func_ord)
70 a_name = addressof(func_name)
test_arrays.py 96 sz = (c_char * 3).from_address(addressof(p))
111 sz = (c_wchar * 3).from_address(addressof(p))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_loading.py 68 # addressof gets the address where the function pointer is stored
69 a_ord = addressof(func_ord)
70 a_name = addressof(func_name)
test_arrays.py 96 sz = (c_char * 3).from_address(addressof(p))
111 sz = (c_wchar * 3).from_address(addressof(p))
  /external/clang/test/SemaCXX/
builtins.cpp 28 namespace addressof { namespace
warn-memset-bad-sizeof.cpp 38 // expected-warning {{'memset' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to remove the addressof in the argument to 'sizeof' (and multiply it by the number of elements)?}}
51 // expected-warning {{'memcpy' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to remove the addressof in the argument to 'sizeof' (and multiply it by the number of elements)?}}
53 // expected-warning {{'memcpy' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to remove the addressof in the argument to 'sizeof' (and multiply it by the number of elements)?}}
  /external/clang/test/SemaTemplate/
dependent-expr.cpp 51 template <typename T> T *addressof(T &v) { function in namespace:test4
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
class_properties.hpp 29 #include <boost/utility/addressof.hpp>
157 arrow_res_t operator->() const { return boost::addressof( base_prop::value ); }
201 arrow_res_t operator->() { return boost::addressof( base_prop::value ); }
202 const_arrow_res_t operator->() const { return boost::addressof( base_prop::value ); }
  /libcore/luni/src/test/java/libcore/io/
MemoryTest.java 35 int base_ptr = (int) runtime.addressOf(array);
76 int base_ptr = (int) runtime.addressOf(array);
114 int base_ptr = (int) runtime.addressOf(array);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
forward_list 537 __node_traits::destroy(__a, _VSTD::addressof(__p->__value_));
790 __node_traits::construct(__a, _VSTD::addressof(__h->__value_));
    [all...]
list 721 __node_alloc_traits::destroy(__na, _VSTD::addressof(__n->__value_));
    [all...]
deque     [all...]
  /external/llvm/bindings/python/llvm/
disassembler.py 12 from ctypes import addressof namespace
106 b = cast(addressof(buf) + offset, POINTER(c_ubyte))
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
move.h 42 * @brief Same as C++11 std::addressof
136 addressof(_Tp& __r) noexcept
ptr_traits.h 170 * @return @c addressof(__r)
174 { return std::addressof(__r); }
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
alloc_traits.h 143 _Base_type::construct(__a, std::addressof(*__p),
151 { _Base_type::destroy(__a, std::addressof(*__p)); }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
move.h 42 * @brief Same as C++11 std::addressof
136 addressof(_Tp& __r) noexcept
ptr_traits.h 170 * @return @c addressof(__r)
174 { return std::addressof(__r); }

Completed in 2096 milliseconds

1 2 3 4