Home
last modified time | relevance | path

Searched full:fill (Results 1 – 25 of 2398) sorted by relevance

12345678910>>...96

/freebsd/contrib/netbsd-tests/dev/clock_subr/
H A Dt_clock_subr.c45 #define FILL(ti,ye,mo,da,wd,ho,mi,se) \ macro
53 FILL( 0,1970, 1, 1,4, 0, 0, 0), // Thu Jan 1 00:00:00 UTC 1970
54 FILL( 15638400,1970, 7, 1,3, 0, 0, 0), // Wed Jul 1 00:00:00 UTC 1970
55 FILL( 31536000,1971, 1, 1,5, 0, 0, 0), // Fri Jan 1 00:00:00 UTC 1971
56 FILL( 47174400,1971, 7, 1,4, 0, 0, 0), // Thu Jul 1 00:00:00 UTC 1971
57 FILL( 63072000,1972, 1, 1,6, 0, 0, 0), // Sat Jan 1 00:00:00 UTC 1972
58 FILL( 78796800,1972, 7, 1,6, 0, 0, 0), // Sat Jul 1 00:00:00 UTC 1972
59 FILL( 94694400,1973, 1, 1,1, 0, 0, 0), // Mon Jan 1 00:00:00 UTC 1973
60 FILL( 110332800,1973, 7, 1,0, 0, 0, 0), // Sun Jul 1 00:00:00 UTC 1973
61 FILL( 126230400,1974, 1, 1,2, 0, 0, 0), // Tue Jan 1 00:00:00 UTC 1974
[all …]
/freebsd/contrib/llvm-project/lld/docs/
H A Dpartitions.svg11 <polygon fill="white" stroke="none" points="-4,4 -4,-184 389,-184 389,4 -4,4"/>
18 <ellipse fill="lightblue" stroke="black" cx="75.5" cy="-90" rx="28.6953" ry="18"/>
23 <path fill="none" stroke="black" d="M54.4214,-143.697C57.6218,-135.696 61.492,-126.02 65.0381,-117.…
24 <polygon fill="black" stroke="black" points="68.3868,-118.207 68.8511,-107.622 61.8874,-115.607 68.…
32 <ellipse fill="lightsalmon" stroke="black" cx="176.5" cy="-90" rx="27" ry="18"/>
37 <path fill="none" stroke="black" d="M176.5,-143.697C176.5,-135.983 176.5,-126.712 176.5,-118.112"/>
38 <polygon fill="black" stroke="black" points="180,-118.104 176.5,-108.104 173,-118.104 180,-118.104"…
46 <ellipse fill="palegreen" stroke="black" cx="284.5" cy="-90" rx="27" ry="18"/>
51 <path fill="none" stroke="black" d="M312.354,-143.697C307.97,-135.403 302.636,-125.311 297.813,-116…
52 <polygon fill="black" stroke="black" points="300.801,-114.35 293.034,-107.145 294.612,-117.621 300.…
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatCommon.h23 char Fill; member
26 size_t Amount, char Fill = ' ')
27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in Adapter()
52 fill(S, PadAmount); in format()
56 fill(S, X); in format()
58 fill(S, PadAmount - X); in format()
62 fill(S, PadAmount); in format()
69 void fill(llvm::raw_ostream &S, size_t Count) { in fill() function
71 S << Fill; in fill()
H A DFormatAdapters.h32 char Fill; variable
35 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter() argument
37 Fill(Fill) {} in AlignAdapter()
41 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format()
90 size_t Amount, char Fill = ' ') {
92 Fill);
/freebsd/contrib/ntp/ntpsnmpd/
H A Dntpsnmpd-opts.def92 please fill me in...
94 please fill me in...
96 please fill me in...
98 please fill me in...
100 please fill me in...
102 please fill me in...
104 please fill me in...
106 please fill me in...
108 please fill me in...
110 please fill me in...
H A Dntpsnmpd.1ntpsnmpdmdoc122 please fill me in...
124 please fill me in...
126 please fill me in...
128 please fill me in...
130 please fill me in...
132 please fill me in...
134 please fill me in...
136 please fill me in...
138 please fill me in...
140 please fill m
[all...]
H A Dntpsnmpd.mdoc.in122 please fill me in...
124 please fill me in...
126 please fill me in...
128 please fill me in...
130 please fill me in...
132 please fill me in...
134 please fill me in...
136 please fill me in...
138 please fill me in...
140 please fill m
[all...]
H A Dntpsnmpd.man.in152 please fill me in...
157 please fill me in...
162 please fill me in...
167 please fill me in...
172 please fill me in...
177 please fill me in...
182 please fill me in...
187 please fill me in...
192 please fill me in...
197 please fill m
[all...]
H A Dntpsnmpd.1ntpsnmpdman152 please fill me in...
157 please fill me in...
162 please fill me in...
167 please fill me in...
172 please fill me in...
177 please fill me in...
182 please fill me in...
187 please fill me in...
192 please fill me in...
197 please fill m
[all...]
/freebsd/crypto/openssl/crypto/ec/curve448/
H A Df_generic.c23 unsigned int j = 0, fill = 0; in gf_serialize() local
34 if (fill < 8 && j < NLIMBS) { in gf_serialize()
35 buffer |= ((dword_t) red->limb[LIMBPERM(j)]) << fill; in gf_serialize()
36 fill += LIMB_PLACE_VALUE(LIMBPERM(j)); in gf_serialize()
40 fill -= 8; in gf_serialize()
69 unsigned int j = 0, fill = 0; in gf_deserialize() local
77 while (fill < LIMB_PLACE_VALUE(LIMBPERM(i)) && j < nbytes) { in gf_deserialize()
83 buffer |= ((dword_t) sj) << fill; in gf_deserialize()
84 fill += 8; in gf_deserialize()
89 fill -= LIMB_PLACE_VALUE(LIMBPERM(i)); in gf_deserialize()
/freebsd/sys/contrib/edk2/Include/Library/
H A DBaseMemoryLib.h2 Provides copy memory, fill memory, zero memory, and GUID functions.
50 @param Value The value with which to fill Length bytes of Buffer.
75 @param Buffer The pointer to the target buffer to fill.
76 @param Length The number of bytes in Buffer to fill.
77 @param Value The value with which to fill Length bytes of Buffer.
102 @param Buffer The pointer to the target buffer to fill.
103 @param Length The number of bytes in Buffer to fill.
104 @param Value The value with which to fill Length bytes of Buffer.
129 @param Buffer The pointer to the target buffer to fill.
130 @param Length The number of bytes in Buffer to fill.
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/
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/contrib/netbsd-tests/lib/libc/string/
H A Dt_memset.c42 static void fill(char *, size_t, char);
60 atf_tc_fail("memset(3) did not fill a static buffer"); in ATF_TC_BODY()
65 atf_tc_fail("memset(3) did not fill a static buffer"); in ATF_TC_BODY()
98 fill(ret, page, 0); in ATF_TC_BODY()
103 fill(ret, page, 'x'); in ATF_TC_BODY()
132 atf_tc_fail("memset(3) did not fill properly"); in ATF_TC_BODY()
152 atf_tc_fail("memset(3) did not fill a static buffer"); in ATF_TC_BODY()
174 atf_tc_fail("memset(3) did not fill a static buffer"); in ATF_TC_BODY()
218 fill(char *buf, size_t len, char x) in fill() function
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h91 /// Constructor for zero-fill symbols/sections. in isZeroFill()
95 /// Returns true if this is a zero-fill symbol/section.
103 assert(!ContentPtr && !Size && "Content/zero-fill already set");
108 /// Set a zero-fill length for this memory region.
110 assert(!ContentPtr && !this->Size && "Content/zero-fill already set"); in getContent()
116 assert(!isZeroFill() && "Can't get content for a zero-fill section"); in getZeroFillLength()
120 /// Returns the zero-fill length for this section.
122 assert(isZeroFill() && "Can't get zero-fill length for content section"); in setTargetAddress()
/freebsd/stand/lua/
H A Dgfx.lua.833 .It Fn fb_drawrect x0 y0 x1 y1 fill
34 Fill in a rectangle with the pixel
35 .Va fill
59 and fill with pixel
83 and fill with pixel
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_swap/
H A Dzvol_swap_002_pos.ksh38 # used to fill up swap, which can hang the system.
42 # 2. Fill //var/tmp with 80% the size of the zvol
57 log_assert "Using a zvol as swap space, fill /var/tmp to 80%."
71 log_note "Fill 80% of swap"
76 log_pass "Using a zvol as swap space, fill /var/tmp to 80%."
/freebsd/sys/dev/speaker/
H A Dspkr.c129 static int fill; /* controls spacing of notes */ variable
177 fill = NORMAL; in playinit()
205 - (whole * (FILLTIME - fill)) / (value * FILLTIME); in playtone()
206 silence = whole * (FILLTIME-fill) * snum / (FILLTIME * value * sdenom); in playtone()
214 if (fill != LEGATO) in playtone()
292 oldfill = fill; in playstring()
294 fill = LEGATO; in playstring()
302 fill = oldfill; in playstring()
336 oldfill = fill; in playstring()
338 fill = LEGATO; in playstring()
[all …]
/freebsd/sys/contrib/ncsw/Peripherals/FM/SP/
H A Dfman_sp.c105 /* fill external buffers manager pool information register*/ in fman_vsp_init()
128 /* fill pool depletion register*/ in fman_vsp_init()
151 /* fill QbbPEV */ in fman_vsp_init()
161 /* fill dma attributes register */ in fman_vsp_init()
175 /* IC parameters - fill internal context parameters register */ in fman_vsp_init()
185 /* buffer margins - fill external buffer margins register */ in fman_vsp_init()
195 /* buffer margins - fill spliodn register */ in fman_vsp_init()
/freebsd/tests/sys/cddl/zfs/tests/zvol/zvol_swap/
H A Dzvol_swap_002_pos.ksh37 # Using a zvol as swap space, fill with files until ENOSPC returned.
43 # 4. Fill swap space until ENOSPC is returned
55 log_unsupported "Fill swap will cause system hang, hide this case temporarily."
68 log_assert "Using a zvol as swap space, fill with files until ENOSPC returned."
88 log_note "Attempt to fill $TMPDIR until ENOSPC is hit"
/freebsd/crypto/libecc/src/hash/
H A Dbash.c61 u16 fill; in _bash_update() local
78 fill = (u16)(ctx->bash_block_size - left); in _bash_update()
82 if ((left > 0) && (remain_ilen >= fill)) { in _bash_update()
84 ret = local_memcpy(state + left, data_ptr, fill); EG(ret, err); in _bash_update()
85 data_ptr += fill; in _bash_update()
86 remain_ilen -= fill; in _bash_update()
H A Dsha512_core.c72 u16 fill; in sha512_core_update() local
86 fill = (u16)(SHA512_CORE_BLOCK_SIZE - left); in sha512_core_update()
90 if ((left > 0) && (remain_ilen >= fill)) { in sha512_core_update()
92 ret = local_memcpy(ctx->sha512_buffer + left, data_ptr, fill); EG(ret, err); in sha512_core_update()
94 data_ptr += fill; in sha512_core_update()
95 remain_ilen -= fill; in sha512_core_update()
124 /* Fill in our last block with zeroes */ in sha512_core_final()
/freebsd/sys/kern/
H A Dkern_cpu.c793 struct cf_level *fill, *search; in cpufreq_expand_set() local
816 fill = search; in cpufreq_expand_set()
818 fill = cpufreq_dup_set(sc, search, set); in cpufreq_expand_set()
827 if (fill == NULL) in cpufreq_expand_set()
832 KASSERT(fill->rel_count < MAX_SETTINGS, in cpufreq_expand_set()
835 fill->rel_set[fill->rel_count] = *set; in cpufreq_expand_set()
836 fill->rel_count++; in cpufreq_expand_set()
839 set->freq / 100, fill->total_set.freq); in cpufreq_expand_set()
851 struct cf_level *fill, *itr; in cpufreq_dup_set() local
862 fill = malloc(sizeof(*fill), M_TEMP, M_NOWAIT); in cpufreq_dup_set()
[all …]
/freebsd/sys/arm64/intel/
H A Dstratix10-soc-fpga-mgr.c127 msg.payload_length = sc->mem.fill; in fpga_submit()
165 addr = sc->mem.vaddr + sc->mem.fill; in fpga_write()
166 amnt = MIN(uio->uio_resid, (SVC_BUF_SIZE - sc->mem.fill)); in fpga_write()
173 sc->mem.fill += amnt; in fpga_write()
174 if (sc->mem.fill == SVC_BUF_SIZE) { in fpga_write()
180 sc->mem.fill = 0; in fpga_write()
205 if (sc->mem.fill > 0) { in fpga_close()
211 sc->mem.fill = 0; in fpga_close()
/freebsd/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/usr.sbin/fdformat/
H A Dfdformat.833 .Op Fl F Ar fill
57 .It Fl F Ar fill
59 .Ar fill
60 as the fill byte for newly formatted sectors.
62 .Ar fill

12345678910>>...96