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
386 @samp{load_addr}, @samp{load_end_addr}, @samp{bss_end_addr} and
388 fields @samp{mode_type}, @samp{width}, @samp{height} and @samp{depth} are
395 @table @samp
499 Contains @samp{0} for linear graphics mode or @samp{1} for
527 @table @samp
566 @table @samp
707 @samp{part1} will be 5, and @samp{part2} and @samp{part3} will both be
867 @table @samp
918 The fields @samp{version}, @samp{cseg}, @samp{offset}, @samp{cseg_16},
[all …]
H A Dgrub.texi2468 @samp{escape}, @samp{exclam}, @samp{at}, @samp{numbersign},
2469 @samp{dollar}, @samp{percent}, @samp{caret}, @samp{ampersand},
2470 @samp{asterisk}, @samp{parenleft}, @samp{parenright}, @samp{minus},
2471 @samp{underscore}, @samp{equal}, @samp{plus}, @samp{backspace},
2472 @samp{tab}, @samp{bracketleft}, @samp{braceleft}, @samp{bracketright},
2473 @samp{braceright}, @samp{enter}, @samp{control}, @samp{semicolon},
2474 @samp{colon}, @samp{quote}, @samp{doublequote}, @samp{backquote},
2475 @samp{tilde}, @samp{shift}, @samp{backslash}, @samp{bar}, @samp{comma},
2476 @samp{less}, @samp{period}, @samp{greater}, @samp{slash},
2477 @samp{question}, @samp{alt}, @samp{space}, @samp{capslock}, @samp{FX}
[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()