Searched refs:fill (Results 1 - 25 of 211) sorted by relevance

123456789

/freebsd-current/contrib/elftoolchain/libelf/
H A Delf_fill.c34 elf_fill(int fill) argument
36 LIBELF_PRIVATE(fillchar) = fill;
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/
H A Derr.end.d32 * fill buffer. This will fail because the size of the END enabling
35 * SECTION: Buffers and Buffering/fill Policy;
42 #pragma D option bufpolicy=fill
H A Dtst.fill1.d32 * Positive test for fill buffer policy.
34 * SECTION: Buffers and Buffering/fill Policy;
41 * This is a brute-force way of testing fill buffers. We assume that
43 * lo, timestamp hi, and the variable i). Because each fill buffer is
44 * per-CPU, we must fill up our buffer in one series of enablings on a
47 #pragma D option bufpolicy=fill
/freebsd-current/sys/contrib/xz-embedded/linux/include/linux/decompress/
H A Dunxz.h14 int (*fill)(void *dest, unsigned int size),
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatCommon.h52 fill(S, PadAmount);
56 fill(S, X);
58 fill(S, PadAmount - X);
62 fill(S, PadAmount);
69 void fill(llvm::raw_ostream &S, size_t Count) { function in struct:llvm::FmtAlign
/freebsd-current/sbin/growfs/tests/
H A Dlegacy_test.pl39 sub fill { subroutine
72 fill(10 * BLKS_PER_MB, 10 * BLKS_PER_MB, chr(0));
77 fill(30 * BLKS_PER_MB - $unallocated, $unallocated, chr(0))
86 fill(20 * BLKS_PER_MB, 10 * BLKS_PER_MB, chr(0xaa) . chr(0x55));
91 fill(30 * BLKS_PER_MB - $unallocated, $unallocated, chr(0))
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_flags.inc63 int, max_malloc_fill_size, 0x1000, // By default, fill only the first 4K.
71 "Value used to fill the newly allocated memory.")
73 "Value used to fill deallocated memory.")
/freebsd-current/lib/libvgl/
H A Dtext.c75 u_long fgcol, u_long bgcol, int fill, int dir)
103 else if (fill)
127 u_long fgcol, u_long bgcol, int fill, int dir)
135 str[pos], fgcol, bgcol, fill, dir);
139 str[pos], fgcol, bgcol, fill, dir);
143 str[pos], fgcol, bgcol, fill, dir);
147 str[pos], fgcol, bgcol, fill, dir);
152 str[pos], fgcol, bgcol, fill, dir);
74 VGLBitmapPutChar(VGLBitmap *Object, int x, int y, byte ch, u_long fgcol, u_long bgcol, int fill, int dir) argument
126 VGLBitmapString(VGLBitmap *Object, int x, int y, char *str, u_long fgcol, u_long bgcol, int fill, int dir) argument
/freebsd-current/sys/arm64/intel/
H A Dstratix10-svc.h51 int fill; member in struct:s10_svc_mem
H A Dstratix10-soc-fpga-mgr.c127 msg.payload_length = sc->mem.fill;
165 addr = sc->mem.vaddr + sc->mem.fill;
166 amnt = MIN(uio->uio_resid, (SVC_BUF_SIZE - sc->mem.fill));
173 sc->mem.fill += amnt;
174 if (sc->mem.fill == SVC_BUF_SIZE) {
180 sc->mem.fill = 0;
205 if (sc->mem.fill > 0) {
211 sc->mem.fill = 0;
/freebsd-current/contrib/ntp/scripts/stats/
H A Detf.S9 cat("\n", file=file2 , append=TRUE, fill=FALSE, sep="")
10 cat(file1, "\n", file=file2, append=TRUE, fill=FALSE, sep="")
11 cat("etf1 ", count, ", T ", mean, " ns, R ", slope, " ps/s, std ", std, " us\n", file=file2, append=TRUE, fill=FALSE, sep="")
/freebsd-current/sys/contrib/xz-embedded/userspace/
H A Dboottest.c30 static int fill(void *buf, unsigned int size) function
63 ret = decompress(NULL, 0, &fill, &flush, NULL, NULL, &error);
75 ret = decompress(in, 0, &fill, NULL, out, &in_used, &error);
/freebsd-current/sys/dev/speaker/
H A Dspkr.c129 static int fill; /* controls spacing of notes */ variable
177 fill = NORMAL;
205 - (whole * (FILLTIME - fill)) / (value * FILLTIME);
206 silence = whole * (FILLTIME-fill) * snum / (FILLTIME * value * sdenom);
214 if (fill != LEGATO)
292 oldfill = fill;
294 fill = LEGATO;
302 fill = oldfill;
336 oldfill = fill;
338 fill
[all...]
/freebsd-current/crypto/openssl/crypto/ec/curve448/
H A Df_generic.c23 unsigned int j = 0, fill = 0; local
34 if (fill < 8 && j < NLIMBS) {
35 buffer |= ((dword_t) red->limb[LIMBPERM(j)]) << fill;
36 fill += LIMB_PLACE_VALUE(LIMBPERM(j));
40 fill -= 8;
69 unsigned int j = 0, fill = 0; local
77 while (fill < LIMB_PLACE_VALUE(LIMBPERM(i)) && j < nbytes) {
83 buffer |= ((dword_t) sj) << fill;
84 fill += 8;
89 fill
[all...]
/freebsd-current/sys/contrib/zlib/
H A Dinftrees.c45 unsigned fill; /* index for replicating entries */ local
145 Create and fill in decoding tables. In this loop, the table being
150 fill the table with replicated entries.
196 next = *table; /* current table to fill in */
227 fill = 1U << curr;
228 min = fill; /* save offset to next table */
230 fill -= incr;
231 next[(huff >> drop) + fill] = here;
232 } while (fill != 0);
285 /* fill i
[all...]
/freebsd-current/contrib/jemalloc/src/
H A Dbitmap.c45 bitmap_init(bitmap_t *bitmap, const bitmap_info_t *binfo, bool fill) { argument
54 if (fill) {
100 bitmap_init(bitmap_t *bitmap, const bitmap_info_t *binfo, bool fill) { argument
103 if (fill) {
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/pstl_backends/
H A Dcpu_backend.h60 #include <__algorithm/pstl_backends/cpu_backends/fill.h>
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/
H A Dtst.many.d30 #pragma D option bufpolicy=fill
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/pstl_backends/cpu_backends/
H A Dfill.h12 #include <__algorithm/fill.h>
53 std::fill(__first, __last, __value);
/freebsd-current/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c249 * fill() and flush() won't be used.
252 int (*fill)(void *dest, unsigned int size),
269 if (fill == NULL && flush == NULL)
299 if (fill == NULL && flush == NULL) {
303 if (b.in_pos == b.in_size && fill != NULL) {
309 in_size = fill(in, XZ_IOBUF_SIZE);
/freebsd-current/contrib/mtree/
H A Donly.c106 fill(char *str) function
117 fill(str);
137 fill(line);
/freebsd-current/contrib/unbound/
H A Dfreebsd-sources.pl70 my $SRCS = fill("SRCS=\t", "\t", sort keys %{$sources{$target}});
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_012_pos.ksh36 # 5. On the original filesystem, fill it up to its quota.
73 # 5. On the original filesystem, fill it up to its quota.
74 cat < /dev/urandom > $origdir/fill-it-up
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Dfill.h22 // fill isn't specialized for std::memset, because the compiler already optimizes the loop to a call to std::memset.
39 fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { function
/freebsd-current/sys/kern/
H A Dkern_cpu.c785 struct cf_level *fill, *search; local
808 fill = search;
810 fill = cpufreq_dup_set(sc, search, set);
819 if (fill == NULL)
824 KASSERT(fill->rel_count < MAX_SETTINGS,
827 fill->rel_set[fill->rel_count] = *set;
828 fill->rel_count++;
831 set->freq / 100, fill->total_set.freq);
843 struct cf_level *fill, *it local
[all...]

Completed in 183 milliseconds

123456789