Searched refs:levels (Results 1 - 25 of 26) sorted by relevance

12

/haiku-fatelf/src/apps/soundrecorder/
H A DVUView.cpp111 rgb_color levels[fLevelCount][2]; local
114 levels[i][0] = levels[i][1] = back_color;
123 if (levels[i][channel].red >= 90) {
124 SHIFT_UNTIL(levels[i][channel].red, 15, low_color.red);
125 SHIFT_UNTIL(levels[i][channel].blue, 15, low_color.blue);
127 SHIFT_UNTIL(levels[i][channel].red, 7, low_color.red);
128 SHIFT_UNTIL(levels[i][channel].blue, 7, low_color.blue);
129 SHIFT_UNTIL(levels[i][channel].green, 14, low_color.green);
133 levels[leve
[all...]
/haiku-fatelf/src/apps/activitymonitor/
H A DSettingsWindow.cpp33 IntervalSlider(const char* label, BMessage* message, uint32 levels) argument
34 : BSlider("intervalSlider", label, message, 0, levels - 1, B_HORIZONTAL)
37 BString max(_TextFor(levels - 1));
40 SetHashMarkCount(levels);
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlogging.c67 * @levels: Bitfield of logging levels
72 u32 levels; member in struct:ntfs_logging
99 * ntfs_log_get_levels - Get a list of the current logging levels
101 * Find out which logging levels are enabled.
103 * Returns: Log levels in a 32-bit field
107 return ntfs_log.levels;
111 * ntfs_log_set_levels - Enable extra logging levels
112 * @levels: 32-bit field of log levels t
119 ntfs_log_set_levels(u32 levels) argument
136 ntfs_log_clear_levels(u32 levels) argument
[all...]
H A Dlogging.h54 /* Enable/disable certain log levels */
55 u32 ntfs_log_set_levels(u32 levels);
56 u32 ntfs_log_clear_levels(u32 levels);
71 /* Logging levels - Determine what gets logged */
H A Dsecurity.c4047 u8 levels; member in struct:__anon2466
/haiku-fatelf/src/libs/print/libgutenprint/src/testpattern/
H A Dtestpattern.h43 double levels[32]; member in struct:__anon5176::__anon5178::__anon5179
H A Dtestpatterny.y531 current_testpattern->d.pattern.levels[1] = $3;
532 current_testpattern->d.pattern.levels[2] = $4;
533 current_testpattern->d.pattern.levels[3] = $5;
H A Dtestpattern.c156 p->d.pattern.levels[i] = 0;
931 double levels[4]; \
949 levels[j] = p->d.pattern.levels[j] == \
950 -2 ? global_levels[j] : p->d.pattern.levels[j]; \
988 xvals[j] += cmyv * levels[j]; \
/haiku-fatelf/src/bin/network/tcpdump/libpcap/
H A Doptimize.c157 struct block **levels; variable in typeref:struct:block
235 b->link = levels[level];
236 levels[level] = b;
240 * Level graph. The levels go from 0 at the leaves to
241 * N_LEVELS at the root. The levels[] array points to the
249 memset((char *)levels, 0, n_blocks * sizeof(*levels));
279 for (b = levels[i]; b; b = b->link) {
320 for (b = levels[i]; b != 0; b = b->link) {
349 for (b = levels[
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/main/
H A Dcanon-inks.h36 * an ink is therefore defined by the number of bits used for the bitpattern (bitdepth) and the number of possible levels:
37 * a 1 bit ink can have 2 possible levels 0 and 1
38 * a 2 bit ink can have 2*2=4 possible levels with the bitpatterns 0,1,2 and 3
39 * a 3 bit ink can have 2*2*2=8 possible levels with the bitpatterns 0 to 7
41 * some inks use less levels than possible with the given bitdepth
44 * dotsizes are named dotsizes_xl where x is the number of levels (number of dotsizes + 1)
45 * inks are named canon_xb_yl_ink where x is the number of bits representing the y possible ink levels
62 #define DECLARE_INK(bits,levels) \
63 static const canon_ink_t canon_##bits##b_##levels##l_ink = { \
65 sizeof(dotsizes_##levels##
[all...]
H A Ddither-ordered.c174 int levels = dc->nlevels - 1; local
179 unsigned short *where = ord ? ord->lut + (val * levels) : &swhere;
183 for (i = levels - 1; i >= 0; i--)
216 int levels = dc->nlevels - 1; local
221 for (i = levels; i >= 0; i--)
H A Ddither-ed.c140 int levels = dc->nlevels - 1; local
159 for (i = levels; i >= 0; i--)
175 if (i < levels || base <= d->adaptive_limit)
H A Ddither-inks.c344 const double *levels, double density,
357 d[i].value = levels[i];
343 stp_dither_set_inks_simple(stp_vars_t *v, int color, int nlevels, const double *levels, double density, double darkness) argument
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Ddither.h169 const double *levels, double density,
/haiku-fatelf/src/bin/gdb/gdb/
H A Dui-out.c108 struct ui_out_level levels[MAX_UI_OUT_LEVELS]; member in struct:ui_out
118 return &uiout->levels[uiout->level];
1150 memset (uiout->levels, 0, sizeof (uiout->levels));
/haiku-fatelf/src/add-ons/translators/webp/libwebp/enc/
H A Dvp8enci.h222 int16_t y_dc_levels[16]; // Quantized levels for luma-DC, luma-AC, chroma.
251 uint64_t bit_count_[4][3]; // bit counters for coded levels.
386 int VP8GetCostLuma4(VP8EncIterator* const it, const int16_t levels[16]);
400 // Pick best modes and fills the levels. Returns true if skipped.
H A Dquant.c610 // quantized levels in *levels.
659 int16_t levels[16],
673 nz = TrellisQuantizeBlock(it, tmp, levels, ctx, 3, &dqm->y1_,
676 nz = QuantizeBlock(tmp, levels, 0, &dqm->y1_);
658 ReconstructIntra4(VP8EncIterator* const it, int16_t levels[16], const uint8_t* const src, uint8_t* const yuv_out, int mode) argument
H A Dframe.c236 int VP8GetCostLuma4(VP8EncIterator* const it, const int16_t levels[16]) { argument
244 SetResidualCoeffs(levels, &res);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DBPlusTree.cpp1503 // to reset the maximum number of levels in the header
1620 int32 levels = 0; local
1629 levels++;
1636 if (levels != (int32)fHeader->MaxNumberOfLevels())
1637 DEBUGGER(("levels don't match"));
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.cpp765 dprintf("inode %" B_PRIdOFF ": found %" B_PRIu32 " max levels, "
2106 // to reset the maximum number of levels in the header
2230 int32 levels = 0; local
2240 levels++;
2247 if (levels != (int32)fHeader.MaxNumberOfLevels())
2248 DEBUGGER(("levels don't match"));
/haiku-fatelf/headers/private/media/
H A Dsoundcard.h1699 int levels[32]; member in struct:mixer_vol_table
/haiku-fatelf/src/bin/sharutils/doc/
H A Dtexinfo.tex290 %% These are used to keep @begin/@end levels from running away
2465 % like \numhead, but chooses appendix heading levels
2484 % like \numhead, but chooses numberless heading levels
2985 % This parameter controls the indentation of the various levels.
/haiku-fatelf/src/bin/diffutils/config/
H A Dtexinfo.tex387 %% These are used to keep @begin/@end levels from running away
3491 % like \numhead, but chooses appendix heading levels
3510 % like \numhead, but chooses numberless heading levels
4092 % This parameter controls the indentation of the various levels.
/haiku-fatelf/src/libs/termcap/
H A Dtexinfo.tex373 %% These are used to keep @begin/@end levels from running away
3319 % like \numhead, but chooses appendix heading levels
3338 % like \numhead, but chooses numberless heading levels
3910 % This parameter controls the indentation of the various levels.
/haiku-fatelf/src/bin/gdb/texinfo/
H A Dtexinfo.tex3842 % like \numhead, but chooses appendix heading levels
3857 % like \numhead, but chooses numberless heading levels
4508 % This parameter controls the indentation of the various levels.

Completed in 408 milliseconds

12