Home
last modified time | relevance | path

Searched refs:new_allocator (Results 1 – 25 of 48) sorted by relevance

12

/external/clang/test/CodeGenCXX/
Dthunk-use-after-free.cpp5 template < typename _Tp > struct new_allocator struct
9 typedef new_allocator other; argument
12 template < typename _Tp > struct allocator:new_allocator < _Tp > {
Ddebug-info-use-after-free.cpp92 template < typename _Tp > struct new_allocator struct
96 typedef new_allocator other; argument
99 template < typename _Tp > struct allocator:new_allocator < _Tp > {
136 template < typename > class new_allocator;
139 template < typename _Tp > class allocator:__gnu_cxx::new_allocator < _Tp > {
/external/llvm-project/clang/test/CodeGenCXX/
Dthunk-use-after-free.cpp5 template < typename _Tp > struct new_allocator struct
9 typedef new_allocator other; argument
12 template < typename _Tp > struct allocator:new_allocator < _Tp > {
Ddebug-info-use-after-free.cpp94 template < typename _Tp > struct new_allocator struct
98 typedef new_allocator other; argument
101 template < typename _Tp > struct allocator:new_allocator < _Tp > {
138 template < typename > class new_allocator;
141 template < typename _Tp > class allocator:__gnu_cxx::new_allocator < _Tp > {
/external/python/cffi/testing/cffi1/
Dtest_ffi_obj.py339 alloc1 = ffi.new_allocator()
340 alloc2 = ffi.new_allocator(should_clear_after_alloc=False)
366 alloc1 = ffi.new_allocator(myalloc, myfree)
367 alloc2 = ffi.new_allocator(alloc=myalloc, free=myfree,
397 alloc1 = ffi.new_allocator(myalloc) # no 'free'
406 py.test.raises(TypeError, ffi.new_allocator, free=lambda x: None)
410 alloc2 = ffi.new_allocator(myalloc2)
415 alloc3 = ffi.new_allocator(myalloc3)
421 alloc4 = ffi.new_allocator(myalloc4)
427 alloc5 = ffi.new_allocator(myalloc5)
/external/libabigail/tests/data/test-diff-filter/
Dtest30-pr18904-rvalueref-report1.txt320 …__gnu_cxx::new_allocator<const VarTable::Entry*>::pointer __gnu_cxx::new_allocator<const VarTable:…
321 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::construct<const VarTable::Entry…
322 …_gnu_cxx::new_allocator<const VarTable::Entry*>::deallocate(__gnu_cxx::new_allocator<const VarTabl…
323 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::destroy<const VarTable::Entry*>…
324 …[A] 'method __gnu_cxx::new_allocator<const VarTable::Entry*>::size_type __gnu_cxx::new_allocator<c…
325 [A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::new_allocator()'
326 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::new_allocator(const __gnu_cxx::
327 [A] 'method __gnu_cxx::new_allocator<const VarTable::Entry*>::~new_allocator()'
328 …gnu_cxx::new_allocator<std::_List_node<DynLib> >::pointer __gnu_cxx::new_allocator<std::_List_node…
329 …[A] 'method void __gnu_cxx::new_allocator<std::_List_node<DynLib> >::construct<DynLib, DynLib>(Dyn…
[all …]
Dtest30-pr18904-rvalueref-report0.txt320 …__gnu_cxx::new_allocator<const VarTable::Entry*>::pointer __gnu_cxx::new_allocator<const VarTable:…
321 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::construct<const VarTable::Entry…
322 …_gnu_cxx::new_allocator<const VarTable::Entry*>::deallocate(__gnu_cxx::new_allocator<const VarTabl…
323 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::destroy<const VarTable::Entry*>…
324 …[A] 'method __gnu_cxx::new_allocator<const VarTable::Entry*>::size_type __gnu_cxx::new_allocator<c…
325 [A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::new_allocator()'
326 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::new_allocator(const __gnu_cxx::
327 [A] 'method __gnu_cxx::new_allocator<const VarTable::Entry*>::~new_allocator()'
328 …gnu_cxx::new_allocator<std::_List_node<DynLib> >::pointer __gnu_cxx::new_allocator<std::_List_node…
329 …[A] 'method void __gnu_cxx::new_allocator<std::_List_node<DynLib> >::construct<DynLib, DynLib>(Dyn…
[all …]
Dtest30-pr18904-rvalueref-report2.txt320 …__gnu_cxx::new_allocator<const VarTable::Entry*>::pointer __gnu_cxx::new_allocator<const VarTable:…
321 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::construct<const VarTable::Entry…
322 …_gnu_cxx::new_allocator<const VarTable::Entry*>::deallocate(__gnu_cxx::new_allocator<const VarTabl…
323 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::destroy<const VarTable::Entry*>…
324 …[A] 'method __gnu_cxx::new_allocator<const VarTable::Entry*>::size_type __gnu_cxx::new_allocator<c…
325 [A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::new_allocator()'
326 …[A] 'method void __gnu_cxx::new_allocator<const VarTable::Entry*>::new_allocator(const __gnu_cxx::
327 [A] 'method __gnu_cxx::new_allocator<const VarTable::Entry*>::~new_allocator()'
328 …gnu_cxx::new_allocator<std::_List_node<DynLib> >::pointer __gnu_cxx::new_allocator<std::_List_node…
329 …[A] 'method void __gnu_cxx::new_allocator<std::_List_node<DynLib> >::construct<DynLib, DynLib>(Dyn…
[all …]
/external/python/cffi/testing/cffi0/
Dtest_ffi_backend.py69 alloc1 = ffi.new_allocator(myalloc, myfree)
70 alloc2 = ffi.new_allocator(alloc=myalloc, free=myfree,
99 alloc1 = ffi.new_allocator(myalloc) # no 'free'
108 py.test.raises(TypeError, ffi.new_allocator, free=lambda x: None)
112 alloc2 = ffi.new_allocator(myalloc2)
117 alloc3 = ffi.new_allocator(myalloc3)
123 alloc4 = ffi.new_allocator(myalloc4)
129 alloc5 = ffi.new_allocator(myalloc5)
/external/libchrome/base/metrics/
Dpersistent_histogram_allocator_unittest.cc252 std::unique_ptr<GlobalHistogramAllocator> new_allocator = in TEST_F() local
261 const_cast<void*>(new_allocator->memory_allocator()->data()), in TEST_F()
262 new_allocator->memory_allocator()->size(), 0, 0, "", false)); in TEST_F()
308 const_cast<void*>(new_allocator->memory_allocator()->data()), in TEST_F()
309 new_allocator->memory_allocator()->size(), 0, 0, "", false)); in TEST_F()
/external/libabigail/tests/data/test-annotate/
Dtest20-pr19025-libvtkParallelCore-6.1.so.abi3402 <!-- __gnu_cxx::new_allocator<char>* -->
3404 <!-- __gnu_cxx::new_allocator<long long int>* -->
3406 <!-- __gnu_cxx::new_allocator<long long int>* const -->
3408 <!-- __gnu_cxx::new_allocator<unsigned char>* -->
3410 <!-- __gnu_cxx::new_allocator<unsigned char>* const -->
3430 <!-- const __gnu_cxx::new_allocator<char> -->
3432 <!-- const __gnu_cxx::new_allocator<char>& -->
3434 <!-- const __gnu_cxx::new_allocator<char>* -->
3436 <!-- const __gnu_cxx::new_allocator<long long int> -->
3438 <!-- const __gnu_cxx::new_allocator<long long int>& -->
[all …]
Dlibtest24-drop-fns.so.abi272 <!-- __gnu_cxx::new_allocator<char>* -->
278 <!-- const __gnu_cxx::new_allocator<char> -->
280 <!-- const __gnu_cxx::new_allocator<char>& -->
282 <!-- const __gnu_cxx::new_allocator<char>* -->
478 <!-- class __gnu_cxx::new_allocator<char> -->
537 <!-- class __gnu_cxx::new_allocator<char> -->
538 …<class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/…
540 <!-- typedef std::size_t __gnu_cxx::new_allocator<char>::size_type -->
541 …size_type' type-id='type-id-118' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='61' c…
544 <!-- typedef char* __gnu_cxx::new_allocator<char>::pointer -->
[all …]
Dlibtest24-drop-fns-2.so.abi272 <!-- __gnu_cxx::new_allocator<char>* -->
278 <!-- const __gnu_cxx::new_allocator<char> -->
280 <!-- const __gnu_cxx::new_allocator<char>& -->
282 <!-- const __gnu_cxx::new_allocator<char>* -->
478 <!-- class __gnu_cxx::new_allocator<char> -->
537 <!-- class __gnu_cxx::new_allocator<char> -->
538 …<class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/…
540 <!-- typedef std::size_t __gnu_cxx::new_allocator<char>::size_type -->
541 …size_type' type-id='type-id-118' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='61' c…
544 <!-- typedef char* __gnu_cxx::new_allocator<char>::pointer -->
[all …]
/external/llvm/test/Transforms/GlobalOpt/
D2007-06-04-PackedStruct.ll6 %"struct.__gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<const int, int> > >" = type <{ i8 }>
8 … >::_Rb_tree_impl<std::less<int>,false>" = type { %"struct.__gnu_cxx::new_allocator<std::_Rb_tree_…
/external/llvm-project/llvm/test/Transforms/GlobalOpt/
D2007-06-04-PackedStruct.ll6 %"struct.__gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<const int, int> > >" = type <{ i8 }>
8 … >::_Rb_tree_impl<std::less<int>,false>" = type { %"struct.__gnu_cxx::new_allocator<std::_Rb_tree_…
/external/libabigail/tests/data/test-abidiff/
Dtest-PR18791-v1.so.abi2222new_allocator&lt;std::_List_node&lt;sigc::internal::trackable_callback&gt; &gt;' size-in-bits='8' …
2224 …ame='size_type' type-id='type-id-18' filepath='/usr/include/c++/5/ext/new_allocator.h' line='61' c…
2227 … name='pointer' type-id='type-id-45' filepath='/usr/include/c++/5/ext/new_allocator.h' line='63' c…
2230 …const_pointer' type-id='type-id-182' filepath='/usr/include/c++/5/ext/new_allocator.h' line='64' c…
2233 …me='reference' type-id='type-id-184' filepath='/usr/include/c++/5/ext/new_allocator.h' line='65' c…
2236 …nst_reference' type-id='type-id-186' filepath='/usr/include/c++/5/ext/new_allocator.h' line='66' c…
2239new_allocator' mangled-name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackabl…
2245new_allocator' mangled-name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackabl…
2252new_allocator' mangled-name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackabl…
2259 …8trackable_callbackEEE7addressERS5_' filepath='/usr/include/c++/5/ext/new_allocator.h' line='89' c…
[all …]
Dtest-PR18791-v0.so.abi2149new_allocator&lt;std::_List_node&lt;sigc::internal::trackable_callback&gt; &gt;' size-in-bits='8' …
2151 …e='size_type' type-id='type-id-22' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='61' c…
2154 …ame='pointer' type-id='type-id-45' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='63' c…
2157 …nst_pointer' type-id='type-id-192' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='64' c…
2160 …='reference' type-id='type-id-194' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='65' c…
2163 …t_reference' type-id='type-id-196' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='66' c…
2166 …<function-decl name='new_allocator' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='79' …
2172 …<function-decl name='new_allocator' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='81' …
2179 …<function-decl name='~new_allocator' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='86'…
2186 …rackable_callbackEEE7addressERS5_' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='89' c…
[all …]
/external/llvm-project/llvm/test/Transforms/Attributor/reduced/
Dregister_benchmark_test.ll82 %"class.__gnu_cxx::new_allocator.71.257.350.443.536.629.815.908.1001.1466.1745.2024.2303.2861.3419.…
84 %"class.__gnu_cxx::new_allocator.1.73.259.352.445.538.631.817.910.1003.1468.1747.2026.2305.2863.342…
88 %"class.__gnu_cxx::new_allocator.9.77.263.356.449.542.635.821.914.1007.1472.1751.2030.2309.2867.342…
90 %"class.__gnu_cxx::new_allocator.30.79.265.358.451.544.637.823.916.1009.1474.1753.2032.2311.2869.34…
390 …_cxx13new_allocatorIN12_GLOBAL__N_18TestCaseEEC2Ev(%"class.__gnu_cxx::new_allocator.71.257.350.443…
468 …x::new_allocator.1.73.259.352.445.538.631.817.910.1003.1468.1747.2026.2305.2863.3421.3514.3607.370…
474 declare dso_local void @_ZN9__gnu_cxx13new_allocatorIcED2Ev(%"class.__gnu_cxx::new_allocator.1.73.2…
564 …d @_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcm(%"class.__gnu_cxx::new_allocator.1.73.259.352.4…
576 …L__N_18TestCaseEE9constructIS2_JRKS2_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.71.257.350.443…
636 …ew_allocatorIN12_GLOBAL__N_18TestCaseEE8max_sizeEv(%"class.__gnu_cxx::new_allocator.71.257.350.443…
[all …]
/external/python/pyopenssl/src/OpenSSL/
D_util.py18 no_zero_allocator = ffi.new_allocator(should_clear_after_alloc=False)
/external/llvm/test/Transforms/SimplifyCFG/
Ddbginfo.ll18 %"struct.__gnu_cxx::new_allocator<Scene*>" = type <{ i8 }>
19 %"struct.__gnu_cxx::new_allocator<std::_List_node<Scene*> >" = type <{ i8 }>
/external/llvm-project/llvm/test/Transforms/SimplifyCFG/
Ddbginfo.ll18 %"struct.__gnu_cxx::new_allocator<Scene*>" = type <{ i8 }>
19 %"struct.__gnu_cxx::new_allocator<std::_List_node<Scene*> >" = type <{ i8 }>
/external/libabigail/tests/data/test-read-dwarf/
Dtest11-pr18828.so.abi11543 …<class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/…
11545 …'size_type' type-id='type-id-1381' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='61' c…
11548 …ame='pointer' type-id='type-id-72' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='63' c…
11551 …onst_pointer' type-id='type-id-85' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='64' c…
11554 …='reference' type-id='type-id-224' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='65' c…
11557 …t_reference' type-id='type-id-380' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='66' c…
11560 …<function-decl name='new_allocator' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='79' …
11566 …<function-decl name='new_allocator' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='81' …
11573 …<function-decl name='~new_allocator' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='86'…
11634new_allocator&lt;mongo::logger::Appender&lt;mongo::logger::MessageEventEphemeral&gt;*&gt;' size-in…
[all …]
/external/llvm-project/llvm/test/CodeGen/Thumb2/
D2009-10-15-ITBlockBranch.ll6 %"struct.__gnu_cxx::new_allocator<char>" = type <{ i8 }>
Dv8_IT_4.ll7 %"struct.__gnu_cxx::new_allocator<char>" = type <{ i8 }>
/external/llvm/test/CodeGen/Thumb2/
D2009-10-15-ITBlockBranch.ll6 %"struct.__gnu_cxx::new_allocator<char>" = type <{ i8 }>

12