HomeSort by: relevance | last modified time | path
    Searched refs:refill (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/sys/dev/pci/ixgbe/
ixgbe_dcb.c 52 * @refill: refill credits index by traffic class
56 s32 ixgbe_dcb_calculate_tc_credits(u8 *bw, u16 *refill, u16 *max,
79 refill[i] = (u16)val;
137 * a multiplier. It is required that the refill credits must be
158 /* Calculate credit refill ratio using multiplier */
162 /* Refill at least minimum credit */
229 u16 *refill)
235 refill[tc] = tc_config[tc].path[direction].data_credits_refill;
466 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 } local
506 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
547 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
652 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
    [all...]
ixgbe_dcb_82598.c 110 * @refill: refill credits index by traffic class
116 s32 ixgbe_dcb_config_rx_arbiter_82598(struct ixgbe_hw *hw, u16 *refill,
139 credit_refill = refill[i];
167 * @refill: refill credits index by traffic class
175 u16 *refill, u16 *max, u8 *bwg_id,
196 reg |= (u32)(refill[i]);
214 * @refill: refill credits index by traffic clas
    [all...]
ixgbe_dcb_82599.c 117 * @refill: refill credits index by traffic class
125 s32 ixgbe_dcb_config_rx_arbiter_82599(struct ixgbe_hw *hw, u16 *refill,
155 credit_refill = refill[i];
180 * @refill: refill credits index by traffic class
187 s32 ixgbe_dcb_config_tx_desc_arbiter_82599(struct ixgbe_hw *hw, u16 *refill,
203 reg |= (u32)(refill[i]);
228 * @refill: refill credits index by traffic clas
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/text/
operations.hpp 46 std::vector< std::string > refill(const std::string&, const std::size_t);
operations_test.cpp 46 /// Tests text::refill() on an input string with a range of widths.
60 ATF_REQUIRE(lines == text::refill(input, width));
105 ATF_REQUIRE_EQ(1, text::refill("", 0).size());
106 ATF_REQUIRE(text::refill("", 0)[0].empty());
109 ATF_REQUIRE_EQ(1, text::refill("", 10).size());
110 ATF_REQUIRE(text::refill("", 10)[0].empty());
121 ATF_REQUIRE(exp_lines == text::refill("foo bar\nbaz", 12));
124 ATF_REQUIRE(exp_lines == text::refill("foo bar\nbaz", 18));
179 ATF_REQUIRE(exp_lines == text::refill("foo \n bar", 5));
operations.cpp 72 /// \param input The string to refill.
73 /// \param target_width The width to refill the paragraph to.
77 text::refill(const std::string& input, const std::size_t target_width) function in class:text
122 /// See the documentation for refill() for additional details.
124 /// \param input The string to refill.
125 /// \param target_width The width to refill the paragraph to.
131 return join(refill(input, target_width), "\n");
table.cpp 78 /// Locates the refill column, if any.
84 /// \return The index of the refill column with a width_refill width if any, or
85 /// otherwise the index of the last column (which is the default refill column).
175 const std::vector< std::string > rows = text::refill(row[column],
  /src/lib/libc/stdio/
fread.c 117 /* Nothing to read on enter, refill the buffers. */
118 goto refill;
127 refill:
Makefile.inc 16 putwchar.c refill.c remove.c rewind.c \
  /src/external/bsd/kyua-cli/dist/utils/cmdline/
ui.cpp 165 const std::vector< std::string > lines = text::refill(
191 const std::vector< std::string > lines = text::refill(
  /src/external/gpl3/gdb.old/dist/gdb/tui/
tui-winsource.c 146 refill ();
497 tui_source_window_base::refill () function in class:tui_source_window_base
606 refill ();
tui-winsource.h 141 /* Refill the source window's source cache and update it. If this
143 void refill ();
tui-win.c 200 tui_src_win ()->refill ();
202 tui_disasm_win ()->refill ();
858 tui_src_win ()->refill ();
  /src/external/gpl3/gdb/dist/gdb/tui/
tui-winsource.c 147 refill ();
491 tui_source_window_base::refill () function in class:tui_source_window_base
600 refill ();
tui-winsource.h 141 /* Refill the source window's source cache and update it. If this
143 void refill ();
tui-win.c 200 tui_src_win ()->refill ();
202 tui_disasm_win ()->refill ();
858 tui_src_win ()->refill ();
  /src/external/bsd/pcc/dist/pcc/cc/cpp/
token.c 176 refill(int minsz) function
196 #define REFILL(x) if (ifiles->curptr+x >= ifiles->maxread) refill(x)
615 REFILL(2);
  /src/external/gpl3/binutils/dist/etc/
texi2pod.pl 395 # Cross references are thrown away, as are @noindent and @refill.
396 # (@noindent is impossible in .pod, and @refill is unnecessary.)
404 s/\@refill//g;
  /src/external/gpl3/binutils.old/dist/etc/
texi2pod.pl 395 # Cross references are thrown away, as are @noindent and @refill.
396 # (@noindent is impossible in .pod, and @refill is unnecessary.)
404 s/\@refill//g;
  /src/external/gpl3/gcc/dist/contrib/
texi2pod.pl 416 # Cross references are thrown away, as are @noindent and @refill.
417 # (@noindent is impossible in .pod, and @refill is unnecessary.)
425 s/\@refill//g;
  /src/external/gpl3/gcc.old/dist/contrib/
texi2pod.pl 416 # Cross references are thrown away, as are @noindent and @refill.
417 # (@noindent is impossible in .pod, and @refill is unnecessary.)
425 s/\@refill//g;
  /src/external/gpl3/gdb.old/dist/etc/
texi2pod.pl 395 # Cross references are thrown away, as are @noindent and @refill.
396 # (@noindent is impossible in .pod, and @refill is unnecessary.)
404 s/\@refill//g;
  /src/external/gpl3/gdb/dist/etc/
texi2pod.pl 395 # Cross references are thrown away, as are @noindent and @refill.
396 # (@noindent is impossible in .pod, and @refill is unnecessary.)
404 s/\@refill//g;
  /src/external/bsd/nsd/dist/simdzone/src/generic/
parser.h 267 static int32_t refill(parser_t *parser) function
269 // refill if possible (i.e. not if string or if file is empty)
315 READ_ERROR(parser, "Cannot refill buffer");
352 if ((code = refill(parser)) < 0)
367 // FIXME: if tail is still equal to tape, refill immediately?!
  /src/sys/dev/marvell/
if_mvxpe.c 1881 /* Disable Rx packet buffer refill request */
2555 int idx, refill = 0; local
2562 refill = rx->rx_queue_len - ndesc;
2563 if (refill <= 0)
2566 DPRINTSC(sc, 2, "%d buffers to refill.\n", refill);
2569 for (npkt = 0; npkt < refill; npkt++)

Completed in 35 milliseconds

1 2 3