Searched refs:chunk (Results 51 - 75 of 80) sorted by relevance

1234

/haiku-buildtools/gcc/libsanitizer/asan/
H A Dasan_allocator.h37 explicit AsanChunkView(AsanChunk *chunk) : chunk_(chunk) {} argument
39 // or quarantined chunk.
H A Dasan_allocator2.cc41 // We are about to unmap a chunk of user memory.
66 // Every chunk of memory allocated by this allocator can be in one of 3 states:
67 // CHUNK_AVAILABLE: the chunk is in the free list and ready to be allocated.
68 // CHUNK_ALLOCATED: the chunk is allocated and not yet freed.
69 // CHUNK_QUARANTINE: the chunk was freed and put into quarantine zone.
105 // The memory chunk allocated from the underlying allocator looks like this:
230 // contents of deallocated chunk, confusing GetAsanChunk lookup.
314 // chunk. This is possible if flags()->poison_heap was disabled for some
409 // Expects the chunk to already be marked as quarantined by using
460 // Must mark the chunk a
696 GetUserBegin(uptr chunk) argument
703 LsanMetadata(uptr chunk) argument
[all...]
/haiku-buildtools/gcc/gcc/
H A Dpretty-print.c287 unsigned int curarg = 0, chunk = 0, argno; local
292 /* Allocate a new chunk structure. */
368 /* Handled in phase 2. Terminate the plain chunk here. */
370 gcc_assert (chunk < PP_NL_ARGMAX * 2);
371 args[chunk++] = XOBFINISH (&buffer->chunk_obstack, const char *);
394 formatters[argno] = &args[chunk];
449 gcc_assert (chunk < PP_NL_ARGMAX * 2);
450 args[chunk++] = XOBFINISH (&buffer->chunk_obstack, const char *);
454 gcc_assert (chunk < PP_NL_ARGMAX * 2);
455 args[chunk
644 unsigned int chunk; local
[all...]
H A Ddbxout.c840 char *chunk;
848 chunk = str = XOBFINISH (&stabstr_ob, char *);
855 chunklen = strlen (chunk);
856 fwrite (chunk, 1, chunklen, asm_out_file);
860 chunk += chunklen + 1;
837 char *chunk; local
/haiku-buildtools/binutils/bfd/
H A Dvms-lib.c318 /* Read the key, chunk by chunk. */
960 file_ptr chunk; local
1086 chunk = vec->rec_rem;
1088 chunk = nbytes;
1094 if (!(buf == NULL && chunk == vec->rec_rem))
1095 chunk = vms_lib_dcx (vec, buf, chunk);
1102 memcpy (buf, vec->pattern + vec->rec_pos, chunk);
1105 chunk
[all...]
H A Delf32-xtensa.c512 overhead (2 extra literals) for each chunk, the chunk size is kept
515 each chunk, and that seems like a nice round number. */
1462 int chunk;
1466 for (chunk = count / PLT_ENTRIES_PER_CHUNK; chunk > 0; chunk--)
1473 if (elf_xtensa_get_plt_section (info, chunk))
1480 sprintf (sname, ".plt.%u", chunk);
1487 sprintf (sname, ".got.plt.%u", chunk);
1458 int chunk; local
1613 int plt_entries, plt_chunks, chunk; local
2318 int chunk; local
3291 int chunk, plt_chunks, plt_entries; local
10128 int reloc_index, chunk; local
10822 elf_xtensa_get_plt_section(struct bfd_link_info *info, int chunk) argument
10837 elf_xtensa_get_gotplt_section(struct bfd_link_info *info, int chunk) argument
11230 int chunk = 0; local
[all...]
/haiku-buildtools/binutils/gold/
H A DMakefile.am322 # we change the chunk size for --build-id=tree, so ld4 should be
348 ld1_LDFLAGS += -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12345 -Wl,--build-id-min-file-size-for-treehash=0
349 ld2_LDFLAGS += -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12345 -Wl,--build-id-min-file-size-for-treehash=0
350 ld3_LDFLAGS += -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12345 -Wl,--build-id-min-file-size-for-treehash=0
351 ld4_LDFLAGS += -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12346 -Wl,--build-id-min-file-size-for-treehash=0
H A DMakefile.in653 @GCC_TRUE@@NATIVE_LINKER_TRUE@ -Wl,--build-id-chunk-size-for-treehash=12345 \
661 @GCC_TRUE@@NATIVE_LINKER_TRUE@ -Wl,--build-id-chunk-size-for-treehash=12345 \
680 @GCC_TRUE@@NATIVE_LINKER_TRUE@ -Wl,--build-id-chunk-size-for-treehash=12345 \
688 @GCC_TRUE@@NATIVE_LINKER_TRUE@ -Wl,--build-id-chunk-size-for-treehash=12346 \
/haiku-buildtools/legacy/binutils/bfd/
H A Delf32-xtensa.c469 overhead (2 extra literals) for each chunk, the chunk size is kept
472 each chunk, and that seems like a nice round number. */
1132 int chunk;
1136 for (chunk = count / PLT_ENTRIES_PER_CHUNK; chunk > 0; chunk--)
1143 if (elf_xtensa_get_plt_section (dynobj, chunk))
1150 sprintf (sname, ".plt.%u", chunk);
1158 sprintf (sname, ".got.plt.%u", chunk);
1128 int chunk; local
1278 int plt_entries, plt_chunks, chunk; local
1947 int chunk; local
2542 int chunk, plt_chunks, plt_entries; local
8609 int reloc_index, chunk; local
9310 elf_xtensa_get_plt_section(bfd *dynobj, int chunk) argument
9323 elf_xtensa_get_gotplt_section(bfd *dynobj, int chunk) argument
9637 int chunk = 0; local
[all...]
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_allocator.h290 typedef void (*ForEachChunkCallback)(uptr chunk, void *arg);
453 for (uptr chunk = region_beg;
454 chunk < region_beg + region->allocated_user;
455 chunk += chunk_size) {
456 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
457 callback(chunk, arg);
502 static uptr GetChunkIdx(uptr chunk, uptr size) { argument
503 uptr offset = chunk % kRegionSize;
807 for (uptr chunk
[all...]
H A Dsanitizer_common_interceptors.inc4550 if (obstack->chunk)
4551 COMMON_INTERCEPTOR_INITIALIZE_RANGE(obstack->chunk,
4552 sizeof(*obstack->chunk));
4578 if (obstack->chunk)
4580 obstack->chunk, obstack->next_free - (char *)obstack->chunk);
H A Dsanitizer_platform_limits_posix.h784 struct __sanitizer__obstack_chunk *chunk; member in struct:__sanitizer_obstack
H A Dsanitizer_platform_limits_posix.cc1192 CHECK_SIZE_AND_OFFSET(obstack, chunk);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/
H A Dpr57878.C216 void CollectChunk(const DL::ChunkInfo& chunk, const int& location);
224 void FDB::CollectChunk(const DL::ChunkInfo& chunk, const int& location) { argument
/haiku-buildtools/legacy/gcc/gcc/
H A Dtree.c309 /* Let particular systems override the size of a chunk. */
4824 struct _obstack_chunk *chunk = o->chunk;
4826 n_alloc += o->next_free - chunk->contents;
4827 chunk = chunk->prev;
4829 for (; chunk; chunk = chunk->prev, ++n_chunks)
4830 n_alloc += chunk
4795 struct _obstack_chunk *chunk = o->chunk; local
4814 struct _obstack_chunk *chunk = o->chunk; local
[all...]
/haiku-buildtools/gcc/gmp/mpn/x86/
H A Dcopyi.asm47 C K62 - We used to have a big chunk of code doing an MMX copy at 0.56 c/l if
/haiku-buildtools/legacy/gcc/gcc/cp/
H A Dspew.c209 register struct _obstack_chunk* lp; /* below addr of any objects in this chunk */
210 register struct _obstack_chunk* plp; /* point to previous chunk if any */
212 lp = (h)->chunk;
214 the beginning of the chunk but might be an empty object exactly
215 at the end of an adjacent chunk. */
277 previous chunk, assume it was and copy it to the current obstack. */
/haiku-buildtools/gcc/gmp/mpn/x86/k7/
H A Dsqr_basecase.asm322 C chunk each outer loop.
339 dnl Because the last chunk of code is generated differently, a label placed
/haiku-buildtools/gcc/gmp/mpn/x86/p6/
H A Dsqr_basecase.asm355 C chunk each outer loop.
457 C ecx/ebx reversed on each chunk
/haiku-buildtools/gcc/zlib/contrib/delphi/
H A DZLib.pas79 indicator when you are writing a large chunk of data to the compression
114 large chunk of data from the decompression stream in a single call.}
/haiku-buildtools/gcc/libstdc++-v3/doc/
H A DMakefile.am470 XSL_HTML_STYLE = $(XSL_STYLE_DIR)/xhtml/chunk.xsl
472 XSL_EPUB_STYLE = $(XSL_STYLE_DIR)/epub3/chunk.xsl
H A DMakefile.in557 XSL_HTML_STYLE = $(XSL_STYLE_DIR)/xhtml/chunk.xsl
559 XSL_EPUB_STYLE = $(XSL_STYLE_DIR)/epub3/chunk.xsl
/haiku-buildtools/binutils/zlib/contrib/delphi/
H A DZLib.pas79 indicator when you are writing a large chunk of data to the compression
114 large chunk of data from the decompression stream in a single call.}
/haiku-buildtools/gcc/gcc/cp/
H A Dmangle.c1560 unsigned HOST_WIDE_INT chunk; local
1569 chunk = 1000000000;
1576 chunk *= chunk;
1580 base = build_int_cstu (type, chunk);
/haiku-buildtools/gcc/gmp/mpn/x86/k6/
H A Dsqr_basecase.asm354 C chunk each outer loop.
483 C ecx/esi swapped on each chunk

Completed in 249 milliseconds

1234