Home
last modified time | relevance | path

Searched +full:y +full:- +full:max (Results 1 – 25 of 1082) sorted by relevance

12345678910>>...44

/freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/
H A Dads7846.txt7 Documentation/devicetree/bindings/spi/spi-bus.txt
23 vcc-supply A regulator node for the supply voltage.
28 ti,vref-delay-usecs vref supply delay in usecs, 0 for
30 ti,vref-mv The VREF voltage, in millivolts (u16).
33 ti,keep-vref-on set to keep vref on for differential
35 ti,settle-delay-usec Settling time of the analog signals;
37 on the X/Y drivers. If set to non-zero,
41 ti,penirq-recheck-delay-usecs If set to non-zero, after samples are
47 ti,x-plate-ohms Resistance of the X-plate,
49 ti,y-plate-ohms Resistance of the Y-plate,
[all …]
H A Dti,ads7843.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Alexander Stein <alexander.stein@ew.tq-group.com>
11 - Dmitry Torokhov <dmitry.torokhov@gmail.com>
12 - Marek Vasut <marex@denx.de>
21 - ti,ads7843
22 - ti,ads7845
23 - ti,ads7846
24 - ti,ads7873
[all …]
H A Dti,tsc2005.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Marek Vasut <marex@denx.de>
11 - Michael Welling <mwelling@ieee.org>
19 - ti,tsc2004
20 - ti,tsc2005
31 reset-gpios:
35 spi-max-frequency:
39 ti,x-plate-ohms:
[all …]
H A Dcypress,cy8ctma140.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Linus Walleij <linus.walleij@linaro.org>
13 - $ref: touchscreen.yaml#
22 clock-frequency:
30 vcpin-supply:
33 vdd-supply:
36 touchscreen-inverted-x: true
37 touchscreen-inverted-y: true
[all …]
H A Dtsc2005.txt4 - compatible : "ti,tsc2004" or "ti,tsc2005"
5 - reg : Device address
6 - interrupts : IRQ specifier
7 - spi-max-frequency : Maximum SPI clocking speed of the device
11 - vio-supply : Regulator specifier
12 - reset-gpios : GPIO specifier for the controller reset line
13 - ti,x-plate-ohms : integer, resistance of the touchscreen's X plates
15 - ti,esd-recovery-timeout-ms : integer, if the touchscreen does not respond after
18 - properties defined in touchscreen.txt
26 vio-supply = <&vio>;
[all …]
H A Dbu21013.txt4 - compatible : "rohm,bu21013_tp"
5 - reg : I2C device address
6 - reset-gpios : GPIO pin enabling (selecting) chip (CS)
7 - interrupt-parent : the phandle for the gpio controller
8 - interrupts : (gpio) interrupt to which the chip is connected
11 - touch-gpios : GPIO pin registering a touch event
12 - <supply_name>-supply : Phandle to a regulator supply
13 - touchscreen-size-x : General touchscreen binding, see [1].
14 - touchscreen-size-y : General touchscreen binding, see [1].
15 - touchscreen-inverted-x : General touchscreen binding, see [1].
[all …]
/freebsd/sys/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt8 - compatible: should be set to "st,lis3lv02d-spi"
9 - reg: the chipselect index
10 - spi-max-frequency: maximal bus speed, should be set to 1000000 unless
12 - interrupts: the interrupt generated by the device
15 - compatible: should be set to "st,lis3lv02d"
16 - reg: i2c slave address
17 - Vdd-supply: The input supply for Vdd
18 - Vdd_IO-supply: The input supply for Vdd_IO
23 - st,click-single-{x,y,z}: if present, tells the device to issue an
25 x/y/z axis.
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dminmax.h1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
6 * Copyright (c) 2013-2015 Mellanox Technologies, Ltd.
7 * Copyright (c) 2014-2015 François Tigeot
41 #define min(x, y) ((x) < (y) ? (x) : (y)) argument
42 #define max(x, y) ((x) > (y) ? (x) : (y)) macro
45 #define max3(a, b, c) max(a, max(b, c))
47 #define min_not_zero(x, y) ({ \ argument
49 __typeof(y) __min2 = (y); \
53 #define min_t(type, x, y) ({ \ argument
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Drandom1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
38 static constexpr result_type max() { return m - 1u;}
57 const linear_congruential_engine<UIntType, a, c, m>& y);
62 const linear_congruential_engine<UIntType, a, c, m>& y);
100 static constexpr result_type max() { return 2^w - 1; }
122 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
130 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
[all …]
/freebsd/sys/dev/syscons/daemon/
H A Ddaemon_saver.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
63 " /- _ `-/ '",
67 " `-^--'`< '",
70 " `-----' /",
71 "<----. __ / __ \\",
72 "<----|====O)))==) \\) /====",
73 "<----' `--' `.__,' \\",
77 " ,' ,-----' |",
78 " `--{__________)",
[all …]
/freebsd/contrib/ofed/opensm/include/complib/
H A Dcl_math.h3 * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
4 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
16 * - Redistributions of source code must retain the above
20 * - Redistributions in binary form must reproduce the above
55 /****d* Component Library: Math/MAX
57 * MAX
60 * The MAX macro returns the greater of two values.
63 * MAX( x, y );
69 * y
73 * Returns the greater of the x and y parameters.
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__numeric/
H A Dsaturation_arithmetic.h1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
36 return std::numeric_limits<_Tp>::max(); in __add_sat()
40 // Overflows if (x > 0 && y > 0) in __add_sat()
41 return std::numeric_limits<_Tp>::max(); in __add_sat()
43 // Overflows if (x < 0 && y < 0) in __add_sat()
54 // Overflows if (x < y) in __sub_sat()
59 // Overflows if (x >= 0 && y < 0) in __sub_sat()
[all …]
/freebsd/sys/sys/
H A Dparam.h1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
52 * documentation/content/en/books/porters-handbook/versions/_index.adoc
56 * X.0-CURRENT before releng/X.0 is created, otherwise 'R' is
62 * kernel's KBI in -CURRENT, one that changes some detail about the system that
84 * kernel-specific routines, and in fact it's fine to do this in code that
118 * Machine-independent constants (some used in following include files).
125 #define MAXCOMLEN 19 /* max command name remembered */
126 #define MAXINTERP PATH_MAX /* max interpreter file name length */
127 #define MAXLOGNAME 33 /* max login name length (incl. NUL) */
[all …]
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap3-overo-common-peripherals.dtsi1 // SPDX-License-Identifier: GPL-2.0-only
11 lis33_3v3: lis33-3v3-reg {
12 compatible = "regulator-fixed";
13 regulator-name = "lis33-3v3-reg";
14 regulator-min-microvolt = <3300000>;
15 regulator-max-microvolt = <3300000>;
18 lis33_1v8: lis33-1v8-reg {
19 compatible = "regulator-fixed";
20 regulator-name = "lis33-1v8-reg";
21 regulator-min-microvolt = <1800000>;
[all …]
H A Domap3-gta04a3.dts1 // SPDX-License-Identifier: GPL-2.0-only
6 #include "omap3-gta04.dtsi"
18 interrupt-parent = <&gpio3>;
20 Vdd-supply = <&vaux2>;
21 Vdd_IO-supply = <&vaux2>;
23 st,click-single-x;
24 st,click-single-y;
25 st,click-single-z;
26 st,click-thresh-x = <8>;
27 st,click-thresh-y = <8>;
[all …]
/freebsd/contrib/bsddialog/lib/
H A Dlib_util.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2021-2023 Alfonso Sabato Siciliano
39 * -1- Error and diagnostic
45 * --
151 mvwaddwch(WINDOW * w,int y,int x,wchar_t wch) mvwaddwch() argument
230 draw_button(WINDOW * window,int y,int x,int size,const char * text,wchar_t first,bool selected,bool shortcut) draw_button() argument
270 int i, x, startx, y; draw_buttons() local
596 int i, j, x, y, z, l, line, maxwidth, tablen; text_autosize() local
881 set_widget_position(struct bsddialog_conf * conf,int * y,int * x,int h,int w) set_widget_position() argument
1025 update_box(struct bsddialog_conf * conf,WINDOW * win,int y,int x,int h,int w,enum elevation elev) update_box() argument
1126 print_string(WINDOW * win,int * rows,int cols,int * y,int * x,wchar_t * str,bool color) print_string() argument
1183 int i, j, z, rows, cols, x, y, tablen; print_textpad() local
[all...]
H A Dbarbox.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2021-2024 Alfonso Sabato Siciliano
46 #define WBOX(d) ((d)->w - BORDERS - BARPADDING - BARPADDIN
71 int y; /* bar y in win */ global() member
108 int y; update_barbox() local
423 bsddialog_rangebox(struct bsddialog_conf * conf,const char * text,int rows,int cols,int min,int max,int * value) bsddialog_rangebox() argument
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h1 //===- llvm/Analysis/IVDescriptors.h - IndVar Descriptors -------*-
[all...]
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Derf.c2 * Double-precision vector erf(x) function.
4 * Copyright (c) 2023-2024, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
17 double max, shift; member
19 .third = 0x1.5555555555556p-2, /* used to compute 2/3 and 1/6 too. */
20 .two_over_fifteen = 0x1.1111111111111p-3,
21 .tenth = -0x1.999999999999ap-4,
22 .two_over_five = -0x1.999999999999ap-2,
23 .two_over_nine = -0x1.c71c71c71c71cp-3,
24 .two_over_fortyfive = 0x1.6c16c16c16c17p-5,
[all …]
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dsysmacros.h9 * or https://opensource.org/licenses/CDDL-1.0.
51 #define btod(BB) (((BB) + DEV_BSIZE - 1) >> DEV_BSHIFT)
53 #define lbtod(BB) (((offset_t)(BB) + DEV_BSIZE - 1) >> DEV_BSHIFT)
59 #ifndef MAX
60 #define MAX(a, b) ((a) < (b) ? (b) : (a)) macro
63 #define ABS(a) ((a) < 0 ? -(a) : (a))
66 #define SIGNOF(a) ((a) < 0 ? -1 : (a) > 0)
72 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
86 * Convert a single byte to/from binary-coded decimal (BCD).
108 #define O_MAXMAJ 0x7f /* SVR3 max major value */
[all …]
/freebsd/usr.bin/dpv/
H A Ddpv_util.h1 /*-
2 * Copyright (c) 2013-2014 Devin Teske <dteske@FreeBSD.org>
35 /* max raw I/O transfer size */
54 #define MIN(x,y) ((x) < (y) ? (x) : (y)) argument
55 #undef MAX
56 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Derf.c2 * Double-precision vector erf(x) function.
4 * Copyright (c) 2023-2024, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
17 float64x2_t max, shift; member
24 .third = V2 (0x1.5555555555556p-2), /* used to compute 2/3 and 1/6 too. */
25 .two_over_fifteen = 0x1.1111111111111p-3,
26 .tenth = V2 (-0x1.999999999999ap-4),
27 .two_over_five = V2 (-0x1.999999999999ap-2),
28 .two_over_nine = V2 (-0x1.c71c71c71c71cp-3),
29 .two_over_fortyfive = 0x1.6c16c16c16c17p-5,
[all …]
H A Derff.c2 * Single-precision vector erf(x) function.
4 * Copyright (c) 2023-2024, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
14 float32x4_t max, shift, third; member
19 .max = V4 (3.9375), /* 4 - 8/128. */
21 .third = V4 (0x1.555556p-2f), /* 1/3. */
23 .tiny_bound = V4 (0x1p-62f),
24 .scale_minus_one = V4 (0x1.06eba8p-3f), /* scale - 1.0. */
51 /* Single-precision implementation of vector erf(x).
54 Let d = x - r, and scale = 2 / sqrt(pi) * exp(-r^2). For x near r,
[all …]
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dsysmacros.h53 #define btod(BB) (((BB) + DEV_BSIZE - 1) >> DEV_BSHIFT)
56 #define lbtod(BB) (((offset_t)(BB) + DEV_BSIZE - 1) >> DEV_BSHIFT)
62 #ifndef MAX
63 #define MAX(a, b) ((a) < (b) ? (b) : (a)) macro
66 #define ABS(a) ((a) < 0 ? -(a) : (a))
69 #define SIGNOF(a) ((a) < 0 ? -1 : (a) > 0)
75 * Convert a single byte to/from binary-coded decimal (BCD).
99 #define O_MAXMAJ 0x7f /* SVR3 max major value */
100 #define O_MAXMIN 0xff /* SVR3 max minor value */
105 #define L_MAXMAJ32 0x3fff /* SVR4 max major value */
[all …]
/freebsd/contrib/bearssl/src/rsa/
H A Drsa_i31_keygen_inner.c38 (*rng)->generate(rng, x + 1, len * sizeof(uint32_t)); in mkrand()
46 x[len] &= 0x7FFFFFFF >> (31 - m); in mkrand()
51 * This is the big-endian unsigned representation of the product of
88 * exceeds 512 (which is a count in 32-bit words) when BR_MAX_RSA_SIZE
89 * is greater than 4464 (default value is 4096, so the 2-kB limit is
92 #define MAX(x, y) ((x) > (y) ? (x) : (y)) macro
95 #define TEMPS MAX(512, ROUND2(7 * ((((BR_MAX_RSA_SIZE + 1) >> 1) + 61) / 31)))
99 * y = SMALL_PRIMES mod x, then tries to compute y/y mod x. The
100 * br_i31_moddiv() function will report an error if y is not invertible
102 * divides x), 0 on error (a non-trivial GCD is obtained).
[all …]

12345678910>>...44