Home
last modified time | relevance | path

Searched refs:samp (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dmultiboot.texi384 The fields @samp{magic}, @samp{flags} and @samp{checksum} are defined in
385 @ref{Header magic fields}, the fields @samp{header_addr},
386 @samp{load_addr}, @samp{load_end_addr}, @samp{bss_end_addr} and
387 @samp{entry_addr} are defined in @ref{Header address fields}, and the
388 fields @samp{mode_type}, @samp{width}, @samp{height} and @samp{depth} are
395 @table @samp
397 The field @samp{magic} is the magic number identifying the header,
401 The field @samp{flags} specifies features that the OS image requests or
408 usual. Naturally, all as-yet-undefined bits in the @samp{flags} word
409 must be set to zero in OS images. This way, the @samp{flags} fields
[all …]
H A Dgrub.texi388 @samp{(} and @samp{)}. The @samp{fd} part means that it is a floppy
389 disk. The number @samp{0} is the drive number, which is counted from
397 Here, @samp{hd} means it is a hard disk drive. The first integer
398 @samp{0} indicates the drive number, that is, the first hard disk, while
399 the second integer, @samp{1}, indicates the partition number (or the
412 counted from @samp{4}, regardless of the actual number of primary
419 This means the BSD @samp{a} partition of the second hard disk. If you
421 like this: @samp{(hd1,0,a)}. If the @sc{pc} slice number is omitted,
422 GRUB searches for the first @sc{pc} slice which has a BSD @samp{a}
426 need to use the device specification in a command, like @samp{root
[all …]
H A Dinternals.texi259 @strong{Caution:} The semantics are such that then @samp{mount}ing the
262 presume that the data from the @samp{mount} is available, and doesn't
276 string and flags, and returns an @samp{int} value. The @dfn{flags}
410 Make patches in unified diff format. @samp{diff -urN} is appropriate in
H A Dtexinfo.tex1762 \def\samp#1{`\tclose{#1}'\null}
1775 % @file, @option are the same as @samp.
1776 \let\file=\samp
1777 \let\option=\samp
3299 \definedummyword{samp}%
5851 node \samp{\ignorespaces#1{}}}
/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_shutdown.c149 mblk_t *samp; in sctp_shutdown_received() local
161 trysend = sctp_cumack(sctp, ntohl(*tsn), &samp); in sctp_shutdown_received()
370 mblk_t *samp; in sctp_send_shutdown_ack() local
380 samp = sctp_make_mp(sctp, fp, sizeof (*sach)); in sctp_send_shutdown_ack()
381 if (samp == NULL) { in sctp_send_shutdown_ack()
386 sach = (sctp_chunk_hdr_t *)samp->b_wptr; in sctp_send_shutdown_ack()
391 samp->b_wptr += sizeof (*sach); in sctp_send_shutdown_ack()
401 linkb(samp, errmp); in sctp_send_shutdown_ack()
408 sctp_set_iplen(sctp, samp, fp->sf_ixa); in sctp_send_shutdown_ack()
409 (void) conn_ip_output(samp, fp->sf_ixa); in sctp_send_shutdown_ack()
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_output.c198 int64_t samp; in auimpl_output_mix() local
200 samp = *ip; in auimpl_output_mix()
201 samp *= vol; in auimpl_output_mix()
202 samp /= AUDIO_VOL_SCALE; in auimpl_output_mix()
205 *op += (int32_t)samp; in auimpl_output_mix()
/illumos-gate/usr/src/cmd/audio/audiotest/
H A Daudiotest.c190 int samp; in prepare() local
204 for (samp = 0; samp < nsamples; samp++) { in prepare()