Searched refs:__bytes (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/ |
H A D | unsynchronized_pool_resource.h | 41 void* __do_allocate(memory_resource* __upstream, size_t __bytes, size_t __align); 42 void __do_deallocate(memory_resource* __upstream, void* __p, size_t __bytes, size_t __align); 57 int __pool_index(size_t __bytes, size_t __align) const; 84 void* do_allocate(size_t __bytes, size_t __align) override; // key function 86 void do_deallocate(void* __p, size_t __bytes, size_t __align) override;
|
H A D | synchronized_pool_resource.h | 63 _LIBCPP_HIDE_FROM_ABI_VIRTUAL void* do_allocate(size_t __bytes, size_t __align) override { in do_allocate() argument 67 return __unsync_.allocate(__bytes, __align); in do_allocate() 70 …_LIBCPP_HIDE_FROM_ABI_VIRTUAL void do_deallocate(void* __p, size_t __bytes, size_t __align) overri… in do_deallocate() argument 74 return __unsync_.deallocate(__p, __bytes, __align); in do_deallocate()
|
H A D | memory_resource.h | 35 _LIBCPP_HIDE_FROM_ABI void* allocate(size_t __bytes, size_t __align = __max_align) { 36 return do_allocate(__bytes, __align); 40 deallocate(void* __p, size_t __bytes, size_t __align = __max_align) { 41 do_deallocate(__p, __bytes, __align);
|
H A D | monotonic_buffer_resource.h | 102 void* do_allocate(size_t __bytes, size_t __alignment) override; // key function
|
/freebsd/contrib/llvm-project/libcxx/include/experimental/ |
H A D | memory_resource |
|
/freebsd/usr.sbin/makefs/ |
H A D | cd9660.h | 92 #define CD9660_BLOCKS(__sector_size, __bytes) \ argument 93 howmany((__bytes), (__sector_size))
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | formatter_output.h | 175 std::size_t __bytes = std::countl_one(static_cast<unsigned char>(__value.__data[0])); in requires() local 176 if (__bytes == 0) in requires() 181 …std::addressof(__value.__data[0]), std::addressof(__value.__data[0]) + __bytes, std::move(__out_it… in requires()
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | shared_ptr.h | 914 size_t __bytes = __elements == 0 ? sizeof(__unbounded_array_control_block) 917 return (__bytes + __align - 1) & ~(__align - 1);
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | core.h | 2386 #define RTW89_DEF_FBTC_MREG(__type, __bytes, __offset) \ 2387 { .type = cpu_to_le16(__type), .bytes = cpu_to_le16(__bytes), \ 2062 RTW89_DEF_FBTC_MREG(__type,__bytes,__offset) global() argument
|