Searched refs:NR_CPUS (Results 1 – 25 of 30) sorted by relevance
12
/external/kernel-headers/original/linux/ |
D | cpumask.h | 88 typedef struct { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; 103 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS) 109 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS) 124 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS) 131 #define cpus_or(dst, src1, src2) __cpus_or(&(dst), &(src1), &(src2), NR_CPUS) 138 #define cpus_xor(dst, src1, src2) __cpus_xor(&(dst), &(src1), &(src2), NR_CPUS) 146 __cpus_andnot(&(dst), &(src1), &(src2), NR_CPUS) 153 #define cpus_complement(dst, src) __cpus_complement(&(dst), &(src), NR_CPUS) 160 #define cpus_equal(src1, src2) __cpus_equal(&(src1), &(src2), NR_CPUS) 167 #define cpus_intersects(src1, src2) __cpus_intersects(&(src1), &(src2), NR_CPUS) [all …]
|
D | blockgroup_lock.h | 18 #if NR_CPUS >= 32 20 #elif NR_CPUS >= 16 22 #elif NR_CPUS >= 8 24 #elif NR_CPUS >= 4 26 #elif NR_CPUS >= 2
|
D | percpu_counter.h | 23 #if NR_CPUS >= 16 24 #define FBC_BATCH (NR_CPUS*2) 26 #define FBC_BATCH (NR_CPUS*4)
|
D | threads.h | 17 #define NR_CPUS CONFIG_NR_CPUS macro 19 #define NR_CPUS 1 macro
|
D | percpu.h | 21 void *ptrs[NR_CPUS];
|
D | mmzone.h | 158 struct per_cpu_pageset *pageset[NR_CPUS]; 160 struct per_cpu_pageset pageset[NR_CPUS];
|
D | relay.h | 66 struct rchan_buf *buf[NR_CPUS]; /* per-cpu channel buffers */
|
D | module.h | 320 struct module_ref ref[NR_CPUS];
|
/external/oprofile/libop/ |
D | op_config_24.h | 74 #ifndef NR_CPUS 76 #define NR_CPUS 32 macro
|
/external/kernel-headers/original/asm-mips/ |
D | smp.h | 29 extern int __cpu_number_map[NR_CPUS]; 33 extern int __cpu_logical_map[NR_CPUS];
|
D | fixmap.h | 51 FIX_CMAP_END = FIX_CMAP_BEGIN + (FIX_N_COLOURS * NR_CPUS), 58 FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
|
D | mmu.h | 4 typedef unsigned long mm_context_t[NR_CPUS];
|
/external/oprofile/daemon/liblegacy/ |
D | opd_image.h | 33 struct opd_24_sfile ** sfiles[NR_CPUS];
|
D | opd_sample_files.c | 170 for (j = 0; j < NR_CPUS; ++j) { in opd_close_image_samples_files()
|
D | opd_image.c | 155 memset(image->sfiles, '\0', NR_CPUS * sizeof(struct opd_24_sfile **)); in opd_new_image()
|
/external/iptables/extensions/ |
D | libxt_cpu.man | 3 Match cpu handling this packet. cpus are numbered from 0 to NR_CPUS-1
|
/external/kernel-headers/original/asm-generic/ |
D | percpu.h | 8 extern unsigned long __per_cpu_offset[NR_CPUS];
|
/external/oprofile/module/ |
D | oprofile.h | 145 extern struct _oprof_data oprof_data[NR_CPUS];
|
D | oprofile.c | 45 static u32 oprof_ready[NR_CPUS] __cacheline_aligned_in_smp; 46 struct _oprof_data oprof_data[NR_CPUS] __cacheline_aligned;
|
/external/kernel-headers/original/asm-x86/ |
D | fixmap_32.h | 80 FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
|
D | mpspec_32.h | 11 extern int quad_local_to_mp_bus_id [NR_CPUS/4][4];
|
D | voyager.h | 486 extern struct voyager_qic_cpi *voyager_quad_cpi_addr[NR_CPUS];
|
/external/oprofile/module/x86/ |
D | op_apic.c | 79 static uint saved_lvtpc[NR_CPUS];
|
D | op_nmi.c | 18 static struct op_msrs cpu_msrs[NR_CPUS];
|
/external/kernel-headers/original/linux/netfilter/ |
D | x_tables.h | 288 char *entries[NR_CPUS];
|
12