Home
last modified time | relevance | path

Searched refs:contiguous (Results 1 – 25 of 535) sorted by relevance

12345678910>>...22

/external/tensorflow/tensorflow/compiler/aot/
Druntime.cc77 void* contiguous = nullptr; in MallocContiguousBuffers() local
79 contiguous = aligned_malloc(total, kAlign); in MallocContiguousBuffers()
83 TF_ANNOTATE_MEMORY_IS_INITIALIZED(contiguous, total); in MallocContiguousBuffers()
86 uintptr_t pos = reinterpret_cast<uintptr_t>(contiguous); in MallocContiguousBuffers()
95 return contiguous; in MallocContiguousBuffers()
98 void FreeContiguous(void* contiguous) { in FreeContiguous() argument
99 if (contiguous != nullptr) { in FreeContiguous()
100 aligned_free(contiguous); in FreeContiguous()
/external/e2fsprogs/tests/f_resize_inode/
Dexpect15 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
36 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
43 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
64 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
71 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
92 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
99 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
114 test_filesys: 11/4096 files (0.0% non-contiguous), 2107/16384 blocks
151 test_filesys: 11/4096 files (0.0% non-contiguous), 763/16384 blocks
158 test_filesys: 11/4096 files (0.0% non-contiguous), 763/16384 blocks
/external/lz4/examples/
Dstreaming_api_basics.md22 Block API (de)compresses single contiguous memory block.
23 In other words, LZ4 library find redundancy from single contiguous memory block.
24 Streaming API does same thing but (de)compress multiple adjacent contiguous memory block.
28 In these figures, original data is splitted to 4KiBytes contiguous chunks.
86 Usually, "Dependent memory" is previous adjacent contiguous memory up to 64KiBytes.
/external/e2fsprogs/tests/j_corrupt_commit_tid/
Dexpect7 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
14 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
/external/e2fsprogs/tests/j_corrupt_descr_tid/
Dexpect7 test_filesys: 12/128 files (8.3% non-contiguous), 1093/2048 blocks
14 test_filesys: 12/128 files (8.3% non-contiguous), 1093/2048 blocks
/external/e2fsprogs/tests/j_corrupt_revoke_block/
Dexpect7 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
14 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
/external/e2fsprogs/tests/j_corrupt_revoke_csum/
Dexpect7 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
14 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
/external/e2fsprogs/tests/j_corrupt_descr_csum/
Dexpect8 test_filesys: 12/128 files (8.3% non-contiguous), 1093/2048 blocks
15 test_filesys: 12/128 files (8.3% non-contiguous), 1093/2048 blocks
/external/e2fsprogs/tests/j_corrupt_commit_csum/
Dexpect8 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
15 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
/external/e2fsprogs/tests/j_corrupt_sb_csum/
Dexpect11 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
18 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
/external/e2fsprogs/tests/j_corrupt_journal_block/
Dexpect9 test_filesys: 12/128 files (8.3% non-contiguous), 1093/2048 blocks
16 test_filesys: 12/128 files (8.3% non-contiguous), 1093/2048 blocks
/external/e2fsprogs/tests/f_extent_htree/
Dexpect.111 0 non-contiguous files (0.0%)
12 1 non-contiguous directory (0.3%)
/external/e2fsprogs/tests/j_corrupt_ext_jnl_sb_csum/
Dexpect17 test_filesys: 11/128 files (0.0% non-contiguous), 66/2048 blocks
24 test_filesys: 11/128 files (0.0% non-contiguous), 66/2048 blocks
/external/e2fsprogs/tests/j_short_uncommitted_trans/
Dexpect15 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
25 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
/external/e2fsprogs/tests/j_short_uncommitted_trans_mcsum_64bit/
Dexpect15 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks
27 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks
/external/e2fsprogs/tests/t_uninit_bg_rm/
Dexpect10 test_filesys: 11/65536 files (0.0% non-contiguous), 35910/1048576 blocks
21 test_filesys: 11/655360 files (0.0% non-contiguous), 232632/10485760 blocks
/external/python/cpython2/Doc/c-api/
Dbuffer.rst99 occur (striding in a contiguous memory block).
180 | | contiguous buffer of bytes. |
198 | | contiguous (last dimension varies the |
200 | | cannot provide this kind of contiguous buffer. If |
207 |:c:macro:`PyBUF_F_CONTIGUOUS` | buffer must be respectively, C-contiguous (last |
208 |:c:macro:`PyBUF_ANY_CONTIGUOUS`| dimension varies the fastest), Fortran contiguous |
277 ``'C'``) or Fortran-style (*fortran* is ``'F'``) contiguous or either one
283 Fill the *strides* array with byte-strides of a contiguous (C-style if
291 only share a contiguous chunk of memory of "unsigned bytes" of the given
319 Create a memoryview object to a contiguous chunk of memory (in either
[all …]
/external/python/cpython3/Doc/c-api/
Dbuffer.rst99 For :term:`contiguous` arrays, the value points to the beginning of
116 ``product(shape) * itemsize``. For contiguous arrays, this is the length
117 of the underlying memory block. For non-contiguous arrays, it is the length
118 that the logical structure would have if it were copied to a contiguous
198 indicates that no de-referencing should occur (striding in a contiguous
284 .. index:: contiguous, C-contiguous, Fortran contiguous
289 C or Fortran :term:`contiguity <contiguous>` can be explicitly requested,
291 must be C-contiguous.
472 ``'C'``) or Fortran-style (*order* is ``'F'``) :term:`contiguous` or either one
478 Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style if
/external/e2fsprogs/tests/j_corrupt_sb_magic/
Dexpect32 test_filesys: 12/128 files (0.0% non-contiguous), 1092/2048 blocks
39 test_filesys: 12/128 files (8.3% non-contiguous), 1092/2048 blocks
/external/e2fsprogs/tests/j_short_revoke_trans/
Dexpect15 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
31 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
/external/e2fsprogs/tests/j_short_trans/
Dexpect15 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
37 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
/external/e2fsprogs/tests/t_replay_and_set/
Dexpect16 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
35 test_filesys: 11/16384 files (0.0% non-contiguous), 5164/65536 blocks
/external/elfutils/libdwfl/
Ddwfl_segment_report_module.c426 GElf_Off contiguous = 0; /* Visible as contiguous file from START. */ in dwfl_segment_report_module() local
557 contiguous = file_end; in dwfl_segment_report_module()
862 const GElf_Off cost = (contiguous < file_trimmed_end ? total_filesz in dwfl_segment_report_module()
863 : buffer_available >= contiguous ? 0 in dwfl_segment_report_module()
864 : contiguous - buffer_available); in dwfl_segment_report_module()
871 cost, worthwhile, whole, contiguous, in dwfl_segment_report_module()
890 if (contiguous < file_trimmed_end) in dwfl_segment_report_module()
/external/e2fsprogs/tests/j_short_revoke_trans_mcsum_64bit/
Dexpect15 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks
33 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks
/external/e2fsprogs/tests/j_short_trans_64bit/
Dexpect15 test_filesys: 11/16384 files (0.0% non-contiguous), 5196/65536 blocks
39 test_filesys: 11/16384 files (0.0% non-contiguous), 5196/65536 blocks

12345678910>>...22