Searched refs:chunk (Results 1 - 25 of 80) sorted by last modified time

1234

/haiku-buildtools/binutils/zlib/examples/
H A Dgun.c175 if (chunk > have) { \
176 chunk -= have; \
180 chunk--; \
181 if (chunk > have) { \
182 chunk = have = 0; \
186 have -= chunk; \
187 next += chunk; \
188 chunk = 0; \
204 unsigned chunk; /* bytes left in current chunk */ local
[all...]
/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/binutils/include/
H A Dobstack.h62 The way we do this is to take a large chunk, allocating memory from
63 low addresses. When you want to build a symbol in the chunk you just
64 add chars above the current "high water mark" in the chunk. When you
67 Mostly the chars will not burst over the highest address of the chunk,
68 because you would typically expect a chunk to be (say) 100 times as
78 When the chars burst over a chunk boundary, we allocate a larger
79 chunk, and then copy the partly formed object from the end of the old
80 chunk to the beginning of the new larger chunk. We then carry on
89 We carve out one object at a time from the current chunk
166 struct _obstack_chunk *chunk; /* address of current struct obstack_chunk */ member in struct:obstack
[all...]
/haiku-buildtools/binutils/gold/testsuite/
H A DMakefile.in6509 @GCC_TRUE@@NATIVE_LINKER_TRUE@ -Wl,--build-id-chunk-size-for-treehash=4096 \
H A DMakefile.am1563 -Wl,--build-id-chunk-size-for-treehash=4096 \
/haiku-buildtools/binutils/gold/
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 \
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
/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...]
H A Delf32-arm.c18335 int chunk; local
18356 for (chunk = 0; chunk < chunks; ++chunk)
18366 chunks - (chunk + 1) ?
18367 8 : num_words - chunk * 8,
18368 first_reg + chunk * 8);
18375 chunks - (chunk + 1) ?
18376 8 : num_words - chunk * 8,
18377 first_reg + chunk *
[all...]
/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/gcc/config/i386/
H A Di386.c23685 The size is rounded down to whole number of chunk size moved at once.
47385 unsigned int i, j, chunk; local
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_character/char/
H A D4.cc50 char* chunk = new char[str.size()]; local
51 memset(chunk, 'X', str.size());
56 while (stream >> chunk)
59 VERIFY( !str.compare(index, index_new - index, chunk) );
62 memset(chunk, 'X', str.size());
67 delete[] chunk;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_character/wchar_t/
H A D4.cc53 wchar_t* chunk = new wchar_t[str.size()]; local
54 wmemset(chunk, L'X', str.size());
59 while (stream >> chunk)
62 VERIFY( !str.compare(index, index_new - index, chunk) );
65 wmemset(chunk, L'X', str.size());
70 delete[] chunk;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/performance/27_io/
H A Dfilebuf_sgetn_unbuf.cc36 char* chunk = new char[chunksize]; local
52 if (fread(chunk, 1, chunksize, file) < chunksize)
64 if (fread_unlocked(chunk, 1, chunksize, file) < chunksize)
77 if (buf.sgetn(chunk, chunksize) < chunksize)
82 delete [] chunk;
H A Dfilebuf_sputn_unbuf.cc35 char* chunk = new char[chunksize]; local
42 fwrite(chunk, 1, chunksize, file);
53 fwrite_unlocked(chunk, 1, chunksize, file);
65 buf.sputn(chunk, chunksize);
70 delete [] chunk;
/haiku-buildtools/gcc/libgomp/
H A Diter_ull.c118 /* Initial guess is a C sized chunk positioned nthreads iterations
154 gomp_ull start, end, chunk, left; local
160 chunk = ws->chunk_size_ull;
164 if (chunk < left)
165 chunk = left;
169 if (chunk > left)
170 chunk = left;
172 end = start + chunk;
190 gomp_ull start, end, nend, chunk; local
193 chunk
[all...]
H A Diter.c116 /* Initial guess is a C sized chunk positioned nthreads iterations
152 long start, end, chunk, left; local
158 chunk = ws->chunk_size;
162 if (chunk < left)
163 chunk = left;
167 if (chunk > left)
168 chunk = left;
170 end = start + chunk;
188 long start, end, nend, chunk, incr; local
192 chunk
[all...]
/haiku-buildtools/gcc/libsanitizer/asan/
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...]
H A Dasan_debugging.cc49 AsanChunkView chunk = FindHeapChunkByAddress(addr); local
55 if (!chunk.IsValid()) {
60 descr->region_address = chunk.Beg();
61 descr->region_size = chunk.UsedSize();
84 AsanChunkView chunk = FindHeapChunkByAddress(addr); local
85 if (!chunk.IsValid()) return 0;
89 if (chunk.AllocTid() == kInvalidTid) return 0;
90 stack = chunk.GetAllocStack();
91 if (thread_id) *thread_id = chunk.AllocTid();
93 if (chunk
[all...]
H A Dasan_allocator.h37 explicit AsanChunkView(AsanChunk *chunk) : chunk_(chunk) {} argument
39 // or quarantined chunk.
H A Dasan_poisoning.cc42 u8 *chunk; member in struct:__asan::ShadowSegmentEndpoint
44 s8 value; // = *chunk;
47 chunk = (u8*)MemToShadow(address);
49 value = *chunk;
54 // Since asan's mapping is compacting, the shadow chunk may be
106 if (beg.chunk == end.chunk) {
114 *beg.chunk = Min(value, beg.offset);
116 *beg.chunk = kAsanUserPoisonedMemoryMagic;
121 CHECK(beg.chunk < en
[all...]
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/
H A Domp_workshare4.c21 int i, chunk, tid; local
28 chunk = CHUNKSIZE;
32 shared(a,b,c,chunk) \
34 schedule(static,chunk) \
H A Domp_workshare3.c22 int i, chunk, tid; local
28 chunk = CHUNKSIZE;
31 shared(a,b,c,chunk) \
33 schedule(static,chunk)
/haiku-buildtools/gcc/libsanitizer/lsan/
H A Dlsan_allocator.cc140 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p)); local
141 if (!chunk) return 0;
142 // LargeMmapAllocator considers pointers to the meta-region of a chunk to be
144 if (addr < chunk) return 0;
145 ChunkMetadata *m = Metadata(reinterpret_cast<void *>(chunk));
149 if (addr < chunk + m->requested_size)
150 return chunk;
151 if (IsSpecialCaseOfOperatorNew0(chunk, m->requested_size, addr))
152 return chunk;
156 uptr GetUserBegin(uptr chunk) { argument
160 LsanMetadata(uptr chunk) argument
190 void *chunk = allocator.GetBlockBegin(p); local
[all...]

Completed in 468 milliseconds

1234