Home
last modified time | relevance | path

Searched refs:z (Results 1 – 200 of 325) sorted by relevance

12

/linux-4.1.27/drivers/zorro/
Dzorro.c53 struct zorro_dev *z; in zorro_find_device() local
58 for (z = from ? from+1 : &zorro_autocon[0]; in zorro_find_device()
59 z < zorro_autocon+zorro_num_autocon; in zorro_find_device()
60 z++) in zorro_find_device()
61 if (id == ZORRO_WILDCARD || id == z->id) in zorro_find_device()
62 return z; in zorro_find_device()
113 struct platform_device *bridge, struct zorro_dev *z) in zorro_find_parent_resource() argument
119 if (zorro_resource_start(z) >= r->start && in zorro_find_parent_resource()
120 zorro_resource_end(z) <= r->end) in zorro_find_parent_resource()
132 struct zorro_dev *z; in amiga_zorro_probe() local
[all …]
Dzorro-driver.c31 const struct zorro_dev *z) in zorro_match_device() argument
34 if (ids->id == ZORRO_WILDCARD || ids->id == z->id) in zorro_match_device()
47 struct zorro_dev *z = to_zorro_dev(dev); in zorro_device_probe() local
49 if (!z->driver && drv->probe) { in zorro_device_probe()
52 id = zorro_match_device(drv->id_table, z); in zorro_device_probe()
54 error = drv->probe(z, id); in zorro_device_probe()
56 z->driver = drv; in zorro_device_probe()
66 struct zorro_dev *z = to_zorro_dev(dev); in zorro_device_remove() local
71 drv->remove(z); in zorro_device_remove()
72 z->driver = NULL; in zorro_device_remove()
[all …]
Dzorro-sysfs.c29 struct zorro_dev *z; \
31 z = to_zorro_dev(dev); \
32 return sprintf(buf, format_string, z->field); \
44 struct zorro_dev *z; in show_serial() local
46 z = to_zorro_dev(dev); in show_serial()
47 return sprintf(buf, "0x%08x\n", be32_to_cpu(z->rom.er_SerialNumber)); in show_serial()
54 struct zorro_dev *z = to_zorro_dev(dev); in zorro_show_resource() local
57 (unsigned long)zorro_resource_start(z), in zorro_show_resource()
58 (unsigned long)zorro_resource_end(z), in zorro_show_resource()
59 zorro_resource_flags(z)); in zorro_show_resource()
[all …]
Dproc.c32 struct zorro_dev *z = PDE_DATA(file_inode(file)); in proc_bus_zorro_read() local
45 cd.cd_Rom = z->rom; in proc_bus_zorro_read()
46 cd.cd_SlotAddr = cpu_to_be16(z->slotaddr); in proc_bus_zorro_read()
47 cd.cd_SlotSize = cpu_to_be16(z->slotsize); in proc_bus_zorro_read()
48 cd.cd_BoardAddr = cpu_to_be32(zorro_resource_start(z)); in proc_bus_zorro_read()
49 cd.cd_BoardSize = cpu_to_be32(zorro_resource_len(z)); in proc_bus_zorro_read()
82 struct zorro_dev *z = &zorro_autocon[slot]; in zorro_seq_show() local
84 seq_printf(m, "%02x\t%08x\t%08lx\t%08lx\t%02x\n", slot, z->id, in zorro_seq_show()
85 (unsigned long)zorro_resource_start(z), in zorro_seq_show()
86 (unsigned long)zorro_resource_len(z), in zorro_seq_show()
[all …]
Dzorro.h3 extern void zorro_name_device(struct zorro_dev *z);
8 extern int zorro_create_sysfs_dev_files(struct zorro_dev *z);
/linux-4.1.27/lib/raid6/
Dsse2.c45 int d, z, z0; in raid6_sse21_gen_syndrome() local
62 for ( z = z0-2 ; z >= 0 ; z-- ) { in raid6_sse21_gen_syndrome()
63 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_sse21_gen_syndrome()
71 asm volatile("movdqa %0,%%xmm6" : : "m" (dptr[z][d])); in raid6_sse21_gen_syndrome()
97 int d, z, z0; in raid6_sse21_xor_syndrome() local
112 for ( z = z0-1 ; z >= start ; z-- ) { in raid6_sse21_xor_syndrome()
118 asm volatile("movdqa %0,%%xmm5" :: "m" (dptr[z][d])); in raid6_sse21_xor_syndrome()
123 for ( z = start-1 ; z >= 0 ; z-- ) { in raid6_sse21_xor_syndrome()
155 int d, z, z0; in raid6_sse22_gen_syndrome() local
174 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_sse22_gen_syndrome()
[all …]
Davx2.c46 int d, z, z0; in raid6_avx21_gen_syndrome() local
63 for (z = z0-2; z >= 0; z--) { in raid6_avx21_gen_syndrome()
64 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_avx21_gen_syndrome()
71 asm volatile("vmovdqa %0,%%ymm6" : : "m" (dptr[z][d])); in raid6_avx21_gen_syndrome()
105 int d, z, z0; in raid6_avx22_gen_syndrome() local
124 for (z = z0-1; z >= 0; z--) { in raid6_avx22_gen_syndrome()
125 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_avx22_gen_syndrome()
126 asm volatile("prefetchnta %0" : : "m" (dptr[z][d+32])); in raid6_avx22_gen_syndrome()
135 asm volatile("vmovdqa %0,%%ymm5" : : "m" (dptr[z][d])); in raid6_avx22_gen_syndrome()
136 asm volatile("vmovdqa %0,%%ymm7" : : "m" (dptr[z][d+32])); in raid6_avx22_gen_syndrome()
[all …]
Dsse1.c49 int d, z, z0; in raid6_sse11_gen_syndrome() local
66 for ( z = z0-2 ; z >= 0 ; z-- ) { in raid6_sse11_gen_syndrome()
67 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_sse11_gen_syndrome()
75 asm volatile("movq %0,%%mm6" : : "m" (dptr[z][d])); in raid6_sse11_gen_syndrome()
108 int d, z, z0; in raid6_sse12_gen_syndrome() local
127 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_sse12_gen_syndrome()
128 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_sse12_gen_syndrome()
137 asm volatile("movq %0,%%mm5" : : "m" (dptr[z][d])); in raid6_sse12_gen_syndrome()
138 asm volatile("movq %0,%%mm7" : : "m" (dptr[z][d+8])); in raid6_sse12_gen_syndrome()
Dmmx.c44 int d, z, z0; in raid6_mmx1_gen_syndrome() local
58 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_mmx1_gen_syndrome()
59 asm volatile("movq %0,%%mm6" : : "m" (dptr[z][d])); in raid6_mmx1_gen_syndrome()
92 int d, z, z0; in raid6_mmx2_gen_syndrome() local
109 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_mmx2_gen_syndrome()
118 asm volatile("movq %0,%%mm5" : : "m" (dptr[z][d])); in raid6_mmx2_gen_syndrome()
119 asm volatile("movq %0,%%mm7" : : "m" (dptr[z][d+8])); in raid6_mmx2_gen_syndrome()
Dint.uc86 int d, z, z0;
96 for ( z = z0-1 ; z >= 0 ; z-- ) {
97 wd$$ = *(unative_t *)&dptr[z][d+$$*NSIZE];
115 int d, z, z0;
126 for ( z = z0-1 ; z >= start ; z-- ) {
127 wd$$ = *(unative_t *)&dptr[z][d+$$*NSIZE];
136 for ( z = start-1 ; z >= 0 ; z-- ) {
Dtilegx.uc54 int d, z, z0;
67 for ( z = z0-1 ; z >= 0 ; z-- ) {
68 wd$$ = *(u64 *)&dptr[z][d+$$*NSIZE];
Dneon.uc56 int d, z, z0;
67 for ( z = z0-1 ; z >= 0 ; z-- ) {
68 wd$$ = vld1q_u8(&dptr[z][d+$$*NSIZE]);
Daltivec.uc72 int d, z, z0;
83 for ( z = z0-1 ; z >= 0 ; z-- ) {
84 wd$$ = *(unative_t *)&dptr[z][d+$$*NSIZE];
/linux-4.1.27/include/linux/
Dzorro.h58 int (*probe)(struct zorro_dev *z, const struct zorro_device_id *id); /* New device inserted */
59 … void (*remove)(struct zorro_dev *z); /* Device removed (NULL if not a hot-plug capable driver) */
73 … zorro_device_id *zorro_match_device(const struct zorro_device_id *ids, const struct zorro_dev *z);
74 static inline struct zorro_driver *zorro_dev_driver(const struct zorro_dev *z) in zorro_dev_driver() argument
76 return z->driver; in zorro_dev_driver()
107 #define zorro_resource_start(z) ((z)->resource.start) argument
108 #define zorro_resource_end(z) ((z)->resource.end) argument
109 #define zorro_resource_len(z) (resource_size(&(z)->resource)) argument
110 #define zorro_resource_flags(z) ((z)->resource.flags) argument
112 #define zorro_request_device(z, name) \ argument
[all …]
Dmmzone.h248 #define min_wmark_pages(z) (z->watermark[WMARK_MIN]) argument
249 #define low_wmark_pages(z) (z->watermark[WMARK_LOW]) argument
250 #define high_wmark_pages(z) (z->watermark[WMARK_HIGH]) argument
794 bool zone_watermark_ok(struct zone *z, unsigned int order,
796 bool zone_watermark_ok_safe(struct zone *z, unsigned int order,
979 struct zoneref *next_zones_zonelist(struct zoneref *z,
1000 struct zoneref *z = next_zones_zonelist(zonelist->_zonerefs, in first_zones_zonelist() local
1002 *zone = zonelist_zone(z); in first_zones_zonelist()
1003 return z; in first_zones_zonelist()
1017 #define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \ argument
[all …]
Dcpuset.h58 static inline int cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask) in cpuset_zone_allowed() argument
60 return cpuset_node_allowed(zone_to_nid(z), gfp_mask); in cpuset_zone_allowed()
174 static inline int cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask) in cpuset_zone_allowed() argument
Ddio.h89 int (*probe)(struct dio_dev *z, const struct dio_device_id *id);
91 …void (*remove)(struct dio_dev *z); /* Device removed (NULL if not a hot-plug capable driver…
249 …t struct dio_device_id *dio_match_device(const struct dio_device_id *ids, const struct dio_dev *z);
Dgfp.h247 enum zone_type z; in gfp_zone() local
250 z = (GFP_ZONE_TABLE >> (bit * ZONES_SHIFT)) & in gfp_zone()
253 return z; in gfp_zone()
Dkernel.h732 #define min3(x, y, z) min((typeof(x))min(x, y), z) argument
733 #define max3(x, y, z) max((typeof(x))max(x, y), z) argument
/linux-4.1.27/crypto/
Dtea.c64 u32 y, z, n, sum = 0; in tea_encrypt() local
71 z = le32_to_cpu(in[1]); in tea_encrypt()
82 y += ((z << 4) + k0) ^ (z + sum) ^ ((z >> 5) + k1); in tea_encrypt()
83 z += ((y << 4) + k2) ^ (y + sum) ^ ((y >> 5) + k3); in tea_encrypt()
87 out[1] = cpu_to_le32(z); in tea_encrypt()
92 u32 y, z, n, sum; in tea_decrypt() local
99 z = le32_to_cpu(in[1]); in tea_decrypt()
111 z -= ((y << 4) + k2) ^ (y + sum) ^ ((y >> 5) + k3); in tea_decrypt()
112 y -= ((z << 4) + k0) ^ (z + sum) ^ ((z >> 5) + k1); in tea_decrypt()
117 out[1] = cpu_to_le32(z); in tea_decrypt()
[all …]
Dcast5_generic.c412 static void key_schedule(u32 *x, u32 *z, u32 *k) in key_schedule() argument
416 #define zi(i) ((z[(i)/4] >> (8*(3-((i)%4)))) & 0xff) in key_schedule()
418 z[0] = x[0] ^ s5[xi(13)] ^ s6[xi(15)] ^ s7[xi(12)] ^ sb8[xi(14)] ^ in key_schedule()
420 z[1] = x[2] ^ s5[zi(0)] ^ s6[zi(2)] ^ s7[zi(1)] ^ sb8[zi(3)] ^ in key_schedule()
422 z[2] = x[3] ^ s5[zi(7)] ^ s6[zi(6)] ^ s7[zi(5)] ^ sb8[zi(4)] ^ in key_schedule()
424 z[3] = x[1] ^ s5[zi(10)] ^ s6[zi(9)] ^ s7[zi(11)] ^ sb8[zi(8)] ^ in key_schedule()
434 x[0] = z[2] ^ s5[zi(5)] ^ s6[zi(7)] ^ s7[zi(4)] ^ sb8[zi(6)] ^ in key_schedule()
436 x[1] = z[0] ^ s5[xi(0)] ^ s6[xi(2)] ^ s7[xi(1)] ^ sb8[xi(3)] ^ in key_schedule()
438 x[2] = z[1] ^ s5[xi(7)] ^ s6[xi(6)] ^ s7[xi(5)] ^ sb8[xi(4)] ^ in key_schedule()
440 x[3] = z[3] ^ s5[xi(10)] ^ s6[xi(9)] ^ s7[xi(11)] ^ sb8[xi(8)] ^ in key_schedule()
[all …]
Dmd4.c48 static inline u32 F(u32 x, u32 y, u32 z) in F() argument
50 return (x & y) | ((~x) & z); in F()
53 static inline u32 G(u32 x, u32 y, u32 z) in G() argument
55 return (x & y) | (x & z) | (y & z); in G()
58 static inline u32 H(u32 x, u32 y, u32 z) in H() argument
60 return x ^ y ^ z; in H()
Dsha512_generic.c26 static inline u64 Ch(u64 x, u64 y, u64 z) in Ch() argument
28 return z ^ (x & (y ^ z)); in Ch()
31 static inline u64 Maj(u64 x, u64 y, u64 z) in Maj() argument
33 return (x & y) | (z & (x | y)); in Maj()
Drmd128.c40 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument
41 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument
42 #define F3(x, y, z) ((x | ~y) ^ z) argument
43 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument
Drmd256.c40 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument
41 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument
42 #define F3(x, y, z) ((x | ~y) ^ z) argument
43 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument
Drmd160.c42 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument
43 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument
44 #define F3(x, y, z) ((x | ~y) ^ z) argument
45 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument
46 #define F5(x, y, z) (x ^ (y | ~z)) argument
Drmd320.c42 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument
43 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument
44 #define F3(x, y, z) ((x | ~y) ^ z) argument
45 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument
46 #define F5(x, y, z) (x ^ (y | ~z)) argument
Dvmac.c192 u64 t1h, t1l, t2h, t2l, t3h, t3l, z = 0; \
204 ADD128(t2h, ah, z, t2l); \
210 ADD128(ah, al, z, t2h); \
330 u64 rh, rl, t, z = 0; in l3hash() local
338 ADD128(p1, p2, z, t); in l3hash()
357 ADD128(t, rl, z, rh); in l3hash()
359 ADD128(t, rl, z, rh); in l3hash()
Dsha256_generic.c30 static inline u32 Ch(u32 x, u32 y, u32 z) in Ch() argument
32 return z ^ (x & (y ^ z)); in Ch()
35 static inline u32 Maj(u32 x, u32 y, u32 z) in Maj() argument
37 return (x & y) | (z & (x | y)); in Maj()
Dtwofish_common.c482 #define CALC_S(a, b, c, d, i, w, x, y, z) \ argument
488 (d) ^= exp_to_poly[tmp + (z)]; \
/linux-4.1.27/sound/pci/emu10k1/
Demufx.c1172 int err, i, z, gpr, nctl; in _snd_emu10k1_audigy_init_efx() local
1474 for (z = 0; z < 5; z++) { in _snd_emu10k1_audigy_init_efx()
1477 controls[nctl + 0].gpr[z * 2 + j] = BASS_GPR + z * 2 + j; in _snd_emu10k1_audigy_init_efx()
1478 controls[nctl + 1].gpr[z * 2 + j] = TREBLE_GPR + z * 2 + j; in _snd_emu10k1_audigy_init_efx()
1481 for (z = 0; z < 4; z++) { /* front/rear/center-lfe/side */ in _snd_emu10k1_audigy_init_efx()
1484 k = 0xb0 + (z * 8) + (j * 4); in _snd_emu10k1_audigy_init_efx()
1485 l = 0xe0 + (z * 8) + (j * 4); in _snd_emu10k1_audigy_init_efx()
1486 d = playback + SND_EMU10K1_PLAYBACK_CHANNELS + z * 2 + j; in _snd_emu10k1_audigy_init_efx()
1504 if (z == 2) /* center */ in _snd_emu10k1_audigy_init_efx()
1513 for (z = 0; z < 8; z++) { in _snd_emu10k1_audigy_init_efx()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/misc/
Dlis302.txt23 - st,click-single-{x,y,z}: if present, tells the device to issue an
25 x/y/z axis.
26 - st,click-double-{x,y,z}: if present, tells the device to issue an
28 x/y/z axis.
29 - st,click-thresh-{x,y,z}: set the x/y/z axis threshold
47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
59 - st,axis-{x,y,z}=: set the axis to map to the three coordinates.
61 - st,{min,max}-limit-{x,y,z} set the min/max limits for x/y/z axis
76 st,click-single-z;
[all …]
/linux-4.1.27/arch/frv/kernel/
Dtraps.c113 unsigned long x, y, z; in atomic_operation() local
120 z = 0; in atomic_operation()
136 ret = get_user(z, p); in atomic_operation()
140 if (z != x) in atomic_operation()
145 if (__get_user(z, p) == 0) { in atomic_operation()
146 if (z != x) in atomic_operation()
165 ret = get_user(z, p); in atomic_operation()
171 if (__get_user(z, p) == 0) { in atomic_operation()
188 ret = get_user(z, p); in atomic_operation()
194 if (__get_user(z, p) == 0) { in atomic_operation()
[all …]
/linux-4.1.27/drivers/net/wan/lmc/
Dlmc_debug.h6 #define LMC_CONSOLE_LOG(x,y,z) lmcConsoleLog((x), (y), (z)) argument
8 #define LMC_CONSOLE_LOG(x,y,z) argument
11 #define LMC_CONSOLE_LOG(x,y,z) argument
43 #define LMC_EVENT_LOG(x, y, z) lmcEventLog((x), (y), (z)) argument
45 #define LMC_EVENT_LOG(x,y,z) argument
/linux-4.1.27/drivers/scsi/
Dzorro7xx.c74 static int zorro7xx_init_one(struct zorro_dev *z, in zorro7xx_init_one() argument
82 board = zorro_resource_start(z); in zorro7xx_init_one()
91 if (!zorro_request_device(z, zdd->name)) { in zorro7xx_init_one()
105 hostdata->base = ioremap(ioaddr, zorro_resource_len(z)); in zorro7xx_init_one()
119 &z->dev); in zorro7xx_init_one()
136 zorro_set_drvdata(z, host); in zorro7xx_init_one()
148 zorro_release_device(z); in zorro7xx_init_one()
153 static void zorro7xx_remove_one(struct zorro_dev *z) in zorro7xx_remove_one() argument
155 struct Scsi_Host *host = zorro_get_drvdata(z); in zorro7xx_remove_one()
163 zorro_release_device(z); in zorro7xx_remove_one()
Deata_pio.c165 unsigned int x, z; in eata_pio_int_handler() local
191 z = 256; in eata_pio_int_handler()
193 while ((cmd->SCp.Status) && ((z > 0) || (odd))) { in eata_pio_int_handler()
199 x = min_t(unsigned int, z, cmd->SCp.this_residual / 2); in eata_pio_int_handler()
201 z -= x; in eata_pio_int_handler()
203 if ((z > 0) && (cmd->SCp.this_residual == 1)) { in eata_pio_int_handler()
207 z--; in eata_pio_int_handler()
211 while (z > 0) { in eata_pio_int_handler()
213 z--; in eata_pio_int_handler()
218 z = 256; in eata_pio_int_handler()
[all …]
Da2091.c183 static int a2091_probe(struct zorro_dev *z, const struct zorro_device_id *ent) in a2091_probe() argument
191 if (!request_mem_region(z->resource.start, 256, "wd33c93")) in a2091_probe()
202 instance->unique_id = z->slotaddr; in a2091_probe()
204 regs = ZTWO_VADDR(z->resource.start); in a2091_probe()
228 zorro_set_drvdata(z, instance); in a2091_probe()
238 release_mem_region(z->resource.start, 256); in a2091_probe()
242 static void a2091_remove(struct zorro_dev *z) in a2091_remove() argument
244 struct Scsi_Host *instance = zorro_get_drvdata(z); in a2091_remove()
251 release_mem_region(z->resource.start, 256); in a2091_remove()
Dgvp11.c288 static int gvp11_probe(struct zorro_dev *z, const struct zorro_device_id *ent) in gvp11_probe() argument
306 if (zorro_resource_len(z) != 0x10000) in gvp11_probe()
309 address = z->resource.start; in gvp11_probe()
327 instance->unique_id = z->slotaddr; in gvp11_probe()
370 zorro_set_drvdata(z, instance); in gvp11_probe()
383 static void gvp11_remove(struct zorro_dev *z) in gvp11_remove() argument
385 struct Scsi_Host *instance = zorro_get_drvdata(z); in gvp11_remove()
392 release_mem_region(z->resource.start, 256); in gvp11_remove()
/linux-4.1.27/mm/
Dmmzone.c55 struct zoneref *next_zones_zonelist(struct zoneref *z, in next_zones_zonelist() argument
64 while (zonelist_zone_idx(z) > highest_zoneidx) in next_zones_zonelist()
65 z++; in next_zones_zonelist()
67 while (zonelist_zone_idx(z) > highest_zoneidx || in next_zones_zonelist()
68 (z->zone && !zref_in_nodemask(z, nodes))) in next_zones_zonelist()
69 z++; in next_zones_zonelist()
71 return z; in next_zones_zonelist()
Dnobootmem.c150 struct zone *z; in reset_node_managed_pages() local
152 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++) in reset_node_managed_pages()
153 z->managed_pages = 0; in reset_node_managed_pages()
Doom_kill.c203 struct zoneref *z; in constrained_alloc() local
234 for_each_zone_zonelist_nodemask(zone, z, zonelist, in constrained_alloc()
655 struct zoneref *z; in oom_zonelist_trylock() local
660 for_each_zone_zonelist(zone, z, zonelist, gfp_zone(gfp_mask)) in oom_zonelist_trylock()
670 for_each_zone_zonelist(zone, z, zonelist, gfp_zone(gfp_mask)) in oom_zonelist_trylock()
685 struct zoneref *z; in oom_zonelist_unlock() local
689 for_each_zone_zonelist(zone, z, zonelist, gfp_zone(gfp_mask)) in oom_zonelist_unlock()
Dpage_alloc.c1497 struct zone *z; in drain_all_pages() local
1505 for_each_populated_zone(z) { in drain_all_pages()
1506 pcp = per_cpu_ptr(z->pageset, cpu); in drain_all_pages()
1877 static bool __zone_watermark_ok(struct zone *z, unsigned int order, in __zone_watermark_ok() argument
1894 free_cma = zone_page_state(z, NR_FREE_CMA_PAGES); in __zone_watermark_ok()
1897 if (free_pages - free_cma <= min + z->lowmem_reserve[classzone_idx]) in __zone_watermark_ok()
1901 free_pages -= z->free_area[o].nr_free << o; in __zone_watermark_ok()
1912 bool zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark, in zone_watermark_ok() argument
1915 return __zone_watermark_ok(z, order, mark, classzone_idx, alloc_flags, in zone_watermark_ok()
1916 zone_page_state(z, NR_FREE_PAGES)); in zone_watermark_ok()
[all …]
Dvmstat.c326 long o, n, t, z; in mod_state() local
329 z = 0; /* overflow to zone counters */ in mod_state()
350 z = n + os; in mod_state()
355 if (z) in mod_state()
356 zone_page_state_add(z, zone, item); in mod_state()
580 void zone_statistics(struct zone *preferred_zone, struct zone *z, gfp_t flags) in zone_statistics() argument
582 if (z->zone_pgdat == preferred_zone->zone_pgdat) { in zone_statistics()
583 __inc_zone_state(z, NUMA_HIT); in zone_statistics()
585 __inc_zone_state(z, NUMA_MISS); in zone_statistics()
588 if (z->node == ((flags & __GFP_OTHER_NODE) ? in zone_statistics()
[all …]
Dmm_init.c34 struct zoneref *z; in mminit_verify_zonelist() local
55 for_each_zone_zonelist(zone, z, zonelist, zoneid) { in mminit_verify_zonelist()
Dbootmem.c249 struct zone *z; in reset_node_managed_pages() local
251 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++) in reset_node_managed_pages()
252 z->managed_pages = 0; in reset_node_managed_pages()
Dmemory_hotplug.c579 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */ in shrink_zone_span() local
580 unsigned long zone_end_pfn = z; in shrink_zone_span()
1069 struct zone *z; in reset_node_present_pages() local
1071 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++) in reset_node_present_pages()
1072 z->present_pages = 0; in reset_node_present_pages()
Dhugetlb.c636 struct zoneref *z; in dequeue_huge_page_vma() local
657 for_each_zone_zonelist_nodemask(zone, z, zonelist, in dequeue_huge_page_vma()
822 struct zone *z; in alloc_gigantic_page() local
824 z = NODE_DATA(nid)->node_zones; in alloc_gigantic_page()
825 for (; z - NODE_DATA(nid)->node_zones < MAX_NR_ZONES; z++) { in alloc_gigantic_page()
826 spin_lock_irqsave(&z->lock, flags); in alloc_gigantic_page()
828 pfn = ALIGN(z->zone_start_pfn, nr_pages); in alloc_gigantic_page()
829 while (zone_spans_last_pfn(z, pfn, nr_pages)) { in alloc_gigantic_page()
838 spin_unlock_irqrestore(&z->lock, flags); in alloc_gigantic_page()
842 spin_lock_irqsave(&z->lock, flags); in alloc_gigantic_page()
[all …]
/linux-4.1.27/drivers/net/ethernet/8390/
Dhydra.c56 static int hydra_init_one(struct zorro_dev *z,
58 static int hydra_init(struct zorro_dev *z);
68 static void hydra_remove_one(struct zorro_dev *z);
84 static int hydra_init_one(struct zorro_dev *z, in hydra_init_one() argument
89 if (!request_mem_region(z->resource.start, 0x10000, "Hydra")) in hydra_init_one()
91 if ((err = hydra_init(z))) { in hydra_init_one()
92 release_mem_region(z->resource.start, 0x10000); in hydra_init_one()
114 static int hydra_init(struct zorro_dev *z) in hydra_init() argument
117 unsigned long board = (unsigned long)ZTWO_VADDR(z->resource.start); in hydra_init()
178 zorro_set_drvdata(z, dev); in hydra_init()
[all …]
Dzorro8390.c261 static void zorro8390_remove_one(struct zorro_dev *z) in zorro8390_remove_one() argument
263 struct net_device *dev = zorro_get_drvdata(z); in zorro8390_remove_one()
406 static int zorro8390_init_one(struct zorro_dev *z, in zorro8390_init_one() argument
414 if (z->id == cards[i].id) in zorro8390_init_one()
419 board = z->resource.start; in zorro8390_init_one()
434 zorro_set_drvdata(z, dev); in zorro8390_init_one()
/linux-4.1.27/arch/arm/nwfpe/
Dsoftfloat.c75 int32 z; in roundAndPackInt32() local
97 z = absZ; in roundAndPackInt32()
98 if ( zSign ) z = - z; in roundAndPackInt32()
99 if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) { in roundAndPackInt32()
104 return z; in roundAndPackInt32()
530 floatx80 z; in packFloatx80() local
532 z.low = zSig; in packFloatx80()
533 z.high = ( ( (bits16) zSign )<<15 ) + zExp; in packFloatx80()
534 z.__padding = 0; in packFloatx80()
535 return z; in packFloatx80()
[all …]
Dsoftfloat-specialize111 commonNaNT z;
114 z.sign = a>>31;
115 z.low = 0;
116 z.high = ( (bits64) a )<<41;
117 return z;
205 commonNaNT z;
208 z.sign = a>>63;
209 z.low = 0;
210 z.high = a<<12;
211 return z;
[all …]
Dsoftfloat-macros44 bits32 z;
46 z = a;
49 z = ( a>>count ) | ( ( a<<( ( - count ) & 31 ) ) != 0 );
52 z = ( a != 0 );
54 *zPtr = z;
69 bits64 z;
73 z = a;
76 z = ( a>>count ) | ( ( a<<( ( - count ) & 63 ) ) != 0 );
79 z = ( a != 0 );
82 *zPtr = z;
[all …]
/linux-4.1.27/drivers/video/fbdev/
Dfm2fb.c214 static int fm2fb_probe(struct zorro_dev *z, const struct zorro_device_id *id);
229 static int fm2fb_probe(struct zorro_dev *z, const struct zorro_device_id *id) in fm2fb_probe() argument
236 is_fm = z->id == ZORRO_PROD_BSC_FRAMEMASTER_II; in fm2fb_probe()
238 if (!zorro_request_device(z,"fm2fb")) in fm2fb_probe()
241 info = framebuffer_alloc(16 * sizeof(u32), &z->dev); in fm2fb_probe()
243 zorro_release_device(z); in fm2fb_probe()
249 zorro_release_device(z); in fm2fb_probe()
254 fb_fix.smem_start = zorro_resource_start(z); in fm2fb_probe()
289 zorro_release_device(z); in fm2fb_probe()
Dcontrolfb.c70 #define DIRTY(z) ((x)->z != (y)->z) argument
71 #define DIRTY_CMAP(z) (memcmp(&((x)->z), &((y)->z), sizeof((y)->z))) argument
Dcirrusfb.c2196 static int cirrusfb_zorro_register(struct zorro_dev *z, in cirrusfb_zorro_register() argument
2206 info = framebuffer_alloc(sizeof(struct cirrusfb_info), &z->dev); in cirrusfb_zorro_register()
2214 regbase = zorro_resource_start(z) + zcl->regoffset; in cirrusfb_zorro_register()
2217 rambase = zorro_resource_start(z) + zcl->ramoffset; in cirrusfb_zorro_register()
2218 if (zorro_resource_len(z) == 64 * MB_) { in cirrusfb_zorro_register()
2248 if (!zorro_request_device(z, "cirrusfb")) { in cirrusfb_zorro_register()
2249 dev_err(info->device, "Cannot reserve %pR\n", &z->resource); in cirrusfb_zorro_register()
2294 zorro_set_drvdata(z, info); in cirrusfb_zorro_register()
2305 zorro_release_device(z); in cirrusfb_zorro_register()
2311 void cirrusfb_zorro_unregister(struct zorro_dev *z) in cirrusfb_zorro_unregister() argument
[all …]
/linux-4.1.27/Documentation/
Dzorro.txt30 struct zorro_dev *z = NULL;
32 while ((z = zorro_find_device(ZORRO_PROD_xxx, z))) {
33 if (!zorro_request_region(z->resource.start+MY_START, MY_SIZE,
41 struct zorro_dev *z = NULL;
43 while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
44 if (z->id != ZORRO_PROD_xxx1 && z->id != ZORRO_PROD_xxx2 && ...)
46 if (!zorro_request_region(z->resource.start+MY_START, MY_SIZE,
Dgcov.txt213 if [ -z "$KSRC" ] || [ -z "$KOBJ" ] || [ -z "$DEST" ]; then
243 if [ -z "$DEST" ] ; then
Dapplying-patches.txt49 patch -p1 < ../patch-x.y.z
52 patch -R -p1 < ../patch-x.y.z
61 patch -p1 < path/to/patch-x.y.z
69 patch -p1 -i path/to/patch-x.y.z
74 zcat path/to/patch-x.y.z.gz | patch -p1
75 bzcat path/to/patch-x.y.z.bz2 | patch -p1
80 gunzip patch-x.y.z.gz
81 bunzip2 patch-x.y.z.bz2
83 Which will leave you with a plain text patch-x.y.z file that you can feed to
193 step. The -z flag to interdiff will even let you feed it patches in gzip or
[all …]
Dthis_cpu_ops.txt73 int z;
75 z = this_cpu_read(x);
184 z = this_cpu_cmpxchg(p.m, 0, 1);
193 z = this_cpu_inc_return(ps->n);
205 z = pp->n++;
Djava.txt64 if [ -z "$1" ]; then
124 if [ -z "$CLASSBASE" ]; then
125 if [ -z "$FQCLASSP" ]; then
138 if [ -z "${CLASSPATH}" ] ; then
/linux-4.1.27/arch/arm/boot/dts/
Domap3-gta04a3.dts28 st,click-single-z;
31 st,click-thresh-z = <10>;
39 st,wakeup-z-lo;
40 st,wakeup-z-hi;
43 st,min-limit-z = <3>;
46 st,max-limit-z = <32>;
Domap3-overo-common-peripherals.dtsi65 st,click-single-z;
68 st,click-thresh-z = <10>;
75 st,wakeup-z-lo;
76 st,wakeup-z-hi;
79 st,min-limit-z = <140>;
82 st,max-limit-z = <750>;
Dam335x-evm.dts382 st,click-single-z;
385 st,click-thresh-z = <10>;
392 st,wakeup-z-lo;
393 st,wakeup-z-hi;
396 st,min-limit-z = <140>;
399 st,max-limit-z = <750>;
Dam335x-evmsk.dts444 st,click-single-z;
447 st,click-thresh-z = <10>;
454 st,wakeup-z-lo;
455 st,wakeup-z-hi;
458 st,min-limit-z = <140>;
461 st,max-limit-z = <750>;
Dam335x-pepper.dts119 st,wakeup-z-lo;
120 st,wakeup-z-hi;
125 st,min-limit-z = <92>;
126 st,max-limit-z = <14>;
Domap3-n900.dts644 st,click-single-z;
649 st,click-threshold-z = <10>;
664 st,wakeup2-z-hi;
672 st,axis-z = <(-3)>; /* LIS3_INV_DEV_Z */
676 st,min-limit-z = <3>;
680 st,max-limit-z = <32>;
/linux-4.1.27/arch/mips/math-emu/
Ddp_sqrt.c35 union ieee754dp y, z, t; in ieee754dp_sqrt() local
111 z = t = ieee754dp_mul(y, y); in ieee754dp_sqrt()
113 t = ieee754dp_add(t, z); in ieee754dp_sqrt()
114 z = ieee754dp_mul(ieee754dp_sub(x, z), y); in ieee754dp_sqrt()
117 t = ieee754dp_div(z, ieee754dp_add(t, x)); in ieee754dp_sqrt()
/linux-4.1.27/drivers/macintosh/ams/
Dams-core.c39 void ams_sensors(s8 *x, s8 *y, s8 *z) in ams_sensors() argument
45 ams_info.get_xyz(y, x, z); in ams_sensors()
47 ams_info.get_xyz(x, y, z); in ams_sensors()
50 *z = ~(*z); in ams_sensors()
60 s8 x, y, z; in ams_show_current() local
63 ams_sensors(&x, &y, &z); in ams_show_current()
66 return snprintf(buf, PAGE_SIZE, "%d %d %d\n", x, y, z); in ams_show_current()
Dams-input.c35 s8 x, y, z; in ams_idev_poll() local
39 ams_sensors(&x, &y, &z); in ams_idev_poll()
43 z -= ams_info.zcalib; in ams_idev_poll()
47 input_report_abs(idev, ABS_Z, z); in ams_idev_poll()
58 s8 x, y, z; in ams_input_enable() local
61 ams_sensors(&x, &y, &z); in ams_input_enable()
64 ams_info.zcalib = z; in ams_input_enable()
Dams.h42 void (*get_xyz)(s8 *x, s8 *y, s8 *z);
62 extern void ams_sensors(s8 *x, s8 *y, s8 *z);
Dams-pmu.c127 static void ams_pmu_get_xyz(s8 *x, s8 *y, s8 *z) in ams_pmu_get_xyz() argument
131 *z = ams_pmu_get_register(AMS_Z); in ams_pmu_get_xyz()
Dams-i2c.c156 static void ams_i2c_get_xyz(s8 *x, s8 *y, s8 *z) in ams_i2c_get_xyz() argument
160 *z = ams_i2c_read(AMS_DATAZ); in ams_i2c_get_xyz()
/linux-4.1.27/lib/zlib_inflate/
Dinflate.c757 int zlib_inflateIncomp(z_stream *z) in zlib_inflateIncomp() argument
759 struct inflate_state *state = (struct inflate_state *)z->state; in zlib_inflateIncomp()
760 Byte *saved_no = z->next_out; in zlib_inflateIncomp()
761 uInt saved_ao = z->avail_out; in zlib_inflateIncomp()
767 z->avail_out = 0; in zlib_inflateIncomp()
768 z->next_out = (unsigned char*)z->next_in + z->avail_in; in zlib_inflateIncomp()
770 zlib_updatewindow(z, z->avail_in); in zlib_inflateIncomp()
773 z->avail_out = saved_ao; in zlib_inflateIncomp()
774 z->next_out = saved_no; in zlib_inflateIncomp()
776 z->adler = state->check = in zlib_inflateIncomp()
[all …]
Dinfutil.h23 #define WS(z) ((struct inflate_workspace *)(z->workspace)) argument
/linux-4.1.27/arch/powerpc/include/asm/
Dtime.h190 ({unsigned z; asm ("mulhwu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
194 ({unsigned long z; asm ("mulhdu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
/linux-4.1.27/drivers/ide/
Dbuddha.c161 struct zorro_dev *z = NULL; in buddha_init() local
166 while ((z = zorro_find_device(ZORRO_WILDCARD, z))) { in buddha_init()
171 if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) { in buddha_init()
174 } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_CATWEASEL) { in buddha_init()
177 } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_X_SURF) { in buddha_init()
184 board = z->resource.start; in buddha_init()
/linux-4.1.27/lib/
Dmd5.c5 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
6 #define F2(x, y, z) F1(z, x, y) argument
7 #define F3(x, y, z) (x ^ y ^ z) argument
8 #define F4(x, y, z) (y ^ (x | ~z)) argument
10 #define MD5STEP(f, w, x, y, z, in, s) \ argument
11 (w += f(x, y, z) + in, w = (w<<s | w>>(32-s)) + x)
Dhalfmd4.c6 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
7 #define G(x, y, z) (((x) & (y)) + (((x) ^ (y)) & (z))) argument
8 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
Dinflate.c350 unsigned z; /* number of entries in current table */ in huft_build() local
449 z = 0; /* ditto */ in huft_build()
469 z = (z = g - w) > (unsigned)l ? l : z; /* upper limit on table size */ in huft_build()
475 if (j < z) in huft_build()
476 while (++j < z) /* try smaller tables up to z bits */ in huft_build()
484 z = 1 << j; /* table entries for j-bit table */ in huft_build()
487 if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) == in huft_build()
496 hufts += z + 1; /* track memory usage */ in huft_build()
535 for (j = i >> w; j < z; j += f) in huft_build()
Dbch.c796 const struct gf_poly *f, struct gf_poly *z, in compute_trace_bk_mod() argument
803 z->deg = 1; in compute_trace_bk_mod()
804 z->c[0] = 0; in compute_trace_bk_mod()
805 z->c[1] = bch->a_pow_tab[k]; in compute_trace_bk_mod()
815 for (j = z->deg; j >= 0; j--) { in compute_trace_bk_mod()
816 out->c[j] ^= z->c[j]; in compute_trace_bk_mod()
817 z->c[2*j] = gf_sqr(bch, z->c[j]); in compute_trace_bk_mod()
818 z->c[2*j+1] = 0; in compute_trace_bk_mod()
820 if (z->deg > out->deg) in compute_trace_bk_mod()
821 out->deg = z->deg; in compute_trace_bk_mod()
[all …]
/linux-4.1.27/drivers/input/touchscreen/
Dintel-mid-touch.c107 int (*read)(struct mrstouch_dev *tsdev, u16 *x, u16 *y, u16 *z);
192 u16 *x, u16 *y, u16 *z) in mrstouch_nec_adc_read() argument
229 err = mrstouch_ts_chan_read(tsdev->asr, MRST_TS_CHAN10, z, &zm); in mrstouch_nec_adc_read()
300 u16 *x, u16 *y, u16 *z) in mrstouch_fs_adc_read() argument
334 *z = data[0] << 3; /* Higher 7 bits */ in mrstouch_fs_adc_read()
335 *z |= data[1] & 0x7; /* Lower 3 bits */ in mrstouch_fs_adc_read()
336 *z &= 0x3FF; in mrstouch_fs_adc_read()
387 unsigned int x, unsigned int y, unsigned int z) in mrstouch_report_event() argument
389 if (z > MRST_PRESSURE_NOMINAL) { in mrstouch_report_event()
398 input_report_abs(input, ABS_PRESSURE, z); in mrstouch_report_event()
[all …]
Dti_am335x_tsc.c271 unsigned int z1, z2, z; in titsc_irq() local
311 z = z1 - z2; in titsc_irq()
312 z *= x; in titsc_irq()
313 z *= ts_dev->x_plate_resistance; in titsc_irq()
314 z /= z2; in titsc_irq()
315 z = (z + 2047) >> 12; in titsc_irq()
317 if (z <= MAX_12BIT) { in titsc_irq()
320 input_report_abs(input_dev, ABS_PRESSURE, z); in titsc_irq()
Dda9052_tsi.c61 u16 x, y, z; in da9052_ts_read() local
80 z = (u16) ret; in da9052_ts_read()
90 z = ((z << 2) & 0x3fc) | ((v & 0x30) >> 4); in da9052_ts_read()
95 input_report_abs(input, ABS_PRESSURE, z); in da9052_ts_read()
Degalax_ts.c73 int id, ret, x, y, z; in egalax_ts_interrupt() local
93 z = (buf[7] << 8) | buf[6]; in egalax_ts_interrupt()
108 down ? "down" : "up", id, x, y, z); in egalax_ts_interrupt()
113 input_report_abs(input_dev, ABS_MT_PRESSURE, z); in egalax_ts_interrupt()
Dstmpe-ts.c129 int x, y, z; in stmpe_ts_handler() local
151 z = data_set[3]; in stmpe_ts_handler()
155 input_report_abs(ts->idev, ABS_PRESSURE, z); in stmpe_ts_handler()
Dcyttsp_core.h45 u8 z; member
/linux-4.1.27/arch/alpha/lib/
Dcsum_partial_copy.c23 #define extql(x,y,z) \ argument
24 __asm__ __volatile__("extql %1,%2,%0":"=r" (z):"r" (x),"r" (y))
26 #define extqh(x,y,z) \ argument
27 __asm__ __volatile__("extqh %1,%2,%0":"=r" (z):"r" (x),"r" (y))
29 #define mskql(x,y,z) \ argument
30 __asm__ __volatile__("mskql %1,%2,%0":"=r" (z):"r" (x),"r" (y))
32 #define mskqh(x,y,z) \ argument
33 __asm__ __volatile__("mskqh %1,%2,%0":"=r" (z):"r" (x),"r" (y))
35 #define insql(x,y,z) \ argument
36 __asm__ __volatile__("insql %1,%2,%0":"=r" (z):"r" (x),"r" (y))
[all …]
/linux-4.1.27/scripts/coccinelle/free/
Dpci_free_consistent.cocci14 expression x,y,z,e;
19 id = pci_alloc_consistent@p1(x,y,&z)
22 ... when != pci_free_consistent(x,y,id,z)
23 when != if (id) { ... pci_free_consistent(x,y,id,z) ... }
24 when != if (y) { ... pci_free_consistent(x,y,id,z) ... }
/linux-4.1.27/drivers/input/tablet/
Dwacom_serial4.c316 int x, y, z; in wacom_handle_packet() local
325 z = wacom->data[6] & 0x7f; in wacom_handle_packet()
327 z = z << 1 | (wacom->data[3] & 0x4) >> 2; in wacom_handle_packet()
329 z = z << 1 | (wacom->data[0] & 0x4) >> 2; in wacom_handle_packet()
330 z = z ^ (0x40 << wacom->extra_z_bits); in wacom_handle_packet()
332 z = -1; in wacom_handle_packet()
351 input_report_abs(wacom->dev, ABS_PRESSURE, z); in wacom_handle_packet()
361 z = (wacom->data[6] & 0x30) >> 4; in wacom_handle_packet()
363 z = -z; in wacom_handle_packet()
364 input_report_rel(wacom->dev, REL_WHEEL, z); in wacom_handle_packet()
/linux-4.1.27/net/bluetooth/
Decc.c593 static void apply_z(u64 *x1, u64 *y1, u64 *z) in apply_z() argument
597 vli_mod_square_fast(t1, z); /* z^2 */ in apply_z()
599 vli_mod_mult_fast(t1, t1, z); /* z^3 */ in apply_z()
607 u64 z[NUM_ECC_DIGITS]; in xycz_initial_double() local
612 vli_clear(z); in xycz_initial_double()
613 z[0] = 1; in xycz_initial_double()
616 vli_set(z, p_initial_z); in xycz_initial_double()
618 apply_z(x1, y1, z); in xycz_initial_double()
620 ecc_point_double_jacobian(x1, y1, z); in xycz_initial_double()
622 apply_z(x2, y2, z); in xycz_initial_double()
[all …]
/linux-4.1.27/net/iucv/
DKconfig4 prompt "IUCV support (S390 - z/VM only)"
7 under VM or VIF. If you run on z/VM, say "Y" to enable a fast
13 prompt "AF_IUCV Socket support (S390 - z/VM and HiperSockets transport)"
16 based on z/VM inter-user communication vehicle or based on
/linux-4.1.27/arch/arm/vfp/
Dvfp.h115 u64 mh, ml, remh, reml, termh, terml, z; in vfp_estimate_div128to64() local
121 z = 0xffffffff00000000ULL; in vfp_estimate_div128to64()
123 z = nh; in vfp_estimate_div128to64()
124 do_div(z, mh); in vfp_estimate_div128to64()
125 z <<= 32; in vfp_estimate_div128to64()
127 mul64to128(&termh, &terml, m, z); in vfp_estimate_div128to64()
131 z -= 0x100000000ULL; in vfp_estimate_div128to64()
136 z |= 0xffffffff; in vfp_estimate_div128to64()
139 z |= remh; in vfp_estimate_div128to64()
141 return z; in vfp_estimate_div128to64()
Dvfpsingle.c290 u32 z, a; in vfp_estimate_sqrt_significand() local
299 z = 0x4000 + (a >> 17) - sqrt_oddadjust[index]; in vfp_estimate_sqrt_significand()
300 z = ((a / z) << 14) + (z << 15); in vfp_estimate_sqrt_significand()
303 z = 0x8000 + (a >> 17) - sqrt_evenadjust[index]; in vfp_estimate_sqrt_significand()
304 z = a / z + z; in vfp_estimate_sqrt_significand()
305 z = (z >= 0x20000) ? 0xffff8000 : (z << 15); in vfp_estimate_sqrt_significand()
306 if (z <= a) in vfp_estimate_sqrt_significand()
311 do_div(v, z); in vfp_estimate_sqrt_significand()
312 return v + (z >> 1); in vfp_estimate_sqrt_significand()
/linux-4.1.27/arch/x86/math-emu/
Dfpu_system.h80 #define FPU_access_ok(x,y,z) if ( !access_ok(x,y,z) ) \ argument
90 #define FPU_code_access_ok(z) argument
95 #define FPU_code_access_ok(z) FPU_access_ok(VERIFY_READ,(void __user *)FPU_EIP,z) argument
/linux-4.1.27/arch/metag/lib/
Dmuldi3.S11 ! B = D1Ar3:D0Ar4 = w 2^48 + x 2^32 + y 2^16 + z 2^0
18 MULD D1Re0,D1Ar1,D0Ar4 ! (a 2^48 + b 2^32)(y 2^16 + z 2^0)
22 MULW D0Re0,D0Ar2,D0Ar4 ! (d 2^0) * (z 2^0)
25 MULW D0Ar6,D0Ar2,D0Ar4 ! (c 2^16)(z 2^0)
/linux-4.1.27/fs/cachefiles/
Dproc.c27 unsigned x, y, z, t; in cachefiles_histogram_show() local
40 z = atomic_read(&cachefiles_create_histogram[index]); in cachefiles_histogram_show()
41 if (x == 0 && y == 0 && z == 0) in cachefiles_histogram_show()
46 seq_printf(m, "%4lu 0.%03u %9u %9u %9u\n", index, t, x, y, z); in cachefiles_histogram_show()
/linux-4.1.27/net/decnet/
Ddn_table.c185 static struct dn_zone *dn_new_zone(struct dn_hash *table, int z) in dn_new_zone() argument
192 if (z) { in dn_new_zone()
206 dz->dz_order = z; in dn_new_zone()
207 dz->dz_mask = dnet_make_mask(z); in dn_new_zone()
209 for(i = z + 1; i <= 16; i++) in dn_new_zone()
221 table->dh_zones[z] = dz; in dn_new_zone()
379 static void dn_rtmsg_fib(int event, struct dn_fib_node *f, int z, u32 tb_id, in dn_rtmsg_fib() argument
391 f->fn_type, f->fn_scope, &f->fn_key, z, in dn_rtmsg_fib()
533 int z = r->rtm_dst_len; in dn_fib_table_insert() local
538 if (z > 16) in dn_fib_table_insert()
[all …]
/linux-4.1.27/arch/tile/lib/
Dstrchr_32.c21 int z, g; in strchr() local
55 z = __insn_ctz(zero_matches); in strchr()
62 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
Dstrchr_64.c22 int z, g; in strchr() local
53 z = CFZ(zero_matches); in strchr()
60 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/
Dstmpe.txt22 - st,fraction-z: Length of the fractional part in z (fraction-z ([0..7]) = Count of
41 st,fraction-z = <7>;
Dtsc2007.txt21 - ti,fuzzz: specifies the absolute input fuzz z value.
/linux-4.1.27/drivers/uwb/
Ddrp-ie.c144 int z, i, num_fields = 0, next = 0; in uwb_drp_ie_from_bm() local
155 for (z = 0; z < UWB_NUM_ZONES; z++) { in uwb_drp_ie_from_bm()
162 zones[i].zone_bm |= 1 << z; in uwb_drp_ie_from_bm()
169 zones[next].zone_bm = 1 << z; in uwb_drp_ie_from_bm()
/linux-4.1.27/drivers/s390/char/
DKconfig165 prompt "Support for the z/VM recording system services (VM only)"
169 by the z/VM recording system services, eg. from *LOGREC, *ACCOUNT or
175 prompt "Support for the z/VM CP interface"
179 program on z/VM
183 prompt "API for reading z/VM monitor service records"
186 Character device driver for reading z/VM monitor service records
190 prompt "API for writing z/VM monitor service records"
193 Character device driver for writing z/VM monitor service records
197 prompt "z/VM unit record device driver"
200 Character device driver for z/VM reader, puncher and printer.
Ddefkeymap.map45 keycode 41 = nul z
190 compose '^' 'z' to Control_z
/linux-4.1.27/arch/blackfin/kernel/
Dkgdb_test.c52 noinline int kgdb_test(char *name, int len, int count, int z) in kgdb_test() argument
54 pr_alert("kgdb name(%d): %s, %d, %d\n", len, name, count, z); in kgdb_test()
55 count = z; in kgdb_test()
/linux-4.1.27/drivers/input/misc/
Dadxl34x.c187 int z; member
251 ac->saved.z = (s16) le16_to_cpu(buf[2]); in adxl34x_get_triple()
252 axis->z = ac->saved.z; in adxl34x_get_triple()
268 axis.z - ac->swcal.z); in adxl34x_service_ev_fifo()
492 ac->hwcal.z * 4 + ac->swcal.z); in adxl34x_calibrate_show()
516 ac->hwcal.z -= (ac->saved.z / 4); in adxl34x_calibrate_store()
517 ac->swcal.z = ac->saved.z % 4; in adxl34x_calibrate_store()
521 AC_WRITE(ac, OFSZ, (s8) ac->hwcal.z); in adxl34x_calibrate_store()
611 ac->saved.x, ac->saved.y, ac->saved.z); in adxl34x_position_show()
834 ac->hwcal.z = pdata->z_axis_offset; in adxl34x_probe()
Dmma8450.c111 int x, y, z; in mma8450_poll() local
128 z = ((int)(s8)buf[5] << 4) | (buf[4] & 0xf); in mma8450_poll()
132 input_report_abs(dev->input, ABS_Z, z); in mma8450_poll()
Dmpu3050.c107 s16 z; member
165 coords->z = be16_to_cpu(buffer[2]); in mpu3050_read_xyz()
167 coords->x, coords->y, coords->z); in mpu3050_read_xyz()
247 input_report_abs(sensor->idev, ABS_Z, axis.z); in mpu3050_interrupt_thread()
Dbma150.c324 s16 x, y, z; in bma150_report_xyz() local
334 z = ((0xc0 & data[4]) >> 6) | (data[5] << 2); in bma150_report_xyz()
339 z = (s16) (z << 6) >> 6; in bma150_report_xyz()
343 input_report_abs(bma150->input, ABS_Z, z); in bma150_report_xyz()
Dkxtj9.c120 s16 x, y, z; in kxtj9_report_acceleration_data() local
129 z = le16_to_cpu(acc_data[tj9->pdata.axis_map_z]); in kxtj9_report_acceleration_data()
133 z >>= tj9->shift; in kxtj9_report_acceleration_data()
137 input_report_abs(tj9->input_dev, ABS_Z, tj9->pdata.negate_z ? -z : z); in kxtj9_report_acceleration_data()
/linux-4.1.27/arch/sh/kernel/cpu/sh4/
Dsoftfloat.c151 bits64 z; in shift64RightJamming() local
154 z = a; in shift64RightJamming()
156 z = (a >> count) | ((a << ((-count) & 63)) != 0); in shift64RightJamming()
158 z = (a != 0); in shift64RightJamming()
160 *zPtr = z; in shift64RightJamming()
349 bits32 z; in shift32RightJamming() local
351 z = a; in shift32RightJamming()
353 z = (a >> count) | ((a << ((-count) & 31)) != 0); in shift32RightJamming()
355 z = (a != 0); in shift32RightJamming()
357 *zPtr = z; in shift32RightJamming()
[all …]
/linux-4.1.27/net/tipc/
Daddr.c102 u32 z = tipc_zone(addr); in tipc_addr_domain_valid() local
104 if (n && (!z || !c)) in tipc_addr_domain_valid()
106 if (c && !z) in tipc_addr_domain_valid()
/linux-4.1.27/arch/mips/boot/compressed/
DMakefile59 targets += vmlinux.bin.z
60 $(obj)/vmlinux.bin.z: $(obj)/vmlinux.bin FORCE
64 OBJCOPYFLAGS_piggy.o := --add-section=.image=$(obj)/vmlinux.bin.z \
66 $(obj)/piggy.o: $(obj)/dummy.o $(obj)/vmlinux.bin.z FORCE
/linux-4.1.27/drivers/scsi/dpt/
Ddpti_ioctl.h30 # define _IOWR(x,y,z) (((x)<<8)|y) argument
33 # define _IOW(x,y,z) (((x)<<8)|y) argument
36 # define _IOR(x,y,z) (((x)<<8)|y) argument
/linux-4.1.27/arch/blackfin/mach-common/
Ddpmc_modes.S21 R1 = W[P0](z);
40 R7 = w[p0](z);
108 R6 = W[P0](z);
114 R5 = W[P0](z);
125 R7 = W[P0](z);
146 R0 = W[P0](z);
Dhead.S181 r0 = (EVT_IVG15 | EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU) (z);
183 r0 = EVT_IVG15 (z);
216 r0 = 0xAD6(z);
Dcache.S86 r3 = r3.b (z);
/linux-4.1.27/arch/arm/mach-ks8695/include/mach/
Dregs-switch.h28 #define KS8695_SEPXCZ(x,z) (0x0c + (((x)-1)*3 + ((z)-1))*4) /* Port Configuration Registers */ argument
/linux-4.1.27/Documentation/s390/
Dmonreader.txt6 Linux API for read access to z/VM Monitor Records
13 usable from user space and allows read access to the z/VM Monitor Records
14 collected by the *MONITOR System Service of z/VM.
19 The z/VM guest on which you want to access this API needs to be configured in
23 This item will use the IUCV device driver to access the z/VM services, so you
24 need a kernel with IUCV support. You also need z/VM version 4.4 or 5.1.
74 Refer to the "z/VM Performance" book (SC24-6109-00) on how to create a monitor
75 DCSS if your z/VM doesn't have one already, you need Class E privileges to
136 See "Appendix A: *MONITOR" in the "z/VM Performance" document for a description
138 be found here (z/VM 5.1): http://www.vm.ibm.com/pubs/mon510/index.html
[all …]
DDebugging390.txt2 Debugging on Linux for s/390 & z/Architecture
11 s/390 and z/Architecture. It is not intended as a complete reference and not a
24 Address Spaces on Linux for s/390 & z/Architecture
25 The Linux for s/390 & z/Architecture Kernel Task Structure
26 Register Usage & Stackframes on Linux for s/390 & z/Architecture
28 Compiling programs for debugging on Linux for s/390 & z/Architecture
30 s/390 & z/Architecture IO Overview
31 Debugging IO on s/390 & z/Architecture under VM
32 GDB on s/390 & z/Architecture
46 16 General propose registers, 32 bit on s/390 and 64 bit on z/Architecture,
[all …]
D00-INDEX22 - information on accessing the z/VM monitor stream from Linux.
/linux-4.1.27/drivers/net/ethernet/ibm/emac/
Dzmii.h69 # define zmii_attach(x,y,z) (-ENXIO) argument
73 # define zmii_set_speed(x,y,z) do { } while(0) argument
Drgmii.h73 # define rgmii_attach(x,y,z) (-ENXIO) argument
77 # define rgmii_set_speed(x,y,z) do { } while(0) argument
/linux-4.1.27/drivers/s390/net/
DKconfig9 Select this option if you want to use LCS networking on IBM System z.
20 point-to-point networking on IBM System z.
37 can be established to the Linux on IBM System z
65 This driver supports the IBM System z OSA Express adapters
66 in QDIO mode (all media types), HiperSockets interfaces and z/VM
/linux-4.1.27/drivers/parport/
Dparport_mfc3.c293 struct zorro_dev *z = NULL; in parport_mfc3_init() local
298 while ((z = zorro_find_device(ZORRO_PROD_BSC_MULTIFACE_III, z))) { in parport_mfc3_init()
299 unsigned long piabase = z->resource.start+PIABASE; in parport_mfc3_init()
324 p->dev = &z->dev; in parport_mfc3_init()
/linux-4.1.27/drivers/mmc/host/
Ddw_mmc-exynos.h31 #define SDMMC_CLKSEL_TIMING(x, y, z) (SDMMC_CLKSEL_CCLK_SAMPLE(x) | \ argument
33 SDMMC_CLKSEL_CCLK_DIVIDER(z))
/linux-4.1.27/arch/mips/include/asm/mach-lantiq/
Dlantiq.h26 #define ltq_ebu_w32_mask(x, y, z) \ argument
27 ltq_w32_mask(x, y, ltq_ebu_membase + (z))
/linux-4.1.27/drivers/firewire/
Dohci.c1054 static struct descriptor *find_branch_descriptor(struct descriptor *d, int z) in find_branch_descriptor() argument
1061 if (z == 2 && branch == cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS)) in find_branch_descriptor()
1064 return d + z - 1; in find_branch_descriptor()
1072 int z; in context_tasklet() local
1081 z = address & 0xf; in context_tasklet()
1092 last = find_branch_descriptor(d, z); in context_tasklet()
1189 int z, dma_addr_t *d_bus) in context_get_descriptors() argument
1194 if (z * sizeof(*d) > desc->buffer_size) in context_get_descriptors()
1197 if (z * sizeof(*d) > desc->buffer_size - desc->used) { in context_get_descriptors()
1213 memset(d, 0, z * sizeof(*d)); in context_get_descriptors()
[all …]
/linux-4.1.27/arch/m68k/fpsp040/
Dstanh.S26 | sgn := sign(X), y := 2|X|, z := expm1(Y), and
27 | tanh(X) = sgn*( z/(2+z) ).
36 | sgn := sign(X), y := 2|X|, z := exp(Y),
37 | tanh(X) = sgn - [ sgn*2/(1+z) ].
Dssinh.S26 | y = |X|, sgn = sign(X), and z = expm1(Y),
27 | sinh(X) = sgn*(1/2)*( z + z/(1+z) ).
Dscosh.S26 | y = |X|, z = exp(Y), and
27 | cosh(X) = (1/2)*( z + 1/z ).
Dsacos.S26 | z := (1-X) / (1+X)
27 | acos(X) = 2 * atan( sqrt(z) ).
Dsasin.S26 | z := sqrt( [1-X][1+X] )
27 | asin(X) = atan( x / z ).
Dsatanh.S29 | z := 2y/(1-y)
30 | atanh(X) := sgn * (1/2) * logp1(z)
/linux-4.1.27/drivers/staging/rtl8188eu/include/
Drtw_security.h331 #define Ch(x, y , z) (z ^ (x & (y ^ z))) argument
332 #define Maj(x, y, z) (((x | y) & z) | (x & y)) argument
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Drenesas,r8a7779-cpg-clocks.txt14 "z", "zs", "s", "s1", "p", "b", "out".
25 clock-output-names = "plla", "z", "zs", "s", "s1", "p",
Drenesas,r8a73a4-cpg-clocks.txt17 "pll0", "pll1", "pll2", "pll2s", "pll2h", "z", "z2", "i", "m3", "b",
30 "pll2s", "pll2h", "z", "z2",
Drenesas,sh73a0-cpg-clocks.txt20 "m1", "m2", "z", "zx", and "hp".
34 "z", "zx", "hp";
Drenesas,rcar-gen2-cpg-clocks.txt21 "pll0", "pll1", "pll3", "lb", "qspi", "sdh", "sd0", "sd1", "z", "rcan", and
35 "lb", "qspi", "sdh", "sd0", "sd1", "z",
/linux-4.1.27/drivers/staging/iio/light/
Dtsl2x7x_core.c962 int y, z; in tsl2x7x_als_time_show() local
965 z = y * TSL2X7X_MIN_ITIME; in tsl2x7x_als_time_show()
967 z %= 1000; in tsl2x7x_als_time_show()
969 return snprintf(buf, PAGE_SIZE, "%d.%03d\n", y, z); in tsl2x7x_als_time_show()
1031 int y, z, filter_delay; in tsl2x7x_als_persistence_show() local
1035 z = y * TSL2X7X_MIN_ITIME; in tsl2x7x_als_persistence_show()
1036 filter_delay = z * (chip->tsl2x7x_settings.persistence & 0x0F); in tsl2x7x_als_persistence_show()
1038 z = filter_delay % 1000; in tsl2x7x_als_persistence_show()
1040 return snprintf(buf, PAGE_SIZE, "%d.%03d\n", y, z); in tsl2x7x_als_persistence_show()
1049 int y, z, filter_delay; in tsl2x7x_als_persistence_store() local
[all …]
/linux-4.1.27/drivers/net/ethernet/amd/
Da2065.c642 static int a2065_init_one(struct zorro_dev *z,
644 static void a2065_remove_one(struct zorro_dev *z);
673 static int a2065_init_one(struct zorro_dev *z, in a2065_init_one() argument
678 unsigned long board = z->resource.start; in a2065_init_one()
707 serial = be32_to_cpu(z->rom.er_SerialNumber); in a2065_init_one()
709 if (z->id != ZORRO_PROD_AMERISTAR_A2065) { /* Commodore */ in a2065_init_one()
750 zorro_set_drvdata(z, dev); in a2065_init_one()
759 static void a2065_remove_one(struct zorro_dev *z) in a2065_remove_one() argument
761 struct net_device *dev = zorro_get_drvdata(z); in a2065_remove_one()
Dariadne.c685 static void ariadne_remove_one(struct zorro_dev *z) in ariadne_remove_one() argument
687 struct net_device *dev = zorro_get_drvdata(z); in ariadne_remove_one()
713 static int ariadne_init_one(struct zorro_dev *z, in ariadne_init_one() argument
716 unsigned long board = z->resource.start; in ariadne_init_one()
743 serial = be32_to_cpu(z->rom.er_SerialNumber); in ariadne_init_one()
764 zorro_set_drvdata(z, dev); in ariadne_init_one()
/linux-4.1.27/net/nfc/hci/
Dllc_shdlc.c120 static bool llc_shdlc_x_lt_y_lteq_z(int x, int y, int z) in llc_shdlc_x_lt_y_lteq_z() argument
122 if (x < z) in llc_shdlc_x_lt_y_lteq_z()
123 return ((x < y) && (y <= z)) ? true : false; in llc_shdlc_x_lt_y_lteq_z()
125 return ((y > x) || (y <= z)) ? true : false; in llc_shdlc_x_lt_y_lteq_z()
129 static bool llc_shdlc_x_lteq_y_lt_z(int x, int y, int z) in llc_shdlc_x_lteq_y_lt_z() argument
131 if (x <= z) in llc_shdlc_x_lteq_y_lt_z()
132 return ((x <= y) && (y < z)) ? true : false; in llc_shdlc_x_lteq_y_lt_z()
134 return ((y >= x) || (y < z)) ? true : false; in llc_shdlc_x_lteq_y_lt_z()
/linux-4.1.27/include/sound/
Dsoundfont.h30 #define SF_IS_DRUM_BANK(z) ((z) == 128) argument
/linux-4.1.27/scripts/mod/
Dsumversion.c52 static inline uint32_t F(uint32_t x, uint32_t y, uint32_t z) in F() argument
54 return (x & y) | ((~x) & z); in F()
57 static inline uint32_t G(uint32_t x, uint32_t y, uint32_t z) in G() argument
59 return (x & y) | (x & z) | (y & z); in G()
62 static inline uint32_t H(uint32_t x, uint32_t y, uint32_t z) in H() argument
64 return x ^ y ^ z; in H()
/linux-4.1.27/drivers/misc/lis3lv02d/
Dlis3lv02d.c184 static void lis3lv02d_get_xyz(struct lis3lv02d *lis3, int *x, int *y, int *z) in lis3lv02d_get_xyz() argument
213 *z = lis3lv02d_get_axis(lis3->ac.z, position); in lis3lv02d_get_xyz()
271 s16 x, y, z; in lis3lv02d_selftest() local
313 z = lis3->read_data(lis3, OUTZ); in lis3lv02d_selftest()
323 results[2] = z - lis3->read_data(lis3, OUTZ); in lis3lv02d_selftest()
452 int x, y, z; in lis3lv02d_joystick_poll() local
455 lis3lv02d_get_xyz(lis3, &x, &y, &z); in lis3lv02d_joystick_poll()
458 input_report_abs(pidev->input, ABS_Z, z); in lis3lv02d_joystick_poll()
729 lis3->mapped_btns[2] = lis3lv02d_get_axis(abs(lis3->ac.z), btns); in lis3lv02d_joystick_enable()
809 int x, y, z; in lis3lv02d_position_show() local
[all …]
/linux-4.1.27/drivers/isdn/mISDN/
Ddsp_audio.c142 int z, j; in reverse_bits() local
143 z = 0; in reverse_bits()
147 z |= 1 << (7 - j); in reverse_bits()
149 return z; in reverse_bits()
/linux-4.1.27/arch/tile/mm/
Dinit.c696 struct zone *z; in set_non_bootmem_pages_init() local
697 for_each_zone(z) { in set_non_bootmem_pages_init()
699 int nid = z->zone_pgdat->node_id; in set_non_bootmem_pages_init()
701 int idx = zone_idx(z); in set_non_bootmem_pages_init()
704 start = z->zone_start_pfn; in set_non_bootmem_pages_init()
705 end = start + z->spanned_pages; in set_non_bootmem_pages_init()
711 totalhigh_pages += z->spanned_pages; in set_non_bootmem_pages_init()
/linux-4.1.27/drivers/input/mouse/
Dalps.c249 int x, y, z, ges, fin, left, right, middle; in alps_process_packet_v1_v2() local
258 z = packet[5]; in alps_process_packet_v1_v2()
265 z = packet[5]; in alps_process_packet_v1_v2()
283 if ((priv->flags & ALPS_DUALPOINT) && z == 127) { in alps_process_packet_v1_v2()
304 z = 40; in alps_process_packet_v1_v2()
320 if (z > 30) in alps_process_packet_v1_v2()
322 if (z < 25) in alps_process_packet_v1_v2()
325 if (z > 0) { in alps_process_packet_v1_v2()
330 input_report_abs(dev, ABS_PRESSURE, z); in alps_process_packet_v1_v2()
331 input_report_key(dev, BTN_TOOL_FINGER, z > 0); in alps_process_packet_v1_v2()
[all …]
Dcypress_ps2.c465 report_data->contacts[0].z = packet[4]; in cypress_parse_packet()
473 report_data->contacts[0].z = packet[4]; in cypress_parse_packet()
480 report_data->contacts[1].z = report_data->contacts[0].z; in cypress_parse_packet()
508 report_data->contacts[i].z); in cypress_parse_packet()
549 input_report_abs(input, ABS_MT_PRESSURE, contact->z); in cypress_process_packet()
Dsynaptics.c680 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1; in synaptics_parse_agm()
729 hw->z = buf[2]; in synaptics_parse_hw_state()
744 if (hw->z == 0) { in synaptics_parse_hw_state()
797 hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F)); in synaptics_parse_hw_state()
941 input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z); in synaptics_report_mt_data()
966 if (sgm->z == 0) in synaptics_image_sensor_process()
1020 if (hw.z > 0 && hw.x > 1) { in synaptics_process_packet()
1057 if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1); in synaptics_process_packet()
1058 if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0); in synaptics_process_packet()
1064 input_report_abs(dev, ABS_PRESSURE, hw.z); in synaptics_process_packet()
Dnavpoint.c86 int x, y, z; in navpoint_packet() local
98 z = navpoint->data[6]; in navpoint_packet()
102 input_report_abs(navpoint->input, ABS_PRESSURE, z); in navpoint_packet()
Dvmmouse.c150 u32 status, x, y, z; in vmmouse_report_events() local
178 VMMOUSE_CMD(ABSPOINTER_DATA, 4, status, x, y, z); in vmmouse_report_events()
198 input_report_rel(rel_dev, REL_WHEEL, -(s8)((u8) z)); in vmmouse_report_events()
Dcypress_ps2.h138 int z; /* also named as touch pressure. */ member
Dsynaptics.h153 int z; member
/linux-4.1.27/drivers/platform/x86/
Dhp_accel.c170 #define DEFINE_CONV(name, x, y, z) \ argument
172 { .as_array = { x, y, z } }
355 if (lis3_dev.ac.x && lis3_dev.ac.y && lis3_dev.ac.z) { in lis3lv02d_add()
357 lis3_dev.ac.x, lis3_dev.ac.y, lis3_dev.ac.z); in lis3lv02d_add()
Dclassmate-laptop.c165 int16_t *z) in cmpc_get_accel_v4() argument
190 *z = locs[2]; in cmpc_get_accel_v4()
199 int16_t x, y, z; in cmpc_accel_handler_v4() local
202 status = cmpc_get_accel_v4(dev->handle, &x, &y, &z); in cmpc_accel_handler_v4()
208 input_report_abs(inputdev, ABS_Z, z); in cmpc_accel_handler_v4()
519 unsigned char *z) in cmpc_get_accel() argument
539 *z = locs[2]; in cmpc_get_accel()
548 unsigned char x, y, z; in cmpc_accel_handler() local
551 status = cmpc_get_accel(dev->handle, &x, &y, &z); in cmpc_accel_handler()
557 input_report_abs(inputdev, ABS_Z, z); in cmpc_accel_handler()
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/
Dlibcfs.h58 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Dkernel.fuc146 bra z #intr_watchdog_next_proc
164 bra z #intr_watchdog_next_time_set
200 bra z #intr_skip_watchdog
206 bra z #intr_skip_watchdog
212 bra z #intr_skip_subintr
215 bra z #intr_subintr_skip_fifo
229 bra z #intr_skip_pause
234 bra z #intr_skip_user0
552 bra z #init_proc
Dmemx.fuc115 bra z #memx_func_enter_wait
174 bra z #memx_func_wait_vblank_head0
176 bra z #memx_func_wait_vblank_head1
194 bra z #memx_func_wait_vblank_1
/linux-4.1.27/arch/ia64/kernel/
Drelocate_kernel.S138 tbit.z p0, p6=r30, 0;; // 0x1 dest page
142 tbit.z p0, p6=r30, 1;; // 0x2 indirect page
146 tbit.z p0, p6=r30, 2;; // 0x4 end flag
149 tbit.z p6, p0=r30, 3;; // 0x8 source page
Divt.S179 (p7) tbit.z p6,p7=r18,_PAGE_P_BIT // page present bit cleared?
267 tbit.z p6,p0=r18,_PAGE_P_BIT // page present bit cleared?
311 tbit.z p6,p0=r18,_PAGE_P_BIT // page present bit cleared?
397 tbit.z p12,p0=r16,61 // access to region 6?
551 tbit.z p7,p6 = r18,_PAGE_P_BIT // Check present bit
603 tbit.z p6,p0=r17,IA64_PSR_IS_BIT // IA64 instruction set?
617 tbit.z p7,p6 = r18,_PAGE_P_BIT // Check present bit
672 tbit.z p7,p6 = r18,_PAGE_P_BIT // Check present bit
1201 tbit.z p6,p0=r17,IA64_ISR_NA_BIT
Dpal.S165 dep.z loc2=loc2,0,61 // convert pal entry point to physical
218 dep.z loc2=loc2,0,61 // convert pal entry point to physical
/linux-4.1.27/drivers/video/fbdev/matrox/
Dmatroxfb_Ti3026.c313 unsigned int loopfeed, loopin, looppost, loopdiv, z; in Ti3026_setpclk() local
325 z = (110000 * loopin) / (f_pll * loopfeed); in Ti3026_setpclk()
327 if (z < 2) in Ti3026_setpclk()
329 else if (z < 4) in Ti3026_setpclk()
331 else if (z < 8) in Ti3026_setpclk()
335 loopdiv = z/16; in Ti3026_setpclk()
/linux-4.1.27/drivers/hid/
Dhid-wiimote-modules.c435 __u16 x, y, z; in wiimod_accel_in_accel() local
454 z = accel[4] << 2; in wiimod_accel_in_accel()
458 z |= (accel[1] >> 5) & 0x2; in wiimod_accel_in_accel()
462 input_report_abs(wdata->accel, ABS_RZ, z - 0x200); in wiimod_accel_in_accel()
829 __s16 x, y, z, bx, by; in wiimod_nunchuk_in_ext() local
868 z = ext[4] << 2; in wiimod_nunchuk_in_ext()
873 z &= ~0x4; in wiimod_nunchuk_in_ext()
874 z |= (ext[5] >> 5) & 0x06; in wiimod_nunchuk_in_ext()
878 z |= (ext[5] >> 6) & 0x03; in wiimod_nunchuk_in_ext()
883 z -= 0x200; in wiimod_nunchuk_in_ext()
[all …]
/linux-4.1.27/arch/mips/include/asm/octeon/
Docteon-model.h311 #define __OCTEON_MATCH_MASK__(x, y, z) (((x) & (z)) == ((y) & (z))) argument
/linux-4.1.27/Documentation/misc-devices/
Dlis3lv02d28 position - 3D position that the accelerometer reports. Format: "(x,y,z)"
49 Seltest returns either "OK x y z" or "FAIL x y z" where x, y and z are
/linux-4.1.27/drivers/media/pci/mantis/
Dmantis_common.h38 #define dprintk(y, z, format, arg...) do { \ argument
39 if (z) { \
/linux-4.1.27/drivers/mtd/chips/
Dcfi_cmdset_0020.c426 int wbufsize, z; in do_write_buffer() local
497 z = 0; in do_write_buffer()
507 if (++z > 100) { in do_write_buffer()
522 for (z = 0; z < len; in do_write_buffer()
523 z += map_bankwidth(map), buf += map_bankwidth(map)) { in do_write_buffer()
526 map_write(map, d, adr+z); in do_write_buffer()
537 z = 0; in do_write_buffer()
571 z++; in do_write_buffer()
574 if (!z) { in do_write_buffer()
579 if (z > 1) in do_write_buffer()
/linux-4.1.27/Documentation/arm/nwfpe/
DNOTES24 double x, y, z;
25 z = log(x)/log(y);
/linux-4.1.27/arch/blackfin/mach-bf561/
Dsecondary.S116 r0 = EVT_IVG15 (z);
164 r0 = 0xAD6(z);
Datomic.S727 __do_xchg(b[p1] (z), b[p1])
731 __do_xchg(w[p1] (z), w[p1])
768 __do_cmpxchg(b[p1] (z), b[p1])
772 __do_cmpxchg(w[p1] (z), w[p1])
/linux-4.1.27/drivers/input/joystick/
Danalog.c464 int i, j, t, v, w, x, y, z; in analog_init_device() local
497 z = y - port->axes[i]; in analog_init_device()
498 z = z > 0 ? z : -z; in analog_init_device()
502 if ((i == 2 || i == 3) && (j == 2 || j == 3) && (z > (y >> 3))) in analog_init_device()
/linux-4.1.27/arch/m68k/include/asm/
Ddvma.h25 #define dvma_map_align_vme(x, y, z) (dvma_map_align (x, y, z) & 0xfffff) argument
/linux-4.1.27/Documentation/platform/
Dx86-laptop-drivers.txt17 Dell Inspiron 11z (Inspiron 1110)
/linux-4.1.27/Documentation/serial/
DREADME.cycladesZ7 ftp://ftp.cyclades.com/pub/cyclades/cyclades-z/linux/
/linux-4.1.27/net/netfilter/
Dxt_policy.c41 #define MATCH_ADDR(x,y,z) (!e->match.x || \ in match_xfrm_state() argument
42 (xt_addr_cmp(&e->x, &e->y, (const union nf_inet_addr *)(z), family) \ in match_xfrm_state()
/linux-4.1.27/arch/sparc/crypto/
Dopcodes.h6 #define F3F(x,y,z) (((x)<<30)|((y)<<19)|((z)<<5)) argument
/linux-4.1.27/tools/lib/lockdep/uinclude/linux/
Dkernel.h26 #define WARN(x, y, z) (x) argument
/linux-4.1.27/drivers/media/dvb-frontends/
Dstb0899_priv.h34 #define dprintk(x, y, z, format, arg...) do { \ argument
35 if (z) { \
/linux-4.1.27/drivers/ata/
Dpata_cs5536.c50 #define rdmsr(x, y, z) do { } while (0) argument
51 #define wrmsr(x, y, z) do { } while (0) argument
/linux-4.1.27/arch/mips/lantiq/xway/
Ddma.c58 #define ltq_dma_w32_mask(x, y, z) ltq_w32_mask(x, y, \ argument
59 ltq_dma_membase + (z))
/linux-4.1.27/Documentation/DocBook/media/
Dnv12mt_example.gif.b6451 aDVC/vI96gaHMYl2UwgcwnA4xLmt5XGI29zwZ/GnwVxqbYsa1hwHOMEZxAtmmjTebj41vhGB53/z
105 Dp4agS+z/PEJYZ7qMikSLxCs0ANMwHj+6AhTaRHrLOhw5j4aDRE2zxGTkp0XsfM9X5WOoCzB/Nwv
Dcrop.gif.b643 yKRyyWw6n9CodEqtWq/YrHbL7Xq/4LB4TC6bz+i0es1uu9/wuHxOr9vv+Lx+z+/7/4CBgoOEhYaH
6 +s/z/f4B+wIKHAjsn8F09ex5IciwobuDEM1Bi0ixosWLGDNqrJhQIZdk/htDihxJsiTJiSZTqlzJ
Dconstraints.png.b6455 szGn/KDGTinnoliY9TV/FzZnr++U+z+dfcIw93qblPtNxVwUvcIF7N/7uZJRlbLMQS5KN0MFtQ4w
/linux-4.1.27/arch/parisc/kernel/
Dpacache.S866 depdi,z 1, 63-PAGE_SHIFT,1, %r25
868 depwi,z 1, 31-PAGE_SHIFT,1, %r25
942 depdi,z 1, 63-PAGE_SHIFT,1, %r25
944 depwi,z 1, 31-PAGE_SHIFT,1, %r25
996 depdi,z 1, 63-PAGE_SHIFT,1, %r25
998 depwi,z 1, 31-PAGE_SHIFT,1, %r25
1039 depdi,z 1, 63-PAGE_SHIFT,1, %r25
1041 depwi,z 1, 31-PAGE_SHIFT,1, %r25
1145 depdi,z 1, 63-PAGE_SHIFT,1, %r25
1147 depwi,z 1, 31-PAGE_SHIFT,1, %r25
/linux-4.1.27/arch/parisc/include/asm/
Dpsw.h67 unsigned int z:1; member
/linux-4.1.27/sound/pci/au88x0/
Dau88x0.h39 #define hwwrite(x,y,z) writel((z),(x)+(y)) argument
/linux-4.1.27/drivers/tty/hvc/
DKconfig53 bool "z/VM IUCV Hypervisor console support (VM only)"
60 a Linux (console) terminal via a z/VM IUCV communication path.
/linux-4.1.27/drivers/md/
Draid0.c291 struct strip_zone *z = conf->strip_zone; in find_zone() local
295 if (sector < z[i].zone_end) { in find_zone()
297 *sectorp = sector - z[i-1].zone_end; in find_zone()
298 return z + i; in find_zone()
/linux-4.1.27/arch/s390/
DKconfig498 IBM System z.
715 This provides a kernel interface for creating and updating z/VM APPLDATA
733 Writing 1 or 0 to /proc/appldata/memory creates(1) or removes(0) a z/VM
735 on the z/VM side.
750 Writing 1 or 0 to /proc/appldata/os creates(1) or removes(0) a z/VM
752 on the z/VM side.
766 Writing 1 or 0 to /proc/appldata/net_sum creates(1) or removes(0) a z/VM
768 on the z/VM side.
/linux-4.1.27/arch/x86/purgatory/
Dsha256.c23 static inline u32 Ch(u32 x, u32 y, u32 z) in Ch() argument
25 return z ^ (x & (y ^ z)); in Ch()
28 static inline u32 Maj(u32 x, u32 y, u32 z) in Maj() argument
30 return (x & y) | (z & (x | y)); in Maj()
/linux-4.1.27/arch/blackfin/include/asm/
Ddef_LPBlackfin.h46 #define bfin_read8(addr) _bfin_readX(addr, 8, b, (z))
47 #define bfin_read16(addr) _bfin_readX(addr, 16, w, (z))
/linux-4.1.27/include/math-emu/
Dop-1.h55 #define _FP_FRAC_CLZ_1(z, X) __FP_CLZ(z, X##_f) argument
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Dti,tas5086.txt23 - ti,mid-z-channel-X: Boolean properties, X being a number from 1 to 6.
/linux-4.1.27/arch/m68k/hp300/
Dhp300map.map41 keycode 28 = z
251 compose 's' 'z' to '�'
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
Dsvga3d_surfacedefs.h867 u32 x, u32 y, u32 z) in svga3dsurface_get_pixel_offset() argument
874 const u32 offset = (z / bd * imgstride + in svga3dsurface_get_pixel_offset()
/linux-4.1.27/drivers/pci/hotplug/
DKconfig149 bool "System z PCI Hotplug Support"
152 Say Y here if you want to use the System z PCI Hotplug
/linux-4.1.27/kernel/debug/kdb/
Dkdb_main.c1699 int n, z, num = (symbolic ? 1 : (16 / bytesperword)); in kdb_md() local
1703 for (a = addr, z = 0; z < repeat; a += bytesperword, ++z) { in kdb_md()
1716 z = (z + num - 1) / num; in kdb_md()
1717 if (z > 2) { in kdb_md()
1718 int s = num * (z-2); in kdb_md()
/linux-4.1.27/arch/s390/include/asm/
Dcpu_mf.h106 unsigned int z:2; /* zeros */ member

12