Home
last modified time | relevance | path

Searched refs:element_size (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/libcxxabi/src/
H A Dcxa_vector.cpp149 size_t element_size, in calculate_allocation_size_or_throw() argument
199 element_count, element_size, padding_size); in __cxa_vec_new2()
228 element_count, element_size, padding_size); in __cxa_vec_new3()
262 size_t element_size, in __cxa_vec_cctor() argument
272 ++idx, src_ptr += element_size, dest_ptr += element_size ) in __cxa_vec_cctor()
309 size_t element_size, in __cxa_vec_dtor() argument
320 ptr -= element_size; in __cxa_vec_dtor()
335 size_t element_size, in __cxa_vec_cleanup() argument
344 ptr -= element_size; in __cxa_vec_cleanup()
372 size_t element_size, in __cxa_vec_delete() argument
[all …]
/llvm-project-15.0.7/libcxxabi/include/
H A Dcxxabi.h93 __cxa_vec_new(size_t element_count, size_t element_size, size_t padding_size,
97 __cxa_vec_new2(size_t element_count, size_t element_size, size_t padding_size,
102 __cxa_vec_new3(size_t element_count, size_t element_size, size_t padding_size,
107 __cxa_vec_ctor(void *array_address, size_t element_count, size_t element_size,
112 size_t element_size,
117 size_t element_size,
121 size_t element_size,
126 __cxa_vec_delete2(void *array_address, size_t element_size, size_t padding_size,
130 __cxa_vec_delete3(void *__array_address, size_t element_size,
136 size_t element_size, void (*constructor)(void *, void *),
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DVectorType.cpp176 llvm::Optional<uint64_t> element_size = element_type.GetByteSize(exe_scope); in CalculateNumChildren() local
178 if (container_size && element_size && *element_size) { in CalculateNumChildren()
179 if (*container_size % *element_size) in CalculateNumChildren()
181 return *container_size / *element_size; in CalculateNumChildren()
/llvm-project-15.0.7/lldb/examples/synthetic/
H A Dgnu_libstdcpp.py694 self.element_size = -1
704 self.element_size = self.element_type.GetByteSize()
712 if self.element_size < 512:
713 self.block_size = 512 // self.element_size
743 … return self.first_elem.CreateChildAtOffset(name, index * self.element_size, self.element_type)
754 return node.CreateChildAtOffset(name, j * self.element_size, self.element_type)
773 if self.block_size < 0 or self.element_size < 0:
801 … self.first_node_size = (last_node_last_elem - first_node_first_elem) // self.element_size
804 … self.first_node_size = (first_node_last_elem - first_node_first_elem) // self.element_size
810 count += (last_node_last_elem - last_node_first_elem) // self.element_size
H A Dlibcxx.py644 self.element_size = -1
647 (self.block_size, self.element_size))
653 self.element_size = self.element_type.GetByteSize()
659 if self.element_size < 256:
660 self.block_size = 4096 // self.element_size
/llvm-project-15.0.7/llvm/test/Analysis/AliasSet/
H A Dmemset.ll48 i32 %element_size)
/llvm-project-15.0.7/openmp/runtime/src/include/
H A Domp_lib.f90.var599 function omp_target_memcpy_rect(dst, src, element_size, num_dims, &
605 integer(c_size_t), value :: element_size
623 function omp_target_memcpy_rect_async(dst, src, element_size, &
630 integer(c_size_t), value :: element_size
H A Domp_lib.h.var693 …function omp_target_memcpy_rect(dst, src, element_size, …
699 integer(c_size_t), value :: element_size
719 …function omp_target_memcpy_rect_async(dst, src, element_size, …
727 integer(c_size_t), value :: element_size
/llvm-project-15.0.7/polly/lib/External/pet/include/
H A Dpet.h460 int element_size; member
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp1426 uint64_t element_size = GetSizeOfType({ar.ElementType}, m_index.tpi()); in CreateArrayType() local
1427 if (element_type.isNull() || element_size == 0) in CreateArrayType()
1429 uint64_t element_count = ar.Size / element_size; in CreateArrayType()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp630 uint32_t element_size; // Size of a single element, including padding member
2472 __FUNCTION__, root_el_hdr.type, root_el_hdr.element_size); in LoadAllocation()
2476 if (*alloc->element.datum_size.get() != root_el_hdr.element_size) { in LoadAllocation()
2479 root_el_hdr.element_size, *alloc->element.datum_size.get()); in LoadAllocation()
2567 elem_header.element_size = *elem.datum_size.get(); in PopulateElementHeaders()
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_ftn_entry.h1082 void *dst, void *src, size_t element_size, int num_dims, in FTN_TARGET_MEMCPY_RECT() argument
/llvm-project-15.0.7/llvm/docs/
H A DLangRef.rst24619 that are a positive integer multiple of the ``element_size`` in size.
24627 ``element_size``, then the behaviour of the intrinsic is undefined.
24643 aligned at an ``element_size`` boundary.
24691 ``src`` are treated as arrays with elements that are exactly ``element_size``
24694 integer multiple of the ``element_size`` in size.
24702 If ``len`` is not a positive integer multiple of ``element_size``, then the
24705 ``element_size`` must be a compile-time constant positive power of two no
24720 bytes wide and aligned at an ``element_size`` boundary.
24774 that are a positive integer multiple of the ``element_size`` in size.
24782 ``element_size``, then the behaviour of the intrinsic is undefined.
[all …]
/llvm-project-15.0.7/polly/lib/External/ppcg/
H A Dgpu.c204 info->size = pa->element_size; in extract_array_info()