Home
last modified time | relevance | path

Searched refs:kFlatbufferDataAlignmentBytes (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/
H A Dflatbuffer_loader.cpp64 kFlatbufferDataAlignmentBytes <= FLATBUFFERS_MAX_ALIGNMENT,
67 (kFlatbufferDataAlignmentBytes & ~(kFlatbufferDataAlignmentBytes - 1)) ==
68 kFlatbufferDataAlignmentBytes,
H A Dflatbuffer_loader.h27 constexpr size_t kFlatbufferDataAlignmentBytes = 16; variable
/aosp_15_r20/external/pytorch/torch/csrc/jit/python/
H A Dscript_init.cpp723 size_t size = (bytes.size() / kFlatbufferDataAlignmentBytes + 1) * in copyStr()
724 kFlatbufferDataAlignmentBytes; in copyStr()
727 static_cast<char*>(_aligned_malloc(size, kFlatbufferDataAlignmentBytes)), in copyStr()
731 ::posix_memalign(&p, kFlatbufferDataAlignmentBytes, size); in copyStr()
736 static_cast<char*>(aligned_alloc(kFlatbufferDataAlignmentBytes, size)), in copyStr()