Home
last modified time | relevance | path

Searched full:linear (Results 1 – 25 of 651) sorted by relevance

12345678910>>...27

/freebsd/lib/libiconv_modules/JOHAB/
H A Dcitrus_johab.c246 int m, l, linear, t; in _citrus_JOHAB_stdenc_wctocs() local
260 linear = l - 0xD9; in _citrus_JOHAB_stdenc_wctocs()
263 linear = l - 0xE0; in _citrus_JOHAB_stdenc_wctocs()
267 linear *= 188; in _citrus_JOHAB_stdenc_wctocs()
269 linear += t - 0x31; in _citrus_JOHAB_stdenc_wctocs()
271 linear += t - 0x43; in _citrus_JOHAB_stdenc_wctocs()
274 l = (linear / 94) + m; in _citrus_JOHAB_stdenc_wctocs()
275 t = (linear % 94) + 0x21; in _citrus_JOHAB_stdenc_wctocs()
289 int m, n, l, linear, t; in _citrus_JOHAB_stdenc_cstowc() local
307 linear = (l * 94) + t; in _citrus_JOHAB_stdenc_cstowc()
[all …]
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.qtip.css271 …background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#4A4A4A),color-stop(10…
272 background-image: -webkit-linear-gradient(top,#4A4A4A 0,black 100%);
273 background-image: -moz-linear-gradient(top,#4A4A4A 0,black 100%);
274 background-image: -ms-linear-gradient(top,#4A4A4A 0,black 100%);
275 background-image: -o-linear-gradient(top,#4A4A4A 0,black 100%);
304 background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
305 background-image: -moz-linear-gradient(top, #717171, #232323);
306 background-image: -webkit-linear-gradient(top, #717171, #232323);
307 background-image: -ms-linear-gradient(top, #717171, #232323);
308 background-image: -o-linear-gradient(top, #717171, #232323);
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.clearlquantize.d.out2 linear
22 linear
41 linear
59 linear
77 linear
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_errors.h102 Linear Forwarding Receive Controller
105 Linear Forwarding Receiver
120 Linear Forwarding Receive Controller
123 Linear Forwarding Receiver
/freebsd/contrib/file/magic/Magdir/
H A Dacorn43 >(9.b+19) byte =1 LZW-compressed linear
44 >(9.b+19) byte =2 8-bit linear signed
45 >(9.b+19) byte =3 16-bit linear signed
46 >(9.b+19) byte =4 SigmaDelta-compressed linear
/freebsd/sys/contrib/device-tree/Bindings/leds/backlight/
H A Dlm3630a-backlight.yaml80 ti,linear-mapping-mode:
82 Enable linear mapping mode. If disabled, then it will use exponential
133 ti,linear-mapping-mode;
139 ti,linear-mapping-mode;
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dabd.c32 * (a) Linear buffer. In this case, all the data in the ABD is stored in one
36 * | ABD (linear) |
62 * In addition to directly allocating a linear or scattered ABD, it is also
64 * within an existing ABD. In linear buffers this is simple (set abd_buf of
70 * within the first chunk in abd_chunks. For both linear and scattered ABDs,
77 * using a linear ABD to a scattered one when doing so would be beneficial.
79 * If you need to use the data within an ABD directly, if you know it's linear
91 * As an additional feature, linear and scatter ABD's can be stitched together
95 * It is possible to make all ABDs linear by setting zfs_abd_scatter_enabled to
184 * don't care whether the ABD is linear or not.
[all …]
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dabd_os.c63 * The number of linear ABDs which are currently allocated, excluding
69 /* Amount of data stored in all linear ABDs tracked by linear_cnt */
84 * ABD's for. Smaller allocations will use linear ABD's which use
89 * half of each page). Using linear ABD's for small allocations means that
92 * Linear ABDs for multi-page allocations are easier to use, and in some cases
94 * of multi-page linear ABDs are expensive operations due to KVA mapping and
176 * There is no scatter linear pages in FreeBSD so there is in abd_verify_scatter()
177 * an error if the ABD has been marked as a linear page. in abd_verify_scatter()
364 * Currently this is linear ABDs, however if ldi_strategy() can ever issue I/Os
458 * use a linear ABD. We have to make sure to take into account in abd_alloc_from_pages()
/freebsd/contrib/ntp/scripts/monitoring/
H A Dloopwatch.config.SAMPLE24 # showoreg: yes/no control display of linear regression of offset values
27 # showfreg: yes/no control display of linear regression of frequency values
30 # timebase: dynamic/ISO_DATE_TIME point of zero for linear regression
/freebsd/contrib/libxo/xohtml/
H A Dxohtml.css580 background: linear-gradient(top,
582 background: -moz-linear-gradient(top,
584 background: -webkit-linear-gradient(top,
593 background: linear-gradient(top,
595 background: -moz-linear-gradient(top,
597 background: -webkit-linear-gradient(top,
908 background: -moz-linear-gradient(center top , #4B90C3, #0D63A3)
981 background: -moz-linear-gradient( center top, #f24537 5%, #c62d1f 100% );
982 …background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f24537), color-stop…
1008 background: -moz-linear-gradient( center top, #c62d1f 5%, #f24537 100% );
[all …]
/freebsd/contrib/ntp/libntp/
H A Dntp_random.c64 * information and generates far better random numbers than a linear
66 * 32 bytes, a simple linear congruential R.N.G. is used.
76 * The random number generation technique is a linear feedback shift register
79 * the state table will act as a linear feedback shift register, and will
104 * state information and generates far better random numbers than a linear
106 * 32 bytes, a simple linear congruential R.N.G. is used." For a buffer of
118 #define TYPE_0 0 /* linear congruential */
252 * Otherwise, initializes state[] based on the given "seed" via a linear
458 * If we are using the trivial TYPE_0 R.N.G., just do the old linear
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dabd_os.c30 * Linear buffers act exactly like normal buffers and are always mapped into the
51 * can be treated as linear buffers, because they are contiguous in the
90 * The number of linear ABDs which are currently allocated, excluding
96 /* Amount of data stored in all linear ABDs tracked by linear_cnt */
159 * ABD's. Smaller allocations will use linear ABD's which uses
164 * half of each page). Using linear ABD's for small allocations means that
176 * By default we use linear allocations for 512B and 1KB, and scatter
340 * These conditions ensure that a possible transformation to a linear in abd_alloc_chunks()
349 * as a linear buffer. All single-page (4K) ABD's can be in abd_alloc_chunks()
356 * Representing a single-entry scatter ABD as a linear ABD in abd_alloc_chunks()
[all …]
/freebsd/lib/libc/stdlib/
H A Drandom.c54 * information and generates far better random numbers than a linear
56 * 32 bytes, a simple linear congruential R.N.G. is used.
66 * The random number generation technique is a linear feedback shift register
69 * the state table will act as a linear feedback shift register, and will
94 * state information and generates far better random numbers than a linear
96 * 32 bytes, a simple linear congruential R.N.G. is used." For a buffer of
201 * Otherwise, initializes state[] based on the given "seed" via a linear
435 * If we are using the trivial TYPE_0 R.N.G., just do the old linear
/freebsd/sys/contrib/device-tree/Bindings/iio/dac/
H A Dlltc,ltc1660.yaml8 title: Linear Technology Micropower octal 8-Bit and 10-Bit DACs
14 Bindings for the Linear Technology Micropower octal 8-Bit and 10-Bit DAC.
H A Dlltc,ltc2632.yaml7 title: Linear Technology LTC263x 12-/10-/8-Bit Rail-to-Rail DAC
13 Bindings for the Linear Technology LTC2632/2634/2636 DAC
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dbrcm,spi-bcm-qspi.txt64 - "spi_lr_fullness_reached" : Linear read BSPI pipe full
65 - "spi_lr_session_aborted" : Linear read BSPI pipe aborted
66 - "spi_lr_impatient" : Linear read BSPI requested when pipe empty
67 - "spi_lr_session_done" : Linear read BSPI session done
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Drtree_tsd.h16 * combining with a L2 LRU cache, which requires linear search and re-ordering
18 * cache misses if made overly large, plus the cost of linear search in the LRU
/freebsd/sys/contrib/device-tree/Bindings/hwmon/
H A Dadi,ltc2992.yaml7 title: Linear Technology 2992 Power Monitor
13 Linear Technology 2992 Dual Wide Range Power Monitor
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericIteratedDominanceFrontier.h9 /// Compute iterated dominance frontiers using a linear time algorithm.
13 /// Sreedhar and Gao. A linear time algorithm for placing phi-nodes.
54 /// This algorithm is a linear time computation of Iterated Dominance Frontiers,
99 /// This uses the linear-time phi algorithm based on DJ-graphs mentioned in
/freebsd/sys/contrib/device-tree/Bindings/iio/magnetometer/
H A Dti,tmag5273.yaml7 title: TI TMAG5273 Low-Power Linear 3D Hall-Effect Sensor
13 The TI TMAG5273 is a low-power linear 3D Hall-effect sensor. This device
/freebsd/sys/contrib/device-tree/Bindings/
H A Dtrivial-devices.yaml182 # Linear Technology LTC2488
198 # 10-bit 10 kOhm linear programmable voltage divider
200 # 10-bit 50 kOhm linear programmable voltage divider
202 # 10-bit 10 kOhm linear programmable variable resistor
204 # 10-bit 50 kOhm linear programmable variable resistor
/freebsd/sys/dev/mlx5/mlx5_core/
H A Dmlx5_wq.c67 int max_direct = param->linear ? INT_MAX : 0; in mlx5_wq_cyc_create()
103 int max_direct = param->linear ? INT_MAX : 0; in mlx5_cqwq_create()
141 int max_direct = param->linear ? INT_MAX : 0; in mlx5_wq_ll_create()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWasmAddressSpaces.h
/freebsd/contrib/llvm-project/lld/docs/
H A DWebAssembly.rst62 Place stack at start of linear memory rather than after data.
132 Initial size of the linear memory. Default: the sum of stack, static data and heap sizes.
136 Maximum size of the linear memory. Default: unlimited.
140 Set maximum size of the linear memory to its initial size, disallowing memory growth.
/freebsd/lib/libvgl/
H A Dvgl.h61 #define VIDBUF16 6 /* Direct Color linear buffer */
62 #define VIDBUF24 7 /* Direct Color linear buffer */
63 #define VIDBUF32 8 /* Direct Color linear buffer */

12345678910>>...27