Home
last modified time | relevance | path

Searched defs:align_to (Results 1 – 11 of 11) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/vm/
Dpkey-helpers.h180 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) argument
181 #define ALIGN_DOWN(x, align_to) ((x) & ~((align_to)-1)) argument
/external/tensorflow/tensorflow/compiler/xla/
Dcpu_function_runtime.cc52 size_t align_to(size_t n, size_t align) { in align_to() function
/external/mesa3d/src/gallium/drivers/i915/
Di915_resource_texture.c82 align_nblocksx(enum pipe_format format, unsigned width, unsigned align_to) in align_nblocksx()
88 align_nblocksy(enum pipe_format format, unsigned width, unsigned align_to) in align_nblocksy()
/external/arm-trusted-firmware/tools/sptool/
Dsptool.c42 static unsigned int align_to(unsigned int address, unsigned int boundary) in align_to() function
/external/pytorch/aten/src/ATen/native/
DNamedTensor.cpp192 Tensor align_to(const Tensor& tensor, DimnameList order, int64_t ellipsis_idx) { in align_to() function
282 Tensor align_to(const Tensor& tensor, DimnameList names) { in align_to() function
/external/linux-kselftest/tools/testing/selftests/net/
Dtcp_mmap.c123 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) argument
/external/rust/android-crates-io/crates/bindgen/codegen/
Dstruct_layout.rs34 pub(crate) fn align_to(size: usize, align: usize) -> usize { in align_to() function
/external/rust/android-crates-io/crates/vulkano/src/memory/allocator/
Dlayout.rs180 pub const fn align_to(&self, alignment: DeviceAlignment) -> Option<Self> { in align_to() method
/external/pytorch/torch/
D_tensor.py1311 def align_to(self, *names): member in Tensor
/external/rust/android-crates-io/crates/vulkano/src/buffer/
Dsubbuffer.rs523 pub fn align_to(mut self, layout: DeviceLayout) -> Subbuffer<[u8]> { in align_to() method
/external/sg3_utils/lib/
Dsg_lib.c3915 sg_memalign(uint32_t num_bytes, uint32_t align_to, uint8_t ** buff_to_free, in sg_memalign()