Searched refs:result (Results 1 - 25 of 55) sorted by relevance

123

/include/linux/
H A Dparser.h29 int match_int(substring_t *, int *result);
30 int match_octal(substring_t *, int *result);
31 int match_hex(substring_t *, int *result);
H A Dmii.h253 u32 result = 0; local
256 result |= ADVERTISE_10HALF;
258 result |= ADVERTISE_10FULL;
260 result |= ADVERTISE_100HALF;
262 result |= ADVERTISE_100FULL;
264 result |= ADVERTISE_PAUSE_CAP;
266 result |= ADVERTISE_PAUSE_ASYM;
268 return result;
280 u32 result = 0; local
283 result |
308 u32 result = 0; local
328 u32 result = 0; local
348 u32 result = 0; local
366 u32 result = 0; local
386 u32 result = 0; local
410 u32 result = 0; local
434 u32 result = 0; local
[all...]
H A Dadfs_fs.h51 unsigned int result = 0; local
55 result = (result & 0xff) + (result >> 8);
56 result = result + *--p;
59 return (result & 0xff) != ptr[511];
H A Dbsg-lib.h65 void bsg_job_done(struct bsg_job *job, int result,
H A Datm_tcp.h40 int result; /* to kernel only */ member in struct:atmtcp_control
45 * Messge type dir. hdr.v?i type addr qos vcc result
H A Dcpufreq.h150 u64 result = ((u64) old) * ((u64) mult); local
151 do_div(result, div);
152 return (unsigned long) result;
156 unsigned long result = old * ((u64) mult);
157 result /= div;
158 return result;
H A Dkd.h120 unsigned char diacr, base, result; member in struct:kbdiacr
130 unsigned int diacr, base, result; member in struct:kbdiacruc
H A Ddm-dirty-log.h66 * unknown, typically this will result in a read being
119 char *result, unsigned maxlen);
/include/linux/crush/
H A Dmapper.h16 int x, int *result, int result_max,
/include/media/
H A Dsaa6588.h30 int result; member in struct:saa6588_command
/include/scsi/
H A Dscsi_tgt_if.h50 int result; member in struct:tgt_event::__anon1802::__anon1803
61 int result; member in struct:tgt_event::__anon1802::__anon1804
67 __s32 result; member in struct:tgt_event::__anon1802::__anon1805
84 int result; member in struct:tgt_event::__anon1802::__anon1807
H A Dscsi_bsg_iscsi.h92 * The completion result. Result exists in two forms:
95 * else, it's the 4-byte scsi error result, with driver, host,
99 uint32_t result; member in struct:iscsi_bsg_reply
H A Dscsi_cmnd.h130 int result; /* Status code from lower level driver */ member in struct:scsi_cmnd
307 cmd->result = (cmd->result & 0xffff00ff) | (status << 8);
312 cmd->result = (cmd->result & 0xff00ffff) | (status << 16);
317 cmd->result = (cmd->result & 0x00ffffff) | (status << 24);
H A Dscsi.h492 #define status_byte(result) (((result) >> 1) & 0x7f)
493 #define msg_byte(result) (((result) >> 8) & 0xff)
494 #define host_byte(result) (((result) >> 16) & 0xff)
495 #define driver_byte(result) (((result) >> 24) & 0xff)
/include/trace/events/
H A Dsignal.h42 * @result: TRACE_SIGNAL_*
53 int group, int result),
55 TP_ARGS(sig, info, task, group, result),
64 __field( int, result )
73 __entry->result = result;
79 __entry->result)
H A Dscsi.h108 #define scsi_hostbyte_name(result) { result, #result }
128 #define scsi_driverbyte_name(result) { result, #result }
141 #define scsi_msgbyte_name(result) { result, #result }
172 #define scsi_statusbyte_name(result) { resul
[all...]
H A Djbd.h12 TP_PROTO(journal_t *journal, int result),
14 TP_ARGS(journal, result),
18 __field( int, result )
23 __entry->result = result;
26 TP_printk("dev %d,%d result %d",
28 __entry->result)
H A Djbd2.h15 TP_PROTO(journal_t *journal, int result),
17 TP_ARGS(journal, result),
21 __field( int, result )
26 __entry->result = result;
29 TP_printk("dev %d,%d result %d",
30 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->result)
/include/net/irda/
H A Dirlan_client.h40 void irlan_client_get_value_confirm(int result, __u16 obj_id,
H A Diriap.h56 typedef void (*CONFIRM_CALLBACK)(int result, __u16 obj_id,
/include/sound/
H A Dseq_device.h71 int snd_seq_device_new(struct snd_card *card, int device, char *id, int argsize, struct snd_seq_device **result);
/include/linux/spi/
H A Dspi.h701 u8 result; local
703 status = spi_write_then_read(spi, &cmd, 1, &result, 1);
706 return (status < 0) ? status : result;
725 u16 result; local
727 status = spi_write_then_read(spi, &cmd, 1, (u8 *) &result, 2);
730 return (status < 0) ? status : result;
/include/linux/ceph/
H A Dauth.h38 int (*handle_reply)(struct ceph_auth_client *ac, int result,
/include/linux/i2c/
H A Dtwl4030-madc.h140 u16 result; member in struct:twl4030_madc_user_parms
/include/linux/uwb/
H A Dwhci.h114 u32 mask, u32 result,

Completed in 356 milliseconds

123