| /linux/drivers/pci/hotplug/ |
| H A D | ibmphp_pci.c | 342 int count; in configure_device() local 355 for (count = 0; address[count]; count++) { /* for 6 BARs */ in configure_device() 362 PCI_BASE_ADDRESS_0 + 4 * count, &tmp); in configure_device() 365 PCI_BASE_ADDRESS_0 + 4 * count, 0xFFFFFFFD); in configure_device() 368 PCI_BASE_ADDRESS_0 + 4 * count, 0xFFFFFFFF); in configure_device() 370 pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFF); in configure_device() 371 pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]); in configure_device() 373 if (!bar[count]) /* This BAR is not implemented */ in configure_device() 376 debug("Device %x BAR %d wants %x\n", func->device, count, bar[count]); in configure_device() 378 if (bar[count] & PCI_BASE_ADDRESS_SPACE_IO) { in configure_device() [all …]
|
| /linux/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 …]
|
| /linux/tools/perf/pmu-events/arch/x86/tigerlake/ |
| H A D | floating-point.json | 12 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 21 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 30 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 43 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 48 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 52 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/rocketlake/ |
| H A D | floating-point.json | 12 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 21 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 30 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 43 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 48 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 52 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/icelakex/ |
| H A D | floating-point.json | 12 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 21 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 30 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 43 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 48 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 52 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/icelake/ |
| H A D | floating-point.json | 12 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 21 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 30 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 43 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 48 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 52 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/drivers/gpu/drm/xe/ |
| H A D | xe_guc_db_mgr.c | 58 weight = bitmap_weight(dbm->bitmap, dbm->count); in __fini_dbm() 63 weight, dbm->count); in __fini_dbm() 69 dbm->count = 0; in __fini_dbm() 77 * @count: number of doorbells to manage 79 * The bare-metal or PF driver can pass ~0 as &count to indicate that all 87 int xe_guc_db_mgr_init(struct xe_guc_db_mgr *dbm, unsigned int count) in xe_guc_db_mgr_init() argument 91 if (count == ~0) in xe_guc_db_mgr_init() 92 count = GUC_NUM_DOORBELLS; in xe_guc_db_mgr_init() 95 dbm_assert(dbm, count <= GUC_NUM_DOORBELLS); in xe_guc_db_mgr_init() 97 if (!count) in xe_guc_db_mgr_init() [all …]
|
| /linux/tools/perf/pmu-events/arch/riscv/andes/ax45/ |
| H A D | instructions.json | 5 "BriefDescription": "Cycle count" 10 "BriefDescription": "Retired instruction count" 15 "BriefDescription": "Integer load instruction count" 20 "BriefDescription": "Integer store instruction count" 25 "BriefDescription": "Atomic instruction count" 30 "BriefDescription": "System instruction count" 35 "BriefDescription": "Integer computational instruction count" 40 "BriefDescription": "Conditional branch instruction count" 45 "BriefDescription": "Taken conditional branch instruction count" 50 "BriefDescription": "JAL instruction count" [all …]
|
| /linux/drivers/staging/media/av7110/ |
| H A D | av7110_ipack.c | 19 p->count = 0; in av7110_ipack_reset() 51 if (p->count < 10) in send_ipack() 54 p->buf[4] = (u8)(((p->count - 6) & 0xff00) >> 8); in send_ipack() 55 p->buf[5] = (u8)((p->count - 6) & 0x00ff); in send_ipack() 63 if (ac3_off < p->count) in send_ipack() 65 p->count - ac3_off, &ai, 0); in send_ipack() 67 nframes = (p->count - off - 3 - ac3_off) / in send_ipack() 72 ac3_off += nframes * ai.framesize - p->count; in send_ipack() 76 p->func(p->buf, p->count, p->data); in send_ipack() 81 p->count = 9; in send_ipack() [all …]
|
| /linux/arch/riscv/include/asm/ |
| H A D | io.h | 68 unsigned int count) \ 71 if (count) { \ 77 } while (--count); \ 85 unsigned int count) \ 88 if (count) { \ 93 } while (--count); \ 101 #define readsb(addr, buffer, count) __readsb(addr, buffer, count) argument 102 #define readsw(addr, buffer, count) __readsw(addr, buffer, count) argument 103 #define readsl(addr, buffer, count) __readsl(addr, buffer, count) argument 109 #define insb(addr, buffer, count) __insb(PCI_IOBASE + (addr), buffer, count) argument [all …]
|
| /linux/lib/ |
| H A D | percpu_counter.c | 70 fbc->count = amount; in percpu_counter_set() 95 s64 count; in percpu_counter_add_batch() local 98 count = this_cpu_read(*fbc->counters); in percpu_counter_add_batch() 100 if (unlikely(abs(count + amount) >= batch)) { in percpu_counter_add_batch() 106 count = __this_cpu_read(*fbc->counters); in percpu_counter_add_batch() 107 fbc->count += count + amount; in percpu_counter_add_batch() 108 __this_cpu_sub(*fbc->counters, count); in percpu_counter_add_batch() 112 } while (!this_cpu_try_cmpxchg(*fbc->counters, &count, count + amount)); in percpu_counter_add_batch() 122 s64 count; in percpu_counter_add_batch() local 126 count = __this_cpu_read(*fbc->counters) + amount; in percpu_counter_add_batch() [all …]
|
| /linux/drivers/platform/chrome/ |
| H A D | cros_ec_sysfs.c | 28 int count = 0; in reboot_show() local 30 count += sysfs_emit_at(buf, count, in reboot_show() 32 count += sysfs_emit_at(buf, count, " [at-shutdown]\n"); in reboot_show() 33 return count; in reboot_show() 38 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 …]
|
| /linux/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 …]
|
| /linux/tools/perf/pmu-events/arch/x86/sapphirerapids/ |
| H A D | floating-point.json | 77 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 81 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 86 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 90 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 95 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 99 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 104 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 108 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 113 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 117 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/emeraldrapids/ |
| H A D | floating-point.json | 77 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 81 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 86 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 90 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 95 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 99 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 104 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 108 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 113 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 117 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/graniterapids/ |
| H A D | floating-point.json | 77 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 81 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 86 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 90 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 95 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 99 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 104 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 108 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 113 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 117 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/drivers/net/wireless/broadcom/b43legacy/ |
| H A D | sysfs.c | 25 static int get_integer(const char *buf, size_t count) in get_integer() argument 30 if (count == 0) in get_integer() 32 count = min_t(size_t, count, 10); in get_integer() 33 memcpy(tmp, buf, count); in get_integer() 41 static int get_boolean(const char *buf, size_t count) in get_boolean() argument 43 if (count != 0) { in get_boolean() 48 if (count >= 4 && memcmp(buf, "true", 4) == 0) in get_boolean() 50 if (count >= 5 && memcmp(buf, "false", 5) == 0) in get_boolean() 52 if (count >= 3 && memcmp(buf, "yes", 3) == 0) in get_boolean() 54 if (count >= 2 && memcmp(buf, "no", 2) == 0) in get_boolean() [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/skylakex/ |
| H A D | floating-point.json | 7 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 43 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… 48 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 52 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 57 …count twice as noted below. Each count represents 16 computation operations, one for each element… 61 …count twice as noted below. Each count represents 16 computation operations, one for each element… [all …]
|
| /linux/arch/sparc/lib/ |
| H A D | PeeCeeI.c | 13 void outsb(unsigned long __addr, const void *src, unsigned long count) in outsb() argument 18 while (count--) in outsb() 23 void outsw(unsigned long __addr, const void *src, unsigned long count) in outsw() argument 27 while (count--) { in outsw() 34 void outsl(unsigned long __addr, const void *src, unsigned long count) in outsl() argument 39 if (!count) in outsl() 45 while (count--) { in outsl() 52 while (count--) { in outsl() 64 while (count--) { in outsl() 76 while (count--) { in outsl() [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/cascadelakex/ |
| H A D | floating-point.json | 7 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 43 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… 48 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 52 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 57 …count twice as noted below. Each count represents 16 computation operations, one for each element… 61 …count twice as noted below. Each count represents 16 computation operations, one for each element… [all …]
|
| /linux/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, \ 76 size_t count, in aqm_read() argument 109 return simple_read_from_buffer(user_buf, count, ppos, in aqm_read() 115 size_t count, in aqm_write() argument 121 if (count >= sizeof(buf)) in aqm_write() 124 if (copy_from_user(buf, user_buf, count)) in aqm_write() 127 if (count && buf[count - 1] == '\n') in aqm_write() [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/broadwellx/ |
| H A D | floating-point.json | 3 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 7 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 12 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 21 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 30 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 43 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/broadwellde/ |
| H A D | floating-point.json | 3 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 7 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 12 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 21 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 30 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 43 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/broadwell/ |
| H A D | floating-point.json | 3 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 7 …count twice as noted below. Each count represents 2 computation operations, one for each element.… 12 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 16 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 21 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 25 …count twice as noted below. Each count represents 4 computation operations, one for each element.… 30 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 34 …count twice as noted below. Each count represents 8 computation operations, one for each element.… 39 …count twice as noted below. Each count represents 2 or/and 4 computation operations, 1 for each e… 43 …count twice as noted below. Each count represents 2 or/and 4 computation operations, one for each… [all …]
|
| /linux/scripts/coccinelle/api/ |
| H A D | kmalloc_objs.cocci | 51 expression COUNT; 83 ALLOC_ARRAY(COUNT, (\(sizeof(STRING)\|sizeof(INTEGRAL)\|sizeof(INTEGRAL *)\)), GFP) 85 BYTES = ALLOC_ARRAY(COUNT, (sizeof(E)), GFP) 87 BYTES = ALLOC_ARRAY(COUNT, (sizeof(TYPE)), GFP) 89 BYTES_PTRS = ALLOC_ARRAY(COUNT, (sizeof(E)), GFP) 91 BYTES_PTRS = ALLOC_ARRAY(COUNT, (sizeof(TYPE)), GFP) 93 ALLOC_ARRAY((\(sizeof(STRING)\|sizeof(INTEGRAL)\|sizeof(INTEGRAL *)\)), COUNT, GFP) 95 BYTES = ALLOC_ARRAY((sizeof(E)), COUNT, GFP) 97 BYTES = ALLOC_ARRAY((sizeof(TYPE)), COUNT, GFP) 99 BYTES_PTRS = ALLOC_ARRAY((sizeof(E)), COUNT, GFP) [all …]
|