Home
last modified time | relevance | path

Searched +full:buffered +full:- +full:positive (Results 1 – 25 of 90) sorted by relevance

1234

/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iio/adc/
H A Dadi,ad7124.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Stefan Popa <stefan.popa@analog.com>
16 https://www.analog.com/media/en/technical-documentation/data-sheets/AD7124-8.pdf
21 - adi,ad7124-4
22 - adi,ad7124-8
32 clock-names:
34 - const: mclk
40 '#address-cells':
[all …]
/OK3568_Linux_fs/kernel/tools/lib/api/
H A Dio.h1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Lightweight buffered reading library.
31 io->fd = fd; in io__init()
32 io->buf_len = buf_len; in io__init()
33 io->buf = buf; in io__init()
34 io->end = buf; in io__init()
35 io->data = buf; in io__init()
36 io->eof = false; in io__init()
42 char *ptr = io->data; in io__get_char()
44 if (io->eof) in io__get_char()
[all …]
/OK3568_Linux_fs/external/xserver/exa/
H A Dexa.h71 ExaOffscreenArea *prev; /* Double-linked list for defragmentation */
100 * (pScrn->displayWidth * cpp * pScrn->virtualY)
109 * (memoryBase + offScreenBase), with a length of (memorySize -
112 * In XFree86 DDX drivers, this is probably (pScrn->videoRam * 1024)
132 * mask pixmaps (textures) have a power-of-two pitch, which can be demanded
182 * single-byte "ROP" setting in all hardware. The planemask controls
224 * to finish up emitting drawing commands that were buffered, or clean up
247 * the pSrcPixmap to the pDstPixmap. The dx flag will be positive if the
249 * positive if the copy should be done from the top to the bottom. This
250 * is to deal with self-overlapping copies when pSrcPixmap == pDstPixmap.
[all …]
/OK3568_Linux_fs/u-boot/env/
H A DKconfig39 while U-Boot is running, but once U-Boot exits it will not be
40 stored. U-Boot will therefore always start up with a default
73 - CONFIG_ENV_OFFSET:
74 - CONFIG_ENV_SIZE:
83 - CONFIG_ENV_EEPROM_IS_ON_I2C
87 - CONFIG_I2C_ENV_EEPROM_BUS
104 - CONFIG_FAT_WRITE:
115 "embedded" in the text segment with the U-Boot code. This
121 4 kB sectors - with U-Boot code before and after it. With
124 between U-Boot and the environment.
[all …]
/OK3568_Linux_fs/kernel/Documentation/scsi/
H A Dst.rst1 .. SPDX-License-Identifier: GPL-2.0
23 flexible method and applicable to single-user workstations. However,
32 drive performs auto-detection of the tape format well (like some
33 QIC-drives). The result is that any tape can be read, writing can be
37 does not perform auto-detection well enough and there is a single
40 or not :-).
56 users (buffered and asynchronous writes). The modes also allow choices
57 between formats in multi-tape operations (the explicitly overridden
72 limits). Both the auto-rewind (minor equals device number) and
73 non-rewind devices (minor is 128 + device number) are implemented.
[all …]
/OK3568_Linux_fs/kernel/drivers/iio/adc/
H A Dad7124.c1 // SPDX-License-Identifier: GPL-2.0+
179 .name = "ad7124-4",
184 .name = "ad7124-8",
200 diff_new = abs(val - array[i]); in ad7124_find_closest_match()
219 ret = ad_sd_read_reg(&st->sd, addr, bytes, &readval); in ad7124_spi_write_mask()
226 return ad_sd_write_reg(&st->sd, addr, bytes, readval); in ad7124_spi_write_mask()
234 st->adc_control &= ~AD7124_ADC_CTRL_MODE_MSK; in ad7124_set_mode()
235 st->adc_control |= AD7124_ADC_CTRL_MODE(mode); in ad7124_set_mode()
237 return ad_sd_write_reg(&st->sd, AD7124_ADC_CONTROL, 2, st->adc_control); in ad7124_set_mode()
245 val = st->channel_config[channel].ain | AD7124_CHANNEL_EN(1) | in ad7124_set_channel()
[all …]
H A Dti-ads1015.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * ADS1015 - Texas Instruments Analog-to-Digital Converter
7 * IIO driver for ADS1015 ADC 7-bit I2C slave address:
8 * * 0x48 - ADDR connected to Ground
9 * * 0x49 - ADDR connected to Vdd
10 * * 0x4A - ADDR connected to SDA
11 * * 0x4B - ADDR connected to SCL
106 * Translation from PGA bits to full-scale positive and negative input voltage
178 .datasheet_name = "AIN"#_chan"-AIN"#_chan2, \
220 .datasheet_name = "AIN"#_chan"-AIN"#_chan2, \
[all …]
/OK3568_Linux_fs/kernel/block/
H A Dblk-wbt.c1 // SPDX-License-Identifier: GPL-2.0
3 * buffered writeback throttling. loosely based on CoDel. We can't drop
6 * - Monitor latencies in a defined window of time.
7 * - If the minimum latency in the above window exceeds some target, increment
10 * - For any window where we don't have solid data on what the latencies
12 * - If latencies look good, decrement scaling step.
13 * - If we're only doing writes, allow the scaling step to go negative. This
16 * positive scaling steps where we shrink the monitoring window, a negative
25 #include <linux/backing-dev.h>
28 #include "blk-wbt.h"
[all …]
/OK3568_Linux_fs/kernel/net/strparser/
H A Dstrparser.c1 // SPDX-License-Identifier: GPL-2.0-only
32 return (struct _strp_msg *)((void *)skb->cb + in _strp_msg()
41 cancel_delayed_work(&strp->msg_timer_work); in strp_abort_strp()
43 if (strp->stopped) in strp_abort_strp()
46 strp->stopped = 1; in strp_abort_strp()
48 if (strp->sk) { in strp_abort_strp()
49 struct sock *sk = strp->sk; in strp_abort_strp()
52 sk->sk_err = -err; in strp_abort_strp()
53 sk->sk_error_report(sk); in strp_abort_strp()
60 mod_delayed_work(strp_wq, &strp->msg_timer_work, timeo); in strp_start_timer()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/mouse/
H A Dcyapa_gen5.c6 * Copyright (C) 2014-2015 Cypress Semiconductor, Inc.
21 #include <linux/crc-itu-t.h>
33 #define CYAPA_TSG_IMG_MAX_RECORDS (CYAPA_TSG_IMG_END_ROW_NUM - \
141 * Bit 7 - 3: reserved
142 * Bit 2 - 0: touch type;
146 * 3 - 15 : reserved.
154 * Bit 6 - 5: indicates an event associated with this touch instance
159 * Bit 4 - 0: An arbitrary ID tag associated with a finger
164 /* Bit 7 - 0 of X-axis coordinate of the touch in pixel. */
167 /* Bit 15 - 8 of X-axis coordinate of the touch in pixel. */
[all …]
/OK3568_Linux_fs/kernel/include/net/
H A Dmac80211.h1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * mac80211 <-> driver interface
5 * Copyright 2002-2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007-2010 Johannes Berg <johannes@sipsolutions.net>
8 * Copyright 2013-2014 Intel Mobile Communications GmbH
9 * Copyright (C) 2015 - 2017 Intel Deutschland GmbH
10 * Copyright (C) 2018 - 2020 Intel Corporation
31 * only partial functionality in hard- or firmware. This document
32 * defines the interface between mac80211 and low-level hardware
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/openssl/
H A Dbio.h1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
8 * This library is free for commercial and non-commercial use as long as
35 * being used are not cryptographic related :-).
75 // BIO abstracts over a file-descriptor like interface.
95 // value. This is provided for API-compat.
128 // BIO_flush flushes any buffered output. It returns one on success and zero
133 // Low-level control functions.
156 // BIO_eof returns non-zero when |bio| has reached end-of-file. The precise
158 // case of BIO_pair this always returns non-zero.
161 // BIO_set_flags ORs |flags| with |bio->flags|.
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/host_include/openssl/
H A Dbio.h1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
8 * This library is free for commercial and non-commercial use as long as
35 * being used are not cryptographic related :-).
75 // BIO abstracts over a file-descriptor like interface.
95 // value. This is provided for API-compat.
128 // BIO_flush flushes any buffered output. It returns one on success and zero
133 // Low-level control functions.
156 // BIO_eof returns non-zero when |bio| has reached end-of-file. The precise
158 // case of BIO_pair this always returns non-zero.
161 // BIO_set_flags ORs |flags| with |bio->flags|.
[all …]
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-bus-iio3 Contact: linux-iio@vger.kernel.org
11 Contact: linux-iio@vger.kernel.org
25 Contact: linux-iio@vger.kernel.org
31 Contact: linux-iio@vger.kernel.org
38 Contact: linux-iio@vger.kernel.org
41 buffered samples and events for device X.
48 Contact: linux-iio@vger.kernel.org
65 Contact: linux-iio@vger.kernel.org
70 - a small discrete set of values like "0 2 4 6 8"
71 - a range with minimum, step and maximum frequencies like
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/
H A Dlibc.info-511 “GNU Lesser General Public License”, the Front-Cover texts being “A GNU
12 Manual”, and with the Back-Cover Texts as in (a) below. A copy of the
16 (a) The FSF’s Back-Cover Text is: “You have the freedom to copy and
19 INFO-DIR-SECTION Software libraries
20 START-INFO-DIR-ENTRY
22 END-INFO-DIR-ENTRY
24 INFO-DIR-SECTION GNU C library functions and macros
25 START-INFO-DIR-ENTRY
311 * O_CREAT: (libc)Open-time Flags.
312 * O_DIRECTORY: (libc)Open-time Flags.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/
H A Dlibc.info-511 “GNU Lesser General Public License”, the Front-Cover texts being “A GNU
12 Manual”, and with the Back-Cover Texts as in (a) below. A copy of the
16 (a) The FSF’s Back-Cover Text is: “You have the freedom to copy and
19 INFO-DIR-SECTION Software libraries
20 START-INFO-DIR-ENTRY
22 END-INFO-DIR-ENTRY
24 INFO-DIR-SECTION GNU C library functions and macros
25 START-INFO-DIR-ENTRY
311 * O_CREAT: (libc)Open-time Flags.
312 * O_DIRECTORY: (libc)Open-time Flags.
[all …]
/OK3568_Linux_fs/kernel/drivers/iio/dummy/
H A Diio_simple_dummy.c1 // SPDX-License-Identifier: GPL-2.0-only
31 * struct iio_dummy_accel_calibscale - realworld to register mapping
32 * @val: first value in read_raw - here integer part.
33 * @val2: second value in read_raw etc - here micro part.
34 * @regval: register value - magic device specific numbers.
51 * simple event - triggered when value rises above
61 * simple step detect event - triggered when a step is detected
70 * simple transition event - triggered when the reported running confidence
80 * simple transition event - triggered when the reported walking confidence
91 * iio_dummy_channels - Description of available channels
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/
H A Di915_perf.c2 * Copyright © 2015-2016 Intel Corporation
39 * The interface is particularly suited to exposing buffered metrics that are
44 * without special privileges. Access to system-wide metrics requires root
58 * might sample sets of tightly-coupled counters, depending on the
70 * interleaved with event-type specific members.
76 * would be acceptable to expose them to unprivileged applications - to hide
96 * side-band OA data captured via MI_REPORT_PERF_COUNT commands; we're
102 * For posterity, in case we might re-visit trying to adapt core perf to be
106 * - The perf based OA PMU driver broke some significant design assumptions:
110 * implications, the need to fake cpu-related data (such as user/kernel
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dhid.h1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 * Copyright (c) 2000-2001 Vojtech Pavlik
5 * Copyright (c) 2006-2007 Jiri Kosina
10 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
32 * values are expanded to 32-bit signed int, long items contain a pointer
183 * System Multi-Axis, see:
184 …* http://www.usb.org/developers/hidpage/HUTRR62_-_Generic_Desktop_CA_for_System_Multi-Axis_Control…
304 * HID report types --- Ouch! HID spec says 1 2 3!
389 * persistent for main-items. The global environment can be saved and
407 * This is the local environment. It is persistent up the next main-item.
[all …]
/OK3568_Linux_fs/kernel/Documentation/filesystems/
H A Dvfs.rst1 .. SPDX-License-Identifier: GPL-2.0
9 - Copyright (C) 1999 Richard Gooch
10 - Copyright (C) 2005 Pekka Enberg
27 ------------------------------
32 cache or dcache). This provides a very fast look-up mechanism to
44 ----------------
64 ---------------
67 structure (this is the kernel-side implementation of file descriptors).
88 .. code-block:: c
99 ->mount() will be attached to the mountpoint, so that when pathname
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/display/
H A Dintel_sprite.c56 if (!adjusted_mode->crtc_htotal) in intel_usecs_to_scanlines()
59 return DIV_ROUND_UP(usecs * adjusted_mode->crtc_clock, in intel_usecs_to_scanlines()
60 1000 * adjusted_mode->crtc_htotal); in intel_usecs_to_scanlines()
72 * intel_pipe_update_start() - start update of a set of display registers
85 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); in intel_pipe_update_start()
86 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); in intel_pipe_update_start()
87 const struct drm_display_mode *adjusted_mode = &new_crtc_state->hw.adjusted_mode; in intel_pipe_update_start()
90 wait_queue_head_t *wq = drm_crtc_vblank_waitqueue(&crtc->base); in intel_pipe_update_start()
96 vblank_start = adjusted_mode->crtc_vblank_start; in intel_pipe_update_start()
97 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) in intel_pipe_update_start()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dbcmdevs.h2 * Broadcom device-specific manifest constants.
21 * <<Broadcom-WL-IPTag/Dual:>>
45 /* BLAZAR_BRANCH_101_10_DHD_001/build/dhd/linux-fc19/brix-brcm */
270 BCM43012Variants,package,ballmap,floorplan-PackageOptions
289 #define BFL_CCKHIPWR 0x00000040 /* Can do high-power CCK transmission */
300 #define BFL_RSSIINV 0x00020000 /* Board's RSSI uses positive slope(not TSSI) */
310 /* BFL_FASTPWR and BFL_UCPWRCTL_MININDX are non-overlaping features and use the same bit */
324 #define BFL2_APLL_WAR 0x00000002 /* Flag to implement alternative A-band PLL settings */
330 #define BFL2_WLCX_ATLAS 0x00000040 /* Board flag to initialize ECI for WLCX on FL-ATLAS */
336 #define BFL2_SPUR_WAR 0x00000200 /* Board has a WAR for clock-harmonic spurs */
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/
H A Dbcmdevs.h2 * Broadcom device-specific manifest constants.
21 * <<Broadcom-WL-IPTag/Dual:>>
45 /* BLAZAR_BRANCH_101_10_DHD_001/build/dhd/linux-fc19/brix-brcm */
270 BCM43012Variants,package,ballmap,floorplan-PackageOptions
289 #define BFL_CCKHIPWR 0x00000040 /* Can do high-power CCK transmission */
300 #define BFL_RSSIINV 0x00020000 /* Board's RSSI uses positive slope(not TSSI) */
310 /* BFL_FASTPWR and BFL_UCPWRCTL_MININDX are non-overlaping features and use the same bit */
324 #define BFL2_APLL_WAR 0x00000002 /* Flag to implement alternative A-band PLL settings */
330 #define BFL2_WLCX_ATLAS 0x00000040 /* Board flag to initialize ECI for WLCX on FL-ATLAS */
336 #define BFL2_SPUR_WAR 0x00000200 /* Board has a WAR for clock-harmonic spurs */
[all …]
/OK3568_Linux_fs/kernel/fs/xfs/
H A Dxfs_ioctl.c1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
69 f = fdget(hreq->fd); in xfs_find_handle()
71 return -EBADF; in xfs_find_handle()
74 error = user_path_at(AT_FDCWD, hreq->path, 0, &path); in xfs_find_handle()
85 error = -EINVAL; in xfs_find_handle()
86 if (inode->i_sb->s_magic != XFS_SB_MAGIC) in xfs_find_handle()
89 error = -EBADF; in xfs_find_handle()
90 if (!S_ISREG(inode->i_mode) && in xfs_find_handle()
91 !S_ISDIR(inode->i_mode) && in xfs_find_handle()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dgfortran.info4 Copyright (C) 1999-2020 Free Software Foundation, Inc.
9 Invariant Sections being "Funding Free Software", the Front-Cover Texts
10 being (a) (see below), and with the Back-Cover Texts being (b) (see
14 (a) The FSF's Front-Cover Text is:
18 (b) The FSF's Back-Cover Text is:
23 INFO-DIR-SECTION Software development
24 START-INFO-DIR-ENTRY
26 END-INFO-DIR-ENTRY
32 Floor Boston, MA 02110-1301 USA
34 Copyright (C) 1999-2020 Free Software Foundation, Inc.
[all …]

1234