| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/ |
| H A D | tst_geocoding.qml | 71 compare (querySpy.count, 0) 73 compare (querySpy.count, 1) 76 compare (querySpy.count, 1) 80 compare (querySpy.count, 2) 83 compare (querySpy.count, 2) 87 compare (querySpy.count, 3) 90 compare (querySpy.count, 3) 94 compare (limitSpy.count, 0) 95 compare (offsetSpy.count, 0) 99 compare (limitSpy.count, 1) [all …]
|
| H A D | tst_routing.qml | 97 compare(mapRouteRouteSpy.count, 0) 98 compare(mapRouteColorSpy.count, 0) 99 compare(mapRouteDetailLevelSpy.count, 0) 103 compare(mapRouteRouteSpy.count, 0) 104 compare(mapRouteColorSpy.count, 1) 105 compare(mapRouteDetailLevelSpy.count, 1) 108 compare(mapRouteColorSpy.count, 1) 109 compare(mapRouteDetailLevelSpy.count, 1) 111 compare(mapRouteRouteSpy.count, 1) 114 compare(mapRouteWidthSpy.count, 0) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/ |
| H A D | tst_map_mouse.qml | 256 compare(mouseUpperEnabledChangedSpy.count, 1) 257 compare(mouseUpperClickedSpy.count, 0) 259 compare(mouseUpperClickedSpy.count, 0) 262 tryCompare(mouseUpperClickedSpy, "count", 1) 263 compare(mouseUpperEnabledChangedSpy.count, 2) 265 compare(mouseOverlapperClickedSpy.count, 0) 267 tryCompare(mouseUpperClickedSpy, "count", 1) 268 compare(mouseOverlapperClickedSpy.count, 1) 270 compare(mouseOverlapperEnabledChangedSpy.count, 1) 273 tryCompare(mouseOverlapperClickedSpy, "count", 1) [all …]
|
| H A D | tst_map_item.qml | 286 tryCompare(preMapRectClicked, "count", 1) 288 tryCompare(preMapRectClicked, "count", 1) 289 compare(preMapCircleClicked.count, 0) 296 tryCompare(preMapCircleClicked, "count", 1) 297 compare(preMapRectClicked.count, 1) 302 tryCompare(preMapRectClicked, "count", 2) 303 compare(preMapCircleClicked.count, 1) 306 compare(preMapQuickItemClicked.count, 0) 311 tryCompare(preMapQuickItemClicked, "count", 1) 314 compare (preMapPolygonClicked.count, 0) [all …]
|
| /OK3568_Linux_fs/kernel/arch/alpha/kernel/ |
| H A D | io.c | 258 * Read COUNT 8-bit bytes from port PORT into memory starting at SRC. 260 void ioread8_rep(const void __iomem *port, void *dst, unsigned long count) in ioread8_rep() argument 263 if (!count) in ioread8_rep() 265 count--; in ioread8_rep() 270 while (count >= 4) { in ioread8_rep() 272 count -= 4; in ioread8_rep() 281 while (count) { in ioread8_rep() 282 --count; in ioread8_rep() 288 void insb(unsigned long port, void *dst, unsigned long count) in insb() argument 290 ioread8_rep(ioport_map(port, 1), dst, count); in insb() [all …]
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | lockref.c | 38 * lockref_get - Increments reference count unconditionally 42 * to the object, so you know the count cannot be zero. 47 new.count++; in lockref_get() 53 lockref->count++; in lockref_get() 59 * lockref_get_not_zero - Increments count unless the count is 0 or dead 61 * Return: 1 if count updated successfully or 0 if count was zero 68 new.count++; in lockref_get_not_zero() 69 if (old.count <= 0) in lockref_get_not_zero() 77 if (lockref->count > 0) { in lockref_get_not_zero() 78 lockref->count++; in lockref_get_not_zero() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/pci/hotplug/ |
| H A D | ibmphp_pci.c | 343 int count; in configure_device() local 356 for (count = 0; address[count]; count++) { /* for 6 BARs */ in configure_device() 363 PCI_BASE_ADDRESS_0 + 4 * count, &tmp); in configure_device() 366 PCI_BASE_ADDRESS_0 + 4 * count, 0xFFFFFFFD); in configure_device() 369 PCI_BASE_ADDRESS_0 + 4 * count, 0xFFFFFFFF); in configure_device() 371 pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFF); in configure_device() 372 pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]); in configure_device() 374 if (!bar[count]) /* This BAR is not implemented */ in configure_device() 377 debug("Device %x BAR %d wants %x\n", func->device, count, bar[count]); in configure_device() 379 if (bar[count] & PCI_BASE_ADDRESS_SPACE_IO) { in configure_device() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-bus-counter | 1 What: /sys/bus/counter/devices/counterX/countY/count 5 Count data of Count Y represented as a string. 11 Count value ceiling for Count Y. This is the upper limit for the 18 Count value floor for Count Y. This is the lower limit for the 25 Count mode for channel Y. The ceiling and floor values for 26 Count Y are used by the count mode where required. The following 27 count modes are available: 35 the Count Y ceiling value, while the lower limit is set 36 to the Count Y floor value. The counter freezes at 37 count = ceiling when counting up, and at count = floor [all …]
|
| /OK3568_Linux_fs/kernel/drivers/tty/ |
| H A D | tty_ldsem.c | 12 * 1) Upper half of semaphore count is a wait count (differs from rwsem 67 atomic_long_set(&sem->count, LDSEM_UNLOCKED); in __init_ldsem() 78 long adjust, count; in __ldsem_wake_readers() local 82 * Note the 'active part' of the count is incremented by in __ldsem_wake_readers() 86 count = atomic_long_add_return(adjust, &sem->count); in __ldsem_wake_readers() 88 if (count > 0) in __ldsem_wake_readers() 90 if (atomic_long_try_cmpxchg(&sem->count, &count, count - adjust)) in __ldsem_wake_readers() 107 * Only wake this writer if the active part of the count can be in writer_trylock() 110 long count = atomic_long_add_return(LDSEM_ACTIVE_BIAS, &sem->count); in writer_trylock() local 112 if ((count & LDSEM_ACTIVE_MASK) == LDSEM_ACTIVE_BIAS) in writer_trylock() [all …]
|
| /OK3568_Linux_fs/kernel/arch/parisc/lib/ |
| H A D | io.c | 19 void memcpy_toio(volatile void __iomem *dst, const void *src, int count) in memcpy_toio() argument 26 count--; in memcpy_toio() 28 while (count > 3) { in memcpy_toio() 32 count -= 4; in memcpy_toio() 35 while (count--) { in memcpy_toio() 54 void memcpy_fromio(void *dst, const volatile void __iomem *src, int count) in memcpy_fromio() argument 57 if ( (((unsigned long)dst ^ (unsigned long)src) & 1) || (count < 2) ) in memcpy_fromio() 60 if ( (((unsigned long)dst ^ (unsigned long)src) & 2) || (count < 4) ) in memcpy_fromio() 68 count--; in memcpy_fromio() 69 if (count < 2) goto bytecopy; in memcpy_fromio() [all …]
|
| /OK3568_Linux_fs/kernel/tools/usb/ |
| H A D | hcd-tests.sh | 32 declare -i COUNT BUFLEN 34 COUNT=50000 51 if ! ./testusb $TEST_ARGS -s $BUFLEN -c $COUNT $* 2>/dev/null 95 COUNT=5000 98 # FIXME automatically multiply COUNT by 10 when 101 # COUNT=50000 126 echo "test 1: $COUNT transfers, same size" 128 echo "test 3: $COUNT transfers, variable/short size" 131 COUNT=100 132 echo "test 17: $COUNT transfers, unaligned DMA map by core" [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/ttpci/ |
| H A D | av7110_ipack.c | 20 p->count = 0; in av7110_ipack_reset() 56 if (p->count < 10) in send_ipack() 59 p->buf[4] = (u8)(((p->count - 6) & 0xff00) >> 8); in send_ipack() 60 p->buf[5] = (u8)((p->count - 6) & 0x00ff); in send_ipack() 68 if (ac3_off < p->count) in send_ipack() 70 p->count - ac3_off, &ai, 0); in send_ipack() 72 nframes = (p->count - off - 3 - ac3_off) / in send_ipack() 77 ac3_off += nframes * ai.framesize - p->count; in send_ipack() 81 p->func(p->buf, p->count, p->data); in send_ipack() 86 p->count = 9; in send_ipack() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/include/asm/mach-generic/ |
| H A D | ide.h | 60 unsigned int count) in __ide_insw() argument 63 insw(port, addr, count); in __ide_insw() 64 __ide_flush_dcache_range((unsigned long)addr, count * 2); in __ide_insw() 68 static inline void __ide_insl(unsigned long port, void *addr, unsigned int count) in __ide_insl() argument 71 insl(port, addr, count); in __ide_insl() 72 __ide_flush_dcache_range((unsigned long)addr, count * 4); in __ide_insl() 77 unsigned long count) in __ide_outsw() argument 80 outsw(port, addr, count); in __ide_outsw() 81 __ide_flush_dcache_range((unsigned long)addr, count * 2); in __ide_outsw() 86 unsigned long count) in __ide_outsl() argument [all …]
|
| /OK3568_Linux_fs/kernel/include/trace/events/ |
| H A D | cma.h | 14 unsigned int count, unsigned int align), 16 TP_ARGS(name, pfn, page, count, align), 22 __field(unsigned int, count) 30 __entry->count = count; 34 TP_printk("name=%s pfn=%lx page=%p count=%u align=%u", 38 __entry->count, 45 unsigned int count), 47 TP_ARGS(name, pfn, page, count), 53 __field(unsigned int, count) 60 __entry->count = count; [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/ |
| H A D | generic-counter.rst | 33 Association of a Signal, and evaluation trigger, with a Count. 35 * Count: 41 evaluated by the counter to determine the count data; e.g. a quadrature 58 A Synapse represents the association of a Signal with a Count. Signal 59 data affects respective Count data, and the Synapse represents this 63 triggers the respective Count's count function evaluation to update the 64 count data. The Generic Counter interface provides the following 68 Signal does not trigger the count function. In Pulse-Direction count 80 A counter is defined as a set of input signals associated with count 82 input signals as defined by the respective count functions. Within the [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/mdp5/ |
| H A D | mdp5_cfg.c | 20 .count = 1, 34 .count = 5, 39 .count = 3, 48 .count = 3, 56 .count = 2, 63 .count = 5, 82 .count = 3, 86 .count = 3, 104 .count = 1, 118 .count = 5, [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/icelake/ |
| H A D | floating-point.json | 16 …count twice as noted below. Each count represents 1 computational operation. Applies to SSE* and … 23 …count twice as noted below. Each count represents 1 computation. Applies to SSE* and AVX* scalar … 27 …count twice as noted below. Each count represents 1 computational operation. Applies to SSE* and … 34 …count twice as noted below. Each count represents 1 computation. Applies to SSE* and AVX* scalar … 38 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 45 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 49 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 56 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 60 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 67 …count twice as noted below. Each count represents 4 computation operations, one for each element.… [all …]
|
| /OK3568_Linux_fs/kernel/drivers/platform/chrome/ |
| H A D | cros_ec_sysfs.c | 28 int count = 0; in reboot_show() local 30 count += scnprintf(buf + count, PAGE_SIZE - count, in reboot_show() 32 count += scnprintf(buf + count, PAGE_SIZE - count, in reboot_show() 34 return count; in reboot_show() 39 const char *buf, size_t count) in reboot_store() argument 94 count = -EINVAL; in reboot_store() 104 count = ret; in reboot_store() 107 return count; in reboot_store() 119 int count = 0; in version_show() local 133 count = ret; in version_show() [all …]
|
| /OK3568_Linux_fs/kernel/arch/riscv/include/asm/ |
| H A D | io.h | 77 unsigned int count) \ 80 if (count) { \ 86 } while (--count); \ 94 unsigned int count) \ 97 if (count) { \ 102 } while (--count); \ 110 #define readsb(addr, buffer, count) __readsb(addr, buffer, count) argument 111 #define readsw(addr, buffer, count) __readsw(addr, buffer, count) argument 112 #define readsl(addr, buffer, count) __readsl(addr, buffer, count) argument 117 #define insb(addr, buffer, count) __insb(PCI_IOBASE + (addr), buffer, count) argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/pcmcia/ |
| H A D | nsp_io.h | 70 unsigned long count) in nsp_multi_read_1() argument 72 insb(BaseAddr + Register, buf, count); in nsp_multi_read_1() 77 unsigned long count) in nsp_fifo8_read() argument 79 /*nsp_dbg(NSP_DEBUG_DATA_IO, "buf=0x%p, count=0x%lx", buf, count);*/ in nsp_fifo8_read() 80 nsp_multi_read_1(base, FIFODATA, buf, count); in nsp_fifo8_read() 89 unsigned long count) in nsp_multi_read_2() argument 91 insw(BaseAddr + Register, buf, count); in nsp_multi_read_2() 96 unsigned long count) in nsp_fifo16_read() argument 98 //nsp_dbg(NSP_DEBUG_DATA_IO, "buf=0x%p, count=0x%lx*2", buf, count); in nsp_fifo16_read() 99 nsp_multi_read_2(base, FIFODATA, buf, count); in nsp_fifo16_read() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/focaltech_touch_ft5436/ |
| H A D | focaltech_ex_fun.c | 85 struct file *filp, const char __user *buff, size_t count, loff_t *ppos) in fts_debug_write() argument 89 int buflen = count; in fts_debug_write() 97 FTS_ERROR("apk proc wirte count(%d>%d) fail", buflen, (int)PAGE_SIZE); in fts_debug_write() 211 struct file *filp, char __user *buff, size_t count, loff_t *ppos) in fts_debug_read() argument 215 int buflen = count; in fts_debug_read() 222 FTS_ERROR("apk proc read count(%d>%d) fail", buflen, (int)PAGE_SIZE); in fts_debug_read() 298 int buflen = count; in fts_debug_write() 306 FTS_ERROR("apk proc wirte count(%d>%d) fail", buflen, (int)PAGE_SIZE); in fts_debug_write() 420 char *page, char **start, off_t off, int count, int *eof, void *data ) in fts_debug_read() argument 424 int buflen = count; in fts_debug_read() [all …]
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | debugfs.c | 20 int mac80211_format_buffer(char __user *userbuf, size_t count, in mac80211_format_buffer() argument 31 return simple_read_from_buffer(userbuf, count, ppos, buf, res); in mac80211_format_buffer() 36 size_t count, loff_t *ppos) \ 40 return mac80211_format_buffer(userbuf, count, ppos, \ 77 size_t count, in aqm_read() argument 112 return simple_read_from_buffer(user_buf, count, ppos, in aqm_read() 118 size_t count, in aqm_write() argument 124 if (count >= sizeof(buf)) in aqm_write() 127 if (copy_from_user(buf, user_buf, count)) in aqm_write() 130 if (count && buf[count - 1] == '\n') in aqm_write() [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm64/lib/ |
| H A D | memset.S | 30 count .req x2 label 53 cmp count, #15 56 tbz count, #3, 1f 59 tbz count, #2, 2f 62 tbz count, #1, 3f 65 tbz count, #0, 4f 76 * The count is not less than 16, we can use stp to store the start 16 bytes, 82 sub count, count, tmp2 89 cmp count, #64 92 ands tmp1, count, #0x30 [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/include/ |
| H A D | rtw_debug.h | 328 ssize_t proc_set_write_reg(struct file *file, const char __user *buffer, size_t count, loff_t *pos,… 330 ssize_t proc_set_read_reg(struct file *file, const char __user *buffer, size_t count, loff_t *pos, … 337 ssize_t proc_set_roam_flags(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 339 ssize_t proc_set_roam_param(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 340 ssize_t proc_set_roam_tgt_addr(struct file *file, const char __user *buffer, size_t count, loff_t *… 346 ssize_t proc_set_scan_param(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 350 ssize_t proc_set_rson_data(struct file *file, const char __user *buffer, size_t count, loff_t *pos,… 353 ssize_t proc_set_survey_info(struct file *file, const char __user *buffer, size_t count, loff_t *po… 358 ssize_t proc_reset_trx_info(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 360 ssize_t proc_set_tx_power_offset(struct file *file, const char __user *buffer, size_t count, loff_t… [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/include/ |
| H A D | rtw_debug.h | 328 ssize_t proc_set_write_reg(struct file *file, const char __user *buffer, size_t count, loff_t *pos,… 330 ssize_t proc_set_read_reg(struct file *file, const char __user *buffer, size_t count, loff_t *pos, … 337 ssize_t proc_set_roam_flags(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 339 ssize_t proc_set_roam_param(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 340 ssize_t proc_set_roam_tgt_addr(struct file *file, const char __user *buffer, size_t count, loff_t *… 346 ssize_t proc_set_scan_param(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 350 ssize_t proc_set_rson_data(struct file *file, const char __user *buffer, size_t count, loff_t *pos,… 353 ssize_t proc_set_survey_info(struct file *file, const char __user *buffer, size_t count, loff_t *po… 358 ssize_t proc_reset_trx_info(struct file *file, const char __user *buffer, size_t count, loff_t *pos… 360 ssize_t proc_set_tx_power_offset(struct file *file, const char __user *buffer, size_t count, loff_t… [all …]
|