Searched refs:size_in_bytes (Results 1 - 25 of 50) sorted by relevance

12

/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_dlsym.h34 static void *Allocate(uptr size_in_bytes) { argument
35 void *ptr = InternalAlloc(size_in_bytes, nullptr, kWordSize);
/openbsd-current/sys/dev/pci/drm/radeon/
H A Dsi_dma.c239 u32 size_in_bytes, cur_size_in_bytes; local
245 size_in_bytes = (num_gpu_pages << RADEON_GPU_PAGE_SHIFT);
246 num_loops = DIV_ROUND_UP(size_in_bytes, 0xfffff);
258 cur_size_in_bytes = size_in_bytes;
261 size_in_bytes -= cur_size_in_bytes;
H A Dcik_sdma.c587 u32 size_in_bytes, cur_size_in_bytes; local
593 size_in_bytes = (num_gpu_pages << RADEON_GPU_PAGE_SHIFT);
594 num_loops = DIV_ROUND_UP(size_in_bytes, 0x1fffff);
606 cur_size_in_bytes = size_in_bytes;
609 size_in_bytes -= cur_size_in_bytes;
H A Dr600.c2973 u32 size_in_bytes, cur_size_in_bytes, tmp; local
2979 size_in_bytes = (num_gpu_pages << RADEON_GPU_PAGE_SHIFT);
2980 num_loops = DIV_ROUND_UP(size_in_bytes, 0x1fffff);
2995 cur_size_in_bytes = size_in_bytes;
2998 size_in_bytes -= cur_size_in_bytes;
3000 if (size_in_bytes == 0)
H A Dcik.c3654 u32 size_in_bytes, cur_size_in_bytes, control; local
3660 size_in_bytes = (num_gpu_pages << RADEON_GPU_PAGE_SHIFT);
3661 num_loops = DIV_ROUND_UP(size_in_bytes, 0x1fffff);
3673 cur_size_in_bytes = size_in_bytes;
3676 size_in_bytes -= cur_size_in_bytes;
3678 if (size_in_bytes == 0)
/openbsd-current/gnu/llvm/lldb/source/Plugins/ABI/ARC/
H A DABISysV_arc.cpp173 static inline size_t AugmentArgSize(size_t size_in_bytes) { argument
174 return llvm::alignTo(size_in_bytes, word_size);
384 uint8_t size_in_bytes, bool is_signed) {
385 switch (size_in_bytes) {
410 uint8_t size_in_bytes) {
411 switch (size_in_bytes) {
428 uint8_t size_in_bytes) {
436 if (sizeof(uint64_t) == size_in_bytes)
383 SetSizedInteger(Scalar &scalar, uint64_t raw_value, uint8_t size_in_bytes, bool is_signed) argument
409 SetSizedFloat(Scalar &scalar, uint64_t raw_value, uint8_t size_in_bytes) argument
427 ReadRawValue(const RegisterContextSP &reg_ctx, uint8_t size_in_bytes) argument
/openbsd-current/gnu/llvm/lldb/include/lldb/Target/
H A DDynamicLoader.h357 int64_t ReadUnsignedIntWithSizeInBytes(lldb::addr_t addr, int size_in_bytes);
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DDynamicLoader.cpp279 int size_in_bytes) {
282 m_process->ReadUnsignedIntegerFromMemory(addr, size_in_bytes, 0, error);
278 ReadUnsignedIntWithSizeInBytes(addr_t addr, int size_in_bytes) argument
/openbsd-current/sys/dev/pci/drm/amd/amdkfd/
H A Dkfd_topology.h83 uint64_t size_in_bytes; member in struct:kfd_mem_properties
H A Dkfd_crat.c1008 uint64_t size_in_bytes; local
1033 size_in_bytes =
1045 props->size_in_bytes += size_in_bytes;
1055 props->size_in_bytes = size_in_bytes;
/openbsd-current/gnu/gcc/gcc/
H A Dlanghooks.c431 return size_in_bytes (TREE_TYPE (exp));
H A Dtarghooks.c199 sizetype_size = size_in_bytes (sizetype);
H A Dtree-mudflap.c1222 object_size = size_in_bytes (TREE_TYPE (obj));
1285 size_in_bytes (TREE_TYPE (obj)),
H A Dipa-type-escape.c1156 if (operand_equal_p (size_in_bytes (op0type), op1, 0))
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dlanghooks.c443 return size_in_bytes (TREE_TYPE (exp));
/openbsd-current/sys/dev/pci/drm/amd/display/dc/link/protocols/
H A Dlink_dp_training.c1164 uint32_t size_in_bytes; local
1198 size_in_bytes = lt_settings->link_settings.lane_count *
1205 size_in_bytes);
1258 size_in_bytes);
1273 size_in_bytes + sizeof(dpcd_pattern.raw));
/openbsd-current/gnu/gcc/gcc/cp/
H A Dinit.c1685 size = size_in_bytes (elt_type);
1861 data_addr, size_in_bytes (sizetype));
1870 cookie_ptr, size_in_bytes (sizetype));
1873 size_in_bytes(elt_type));
2213 tree size_exp = size_in_bytes (type);
2451 size = size_in_bytes (type);
H A Dexcept.c543 return build_function_call (fn, tree_cons (NULL_TREE, size_in_bytes (type),
/openbsd-current/gnu/usr.bin/gcc/gcc/cp/
H A Dinit.c2141 sizetype_size = size_in_bytes (sizetype);
2216 size = size_in_bytes (true_type);
2269 tree class_size = size_in_bytes (true_type);
2364 alloc_node, size_in_bytes (sizetype));
2549 tree size_exp = size_in_bytes (type);
2784 size = size_in_bytes (type);
H A Dexcept.c511 return build_function_call (fn, tree_cons (NULL_TREE, size_in_bytes (type),
/openbsd-current/sys/dev/pci/drm/i915/gt/uc/
H A Dintel_guc_ct.c148 u32 *cmds, u32 size_in_bytes, u32 resv_space)
150 GEM_BUG_ON(size_in_bytes % 4);
154 ctb->size = size_in_bytes / 4;
146 guc_ct_buffer_init(struct intel_guc_ct_buffer *ctb, struct guc_ct_buffer_desc *desc, u32 *cmds, u32 size_in_bytes, u32 resv_space) argument
/openbsd-current/gnu/llvm/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp146 llvm::support::ulittle32_t to_write_size(to_write_utf16.size_in_bytes() - 2);
149 buffer->AppendData(to_write_utf16.data(), to_write_utf16.size_in_bytes());
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DSmallVector.h281 size_type size_in_bytes() const { return size() * sizeof(T); } function in class:llvm::SmallVectorTemplateCommon
/openbsd-current/gnu/gcc/gcc/config/xtensa/
H A Dxtensa.c2190 type_size = size_in_bytes (type);
/openbsd-current/gnu/usr.bin/gcc/gcc/config/stormy16/
H A Dstormy16.c1241 size_tree = round_up (size_in_bytes (type), UNITS_PER_WORD);

Completed in 524 milliseconds

12