Home
last modified time | relevance | path

Searched refs:__bytes (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dunsynchronized_pool_resource.h42 void* __do_allocate(memory_resource* __upstream, size_t __bytes, size_t __align);
43 void __do_deallocate(memory_resource* __upstream, void* __p, size_t __bytes, size_t __align);
58 int __pool_index(size_t __bytes, size_t __align) const;
85 void* do_allocate(size_t __bytes, size_t __align) override; // key function
87 void do_deallocate(void* __p, size_t __bytes, size_t __align) override;
H A Dsynchronized_pool_resource.h64 _LIBCPP_HIDE_FROM_ABI_VIRTUAL void* do_allocate(size_t __bytes, size_t __align) override { in do_allocate() argument
68 return __unsync_.allocate(__bytes, __align); in do_allocate()
71 …_LIBCPP_HIDE_FROM_ABI_VIRTUAL void do_deallocate(void* __p, size_t __bytes, size_t __align) overri… in do_deallocate() argument
75 return __unsync_.deallocate(__p, __bytes, __align); in do_deallocate()
H A Dmemory_resource.h37 allocate(size_t __bytes, size_t __align = __max_align) {
38 return do_allocate(__bytes, __align);
42 deallocate(void* __p, size_t __bytes, size_t __align = __max_align) {
43 do_deallocate(__p, __bytes, __align);
H A Dmonotonic_buffer_resource.h103 void* do_allocate(size_t __bytes, size_t __alignment) override; // key function
/freebsd-14.2/usr.sbin/makefs/
H A Dcd9660.h92 #define CD9660_BLOCKS(__sector_size, __bytes) \ argument
93 howmany((__bytes), (__sector_size))
/freebsd-14.2/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_output.h173 std::size_t __bytes = std::countl_one(static_cast<unsigned char>(__value.__data[0])); in requires() local
174 if (__bytes == 0) in requires()
179 …std::addressof(__value.__data[0]), std::addressof(__value.__data[0]) + __bytes, std::move(__out_it… in requires()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/
H A Dshared_ptr.h894 size_t __bytes = __elements == 0 ? sizeof(__unbounded_array_control_block)
897 return (__bytes + __align - 1) & ~(__align - 1);
/freebsd-14.2/sys/contrib/dev/rtw89/
H A Dcore.h2062 #define RTW89_DEF_FBTC_MREG(__type, __bytes, __offset) \ argument
2063 { .type = cpu_to_le16(__type), .bytes = cpu_to_le16(__bytes), \