Home
last modified time | relevance | path

Searched +full:half +full:- (Results 1 – 25 of 1060) sorted by relevance

12345678910>>...43

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/algo/detail/
H A Dmerge_sort.hpp3 // (C) Copyright Ion Gaztanaga 2015-2016.
48 if (size_type(last - first) <= size_type(MergeSortInsertionSortThreshold)) { in inplace_stable_sort()
52 RandIt middle = first + (last - first) / 2; in inplace_stable_sort()
56 (first, middle, last, size_type(middle - first), size_type(last - middle), comp); in inplace_stable_sort()
67 size_type const count = size_type(last - first); in merge_sort_copy()
72 size_type const half = count/2; in merge_sort_copy() local
73 merge_sort_copy(first + half, last , dest+half , comp); in merge_sort_copy()
74 merge_sort_copy(first , first + half, first + half, comp); in merge_sort_copy()
76 ( first + half, first + half + half in merge_sort_copy()
77 , dest, dest+half, dest + count in merge_sort_copy()
[all …]
/OK3568_Linux_fs/kernel/arch/parisc/kernel/
H A Dsignal32.c1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Signal support for 32-bit kernel builds
4 * Copyright (C) 2001 Matthew Wilcox <willy at parisc-linux.org>
5 * Copyright (C) 2006 Kyle McMartin <kyle at parisc-linux.org>
44 /* When loading 32-bit values into 64-bit registers make in restore_sigcontext32()
45 sure to clear the upper 32-bits */ in restore_sigcontext32()
50 err |= __get_user(compat_reg,&sc->sc_gr[regn]); in restore_sigcontext32()
51 regs->gr[regn] = compat_reg; in restore_sigcontext32()
52 /* Load upper half */ in restore_sigcontext32()
53 err |= __get_user(compat_regt,&rf->rf_gr[regn]); in restore_sigcontext32()
[all …]
/OK3568_Linux_fs/app/forlinx/DWKeyboard/include/pinyin/include/
H A Dspellingtrie.h8 * http://www.apache.org/licenses/LICENSE-2.0
48 // Map from half spelling id to single char.
49 // For half ids of Zh/Ch/Sh, map to z/c/s (low case) respectively.
74 // The Yunmu id list for the spelling ids (for half ids of Shengmu,
106 // The full spl_id range for specific half id.
107 // h2f means half to full.
108 // A half id can be a ShouZiMu id (id to represent the first char of a full
110 // [1..kFullSplIdStart-1] is the arrange of half id.
114 // Map from full id to half id.
163 return ch1 == ch2 || ch1 - ch2 == 'a' - 'A' || ch2 - ch1 == 'a' - 'A'; in is_same_spl_char()
[all …]
H A Dlpicache.h8 * http://www.apache.org/licenses/LICENSE-2.0
26 // Used to cache LmaPsbItem list for half spelling ids.
43 // list for half ids.
49 // Note: splid must be a half id, and lpi_items must be not NULL. The
53 // Get the cached list for the given half id.
55 // Note: splid must be a half id, and lpi_items must be not NULL. The
/OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/pinyin/include/
H A Dspellingtrie.h8 * http://www.apache.org/licenses/LICENSE-2.0
48 // Map from half spelling id to single char.
49 // For half ids of Zh/Ch/Sh, map to z/c/s (low case) respectively.
74 // The Yunmu id list for the spelling ids (for half ids of Shengmu,
106 // The full spl_id range for specific half id.
107 // h2f means half to full.
108 // A half id can be a ShouZiMu id (id to represent the first char of a full
110 // [1..kFullSplIdStart-1] is the arrange of half id.
114 // Map from full id to half id.
163 return ch1 == ch2 || ch1 - ch2 == 'a' - 'A' || ch2 - ch1 == 'a' - 'A'; in is_same_spl_char()
[all …]
H A Dlpicache.h8 * http://www.apache.org/licenses/LICENSE-2.0
26 // Used to cache LmaPsbItem list for half spelling ids.
43 // list for half ids.
49 // Note: splid must be a half id, and lpi_items must be not NULL. The
53 // Get the cached list for the given half id.
55 // Note: splid must be a half id, and lpi_items must be not NULL. The
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dmii.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * linux/mii.h: definitions for MII-compatible transceivers
23 #define MII_CTRL1000 0x09 /* 1000BASE-T control */
24 #define MII_STAT1000 0x0a /* 1000BASE-T status */
30 #define MII_NWAYTEST 0x14 /* N-way auto-neg test reg */
55 #define BMSR_ERCAP 0x0001 /* Ext-reg capability */
58 #define BMSR_ANEGCAPABLE 0x0008 /* Able to do auto-negotiation */
60 #define BMSR_ANEGCOMPLETE 0x0020 /* Auto-negotiation complete */
63 #define BMSR_100HALF2 0x0200 /* Can do 100BASE-T2 HDX */
64 #define BMSR_100FULL2 0x0400 /* Can do 100BASE-T2 FDX */
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/spherical/
H A Dcompare_circular.hpp3 // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
41 static inline double half() { return 180.0; } in half() function
48 static inline double half() { return boost::math::constants::pi<double>(); } in half() function
57 \tparam Point point-type
73 value -= detail::shift<Units>::full(); in put_in_range()
85 if (c1 < -mx || c1 > mx || c2 < -mx || c2 > mx) in operator ()()
91 static const double half = full / 2.0; in operator ()() local
92 CoordinateType v1 = put_in_range(c1, -half, half); in operator ()()
93 CoordinateType v2 = put_in_range(c2, -half, half); in operator ()()
96 // at max <= half a circle away from each other. in operator ()()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/
H A Dselftest_ring.c1 // SPDX-License-Identifier: GPL-2.0
14 kref_init(&ring->ref); in mock_ring()
15 ring->size = sz; in mock_ring()
16 ring->wrap = BITS_PER_TYPE(ring->size) - ilog2(sz); in mock_ring()
17 ring->effective_size = sz; in mock_ring()
18 ring->vaddr = (void *)(ring + 1); in mock_ring()
19 atomic_set(&ring->pin_count, 1); in mock_ring()
39 result = -1; in check_ring_direction()
46 return -EINVAL; in check_ring_direction()
60 err |= check_ring_direction(ring, prev, next, -1); in check_ring_step()
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/lpc10/
H A Dvoicin.c17 /* -- translated by f2c (version 19951025).
19 -lf2c -lm (in that order)
24 extern int voicin_(integer *vwin, real *inbuf, real *lpbuf, integer *buflim, integer *half, real *m…
66 /* VSTATE when HALF .EQ. 1, rather than a garbage value that could change */
117 /* Voicing Detection (VOICIN) makes voicing decisions for each half */
119 /* in the future (2F) for each half frame. These decisions are carried */
122 /* decisions for each half frame. */
126 /* AMDF windowed maximum-to-minimum ratio, the zero crossing rate, energy*/
134 /* (VALUE). The VDC vector is 2-dimensional, each row vector is optimized*/
135 /* for a particular signal-to-noise ratio (SNR). So, before the dot */
[all …]
H A Dvparms.c9 /* -- translated by f2c (version 19951025).
11 -lf2c -lm (in that order)
16 extern int vparms_(integer *vwin, real *inbuf, real *lpbuf, integer *buflim, integer *half, real *d…
41 /* Finishing the job I said I did with the last check-in comments. */
60 /* VWIN - Voicing window limits */
62 /* INBUF - Input speech buffer */
63 /* Indices START-1 through STOP read, */
67 /* LPBUF - Low pass filtered speech */
68 /* Indices START-MINTAU through STOP+MINTAU read, */
71 /* BUFLIM - Array bounds for INBUF and LPBUF */
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/interrupt-controller/
H A Dcirrus,clps711x-intc.txt5 - compatible: Should be "cirrus,ep7209-intc".
6 - reg: Specifies base physical address of the registers set.
7 - interrupt-controller: Identifies the node as an interrupt controller.
8 - #interrupt-cells: Specifies the number of cells needed to encode an
13 ---------------------------
24 12: UTXINT1 UART1 transmit FIFO half empty
25 13: URXINT1 UART1 receive FIFO half full
29 17: SS2RX SSI2 receive FIFO half or greater full
30 18: SS2TX SSI2 transmit FIFO less than half empty
31 28: UTXINT2 UART2 transmit FIFO half empty
[all …]
/OK3568_Linux_fs/u-boot/include/linux/
H A Dmii.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * linux/mii.h: definitions for MII-compatible transceivers
20 #define MII_CTRL1000 0x09 /* 1000BASE-T control */
21 #define MII_STAT1000 0x0a /* 1000BASE-T status */
27 #define MII_NWAYTEST 0x14 /* N-way auto-neg test reg */
52 #define BMSR_ERCAP 0x0001 /* Ext-reg capability */
55 #define BMSR_ANEGCAPABLE 0x0008 /* Able to do auto-negotiation */
57 #define BMSR_ANEGCOMPLETE 0x0020 /* Auto-negotiation complete */
60 #define BMSR_100HALF2 0x0200 /* Can do 100BASE-T2 HDX */
61 #define BMSR_100FULL2 0x0400 /* Can do 100BASE-T2 FDX */
[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/include/linux/
H A Dmii.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * linux/mii.h: definitions for MII-compatible transceivers
23 #define MII_CTRL1000 0x09 /* 1000BASE-T control */
24 #define MII_STAT1000 0x0a /* 1000BASE-T status */
30 #define MII_NWAYTEST 0x14 /* N-way auto-neg test reg */
55 #define BMSR_ERCAP 0x0001 /* Ext-reg capability */
58 #define BMSR_ANEGCAPABLE 0x0008 /* Able to do auto-negotiation */
60 #define BMSR_ANEGCOMPLETE 0x0020 /* Auto-negotiation complete */
63 #define BMSR_100HALF2 0x0200 /* Can do 100BASE-T2 HDX */
64 #define BMSR_100FULL2 0x0400 /* Can do 100BASE-T2 FDX */
[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/include/linux/
H A Dmii.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * linux/mii.h: definitions for MII-compatible transceivers
23 #define MII_CTRL1000 0x09 /* 1000BASE-T control */
24 #define MII_STAT1000 0x0a /* 1000BASE-T status */
30 #define MII_NWAYTEST 0x14 /* N-way auto-neg test reg */
55 #define BMSR_ERCAP 0x0001 /* Ext-reg capability */
58 #define BMSR_ANEGCAPABLE 0x0008 /* Able to do auto-negotiation */
60 #define BMSR_ANEGCOMPLETE 0x0020 /* Auto-negotiation complete */
63 #define BMSR_100HALF2 0x0200 /* Can do 100BASE-T2 HDX */
64 #define BMSR_100FULL2 0x0400 /* Can do 100BASE-T2 FDX */
[all …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.t1040-l2switch6 VSC9953 is an 8-port Gigabit Ethernet switch supports the following features:
7 - 8192 MAC addresses
8 - Static Address provisioning
9 - Dynamic learning of MAC addresses and aging
10 - 4096 VLANs
11 - Independent and shared VLAN learning (IVL, SVL)
12 - Policing with storm control and MC/BC protection
13 - IPv4 and IPv6 multicast
14 - Jumbo frames (9.6 KB)
15 - Access Control List
[all …]
/OK3568_Linux_fs/kernel/drivers/media/usb/stk1160/
H A Dstk1160-reg.h1 /* SPDX-License-Identifier: GPL-2.0-or-later */
6 * <elezegarcia--a.t--gmail.com>
10 * <rmthomas--a.t--sciolus.org>
19 /* Power-on Strapping Data */
39 * Bit 0 - Horizontal Decimation Control
42 * Bit 1 - Decimates Half or More Column
43 * 0 Decimates less than half from original column,
45 * 1 Decimates half or more from original column,
47 * Bit 2 - Vertical Decimation Control
50 * Bit 3 - Vertical Greater or Equal to Half
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/itemview_transitions/
H A Dmain.qml14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
138 yScale: -1
143 strokeWidth: -1
146 property real half: e1.width * 0.5
151 property point top: Qt.point(center.x, center.y - half )
152 property point bottomLeft: Qt.point(center.x - half, center.y + half )
153 property point bottomRight: Qt.point(center.x + half, center.y + half )
156 startY: center.y + half
161 PathLine { x: c_sp1.center.x; y: c_sp1.center.y + c_sp1.half }
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/8390/
H A Dstnic.c1 /* stnic.c : A SH7750 specific part of driver for NS DP83902A ST-NIC.
21 #include <mach-se/mach/se.h>
32 #define half unsigned short macro
100 *(vhalf *) (PA_83902 + ((reg) << 1)) = ((half) (val) << 8); in STNIC_WRITE()
112 return -ENODEV; in stnic_probe()
117 return -ENOMEM; in stnic_probe()
123 dev->dev_addr[i] = stnic_eadr[i]; in stnic_probe()
126 dev->base_addr = 0x1000; in stnic_probe()
127 dev->irq = IRQ_STNIC; in stnic_probe()
128 dev->netdev_ops = &ei_netdev_ops; in stnic_probe()
[all …]
/OK3568_Linux_fs/kernel/Documentation/input/devices/
H A Drotary-encoder.rst2 rotary-encoder - a generic driver for GPIO connected devices
8 --------
11 peripherals with two wires. The outputs are phase-shifted by 90 degrees
16 a stable state with both outputs high (half-period mode) and some have
17 a stable state in all steps (quarter-period mode).
33 |<-------->|
36 |<-->|
37 one step (half-period mode)
40 one step (quarter-period mode)
47 ----------------------
[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/include/linux/dvb/
H A Dosd.h1 /* SPDX-License-Identifier: LGPL-2.1+ WITH Linux-syscall-note */
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
31 // All functions return -2 on "not open"
37 // returns 0 on success, -1 on DRAM allocation error, -2 on "already open"
57 // returns 0 on success, -1 on error
62 // R,G,B, and a opacity value: 0->transparent, 1..254->mix, 255->pixel
68 // returns 0 on success, -1 on error
70 // returns color number of pixel <x>,<y>, or -1
73 // returns 0 on success, -1 on clipping all pixel (no pixel drawn)
78 // returns 0 on success, -1 on clipping all pixel
[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/include/linux/dvb/
H A Dosd.h1 /* SPDX-License-Identifier: LGPL-2.1+ WITH Linux-syscall-note */
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
31 // All functions return -2 on "not open"
37 // returns 0 on success, -1 on DRAM allocation error, -2 on "already open"
57 // returns 0 on success, -1 on error
62 // R,G,B, and a opacity value: 0->transparent, 1..254->mix, 255->pixel
68 // returns 0 on success, -1 on error
70 // returns color number of pixel <x>,<y>, or -1
73 // returns 0 on success, -1 on clipping all pixel (no pixel drawn)
78 // returns 0 on success, -1 on clipping all pixel
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/atheros/atlx/
H A Datlx.h1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* atlx_hw.h -- common hardware definitions for Attansic network drivers
4 * Copyright(c) 2005 - 2006 Attansic Corporation. All rights reserved.
5 * Copyright(c) 2006 - 2007 Chris Snook <csnook@redhat.com>
6 * Copyright(c) 2006 - 2008 Jay Cliburn <jcliburn@gmail.com>
10 * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
149 /* IRQ Anti-Lost Timer Initial Value Register */
228 /* MAC Half-Duplex Control Register */
246 /* Wake-On-Lan control register */
303 #define MII_CR_FULL_DUPLEX 0x0100 /* FDX =1, half duplex =0 */
[all …]
/OK3568_Linux_fs/kernel/include/uapi/linux/dvb/
H A Dosd.h1 /* SPDX-License-Identifier: LGPL-2.1+ WITH Linux-syscall-note */
3 * osd.h - DEPRECATED On Screen Display API
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
33 /* All functions return -2 on "not open" */
42 * returns 0 on success, -1 on DRAM allocation error, -2 on "already open"
72 * returns 0 on success, -1 on error
79 * R,G,B, and a opacity value: 0->transparent, 1..254->mix, 255->pixel
89 * returns 0 on success, -1 on error
92 /* returns color number of pixel <x>,<y>, or -1 */
96 * returns 0 on success, -1 on clipping all pixel (no pixel drawn)
[all …]
/OK3568_Linux_fs/kernel/drivers/soc/ixp4xx/
H A Dixp4xx-qmgr.c1 // SPDX-License-Identifier: GPL-2.0-only
20 static u32 used_sram_bitmap[4]; /* 128 16-dword pages */
36 __raw_writel(val, &qmgr_regs->acc[queue][0]); in qmgr_put_entry()
42 val = __raw_readl(&qmgr_regs->acc[queue][0]); in qmgr_get_entry()
54 return (__raw_readl(&qmgr_regs->stat1[queue >> 3]) in __qmgr_get_stat1()
61 return (__raw_readl(&qmgr_regs->stat2[queue >> 4]) in __qmgr_get_stat2()
66 * qmgr_stat_empty() - checks if a hardware queue is empty
69 * Returns non-zero value if the queue is empty.
78 * qmgr_stat_below_low_watermark() - checks if a queue is below low watermark
81 * Returns non-zero value if the queue is below low watermark.
[all …]

12345678910>>...43