Searched refs:code (Results 1 - 25 of 1513) sorted by relevance

1234567891011>>

/linux-master/lib/zlib_inflate/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
H A Dinftrees.h15 information needed to do the operation requested by the code that
17 table that indexes more bits of the code. op indicates whether
19 distance, an end-of-block, or an invalid code. For a table
22 is the number of extra bits to get after the code. bits is
23 the number of bits in this code or part of the code to drop off
29 unsigned char bits; /* bits in this part of the code */
30 unsigned short val; /* offset in table or code value */
31 } code; typedef in typeref:struct:__anon14845
38 01000000 - invalid code
[all...]
/linux-master/arch/s390/include/asm/
H A Ddis.h14 static inline int insn_length(unsigned char code) argument
16 return ((((int) code + 64) >> 7) + 1) << 1;
22 void print_fn_code(unsigned char *code, unsigned long len);
23 struct s390_insn *find_insn(unsigned char *code);
25 static inline int is_known_insn(unsigned char *code) argument
27 return !!find_insn(code);
/linux-master/include/dt-bindings/input/
H A Dinput.h5 * Most input bindings include key code, matrix key code format.
6 * In most cases, key code and matrix key code format uses
15 #define MATRIX_KEY(row, col, code) \
16 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
/linux-master/scripts/dtc/include-prefixes/dt-bindings/input/
H A Dinput.h5 * Most input bindings include key code, matrix key code format.
6 * In most cases, key code and matrix key code format uses
15 #define MATRIX_KEY(row, col, code) \
16 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
/linux-master/arch/mips/include/asm/mips-boards/
H A Dsim.h17 #define simcfg(code) \
21 ::"i"(code) \
/linux-master/arch/parisc/include/asm/
H A Dtraps.h12 int code, unsigned long offset) __noreturn __cold;
17 unsigned long parisc_acctyp(unsigned long code, unsigned int inst);
18 const char *trap_name(unsigned long code);
19 void do_page_fault(struct pt_regs *regs, unsigned long code,
/linux-master/tools/include/uapi/linux/
H A Dfilter.h14 * Current version of the filter code architecture.
21 * the BPF code definitions which need to match so you can share filters
25 __u16 code; /* Actual filter code */ member in struct:sock_filter
37 #define BPF_RVAL(code) ((code) & 0x18)
41 #define BPF_MISCOP(code) ((code) & 0xf8)
49 #define BPF_STMT(code, k) { (unsigned short)(code),
[all...]
H A Dbpf_common.h6 #define BPF_CLASS(code) ((code) & 0x07)
17 #define BPF_SIZE(code) ((code) & 0x18)
22 #define BPF_MODE(code) ((code) & 0xe0)
31 #define BPF_OP(code) ((code) & 0xf0)
49 #define BPF_SRC(code) ((code)
[all...]
/linux-master/kernel/trace/
H A Dtrace_probe_tmpl.h7 fetch_store_raw(unsigned long val, struct fetch_insn *code, void *buf) argument
9 switch (code->size) {
29 fetch_apply_bitfield(struct fetch_insn *code, void *buf) argument
31 switch (code->basesize) {
33 *(u8 *)buf <<= code->lshift;
34 *(u8 *)buf >>= code->rshift;
37 *(u16 *)buf <<= code->lshift;
38 *(u16 *)buf >>= code->rshift;
41 *(u32 *)buf <<= code->lshift;
42 *(u32 *)buf >>= code
103 process_common_fetch_insn(struct fetch_insn *code, unsigned long *val) argument
123 process_fetch_insn_bottom(struct fetch_insn *code, unsigned long val, void *dest, void *base) argument
[all...]
/linux-master/drivers/platform/x86/dell/
H A Ddell-wmi-privacy.h13 bool dell_privacy_process_event(int type, int code, int status);
22 static inline bool dell_privacy_process_event(int type, int code, int status) argument
/linux-master/lib/zstd/common/
H A Dzstd_common.c5 * This source code is licensed under both the BSD-style license (found in the
35 * tells if a return value is an error code
37 unsigned ZSTD_isError(size_t code) { return ERR_isError(code); } argument
40 * provides error code string from function result (useful for debugging) */
41 const char* ZSTD_getErrorName(size_t code) { return ERR_getErrorName(code); } argument
45 ZSTD_ErrorCode ZSTD_getErrorCode(size_t code) { return ERR_getErrorCode(code); } argument
48 * provides error code strin
49 ZSTD_getErrorString(ZSTD_ErrorCode code) argument
[all...]
/linux-master/include/linux/input/
H A Dsparse-keymap.h21 * @code: Device-specific data identifying the button/switch
22 * @keycode: KEY_* code assigned to a key/button
23 * @sw: struct with code/value used by KE_SW and KE_VSW
24 * @sw.code: SW_* code assigned to a switch
35 u32 code; member in struct:key_entry
39 u8 code; member in struct:key_entry::__anon4283::__anon4284
46 unsigned int code);
48 unsigned int code);
56 bool sparse_keymap_report_event(struct input_dev *dev, unsigned int code,
[all...]
/linux-master/kernel/bpf/
H A Ddisasm.c143 insn->code, insn->dst_reg,
144 BPF_SRC(insn->code) == BPF_TO_BE ? "be" : "le",
153 insn->code, insn->dst_reg,
159 return (BPF_OP(insn->code) == BPF_DIV || BPF_OP(insn->code) == BPF_MOD) &&
165 return BPF_OP(insn->code) == BPF_MOV &&
171 return insn->code == (BPF_ALU64 | BPF_MOV | BPF_X) &&
180 u8 class = BPF_CLASS(insn->code);
183 if (BPF_OP(insn->code) == BPF_END) {
188 } else if (BPF_OP(insn->code)
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Ddisasm.c143 insn->code, insn->dst_reg,
144 BPF_SRC(insn->code) == BPF_TO_BE ? "be" : "le",
153 insn->code, insn->dst_reg,
159 return (BPF_OP(insn->code) == BPF_DIV || BPF_OP(insn->code) == BPF_MOD) &&
165 return BPF_OP(insn->code) == BPF_MOV &&
171 return insn->code == (BPF_ALU64 | BPF_MOV | BPF_X) &&
180 u8 class = BPF_CLASS(insn->code);
183 if (BPF_OP(insn->code) == BPF_END) {
188 } else if (BPF_OP(insn->code)
[all...]
/linux-master/include/uapi/linux/
H A Dbpf_common.h6 #define BPF_CLASS(code) ((code) & 0x07)
17 #define BPF_SIZE(code) ((code) & 0x18)
22 #define BPF_MODE(code) ((code) & 0xe0)
31 #define BPF_OP(code) ((code) & 0xf0)
49 #define BPF_SRC(code) ((code)
[all...]
H A Dfilter.h14 * Current version of the filter code architecture.
21 * the BPF code definitions which need to match so you can share filters
25 __u16 code; /* Actual filter code */ member in struct:sock_filter
37 #define BPF_RVAL(code) ((code) & 0x18)
41 #define BPF_MISCOP(code) ((code) & 0xf8)
49 #define BPF_STMT(code, k) { (unsigned short)(code),
[all...]
/linux-master/sound/core/seq/oss/
H A Dseq_oss_event.h20 unsigned char code; member in struct:evrec_short
28 unsigned char code; member in struct:evrec_note
36 unsigned char code; member in struct:evrec_timer
44 unsigned char code; member in struct:evrec_extended
53 unsigned char code; member in struct:evrec_long
63 unsigned char code; member in struct:evrec_voice
73 unsigned char code; member in struct:evrec_sysex
91 #define ev_is_long(ev) ((ev)->s.code >= 128)
92 #define ev_length(ev) ((ev)->s.code >= 128 ? LONG_EVENT_SIZE : SHORT_EVENT_SIZE)
/linux-master/drivers/input/
H A Dinput-core-private.h14 unsigned int type, unsigned int code, int value);
/linux-master/include/linux/
H A Dicmpv6.h18 typedef void ip6_icmp_send_t(struct sk_buff *skb, u8 type, u8 code, __u32 info,
21 void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
25 static inline void __icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info, argument
28 icmp6_send(skb, type, code, info, NULL, parm);
41 extern void __icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
47 static inline void icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info) argument
49 __icmpv6_send(skb, type, code, info, IP6CB(skb));
56 void icmpv6_ndo_send(struct sk_buff *skb_in, u8 type, u8 code, __u32 info);
58 static inline void icmpv6_ndo_send(struct sk_buff *skb_in, u8 type, u8 code, __u32 info) argument
61 __icmpv6_send(skb_in, type, code, inf
67 icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info) argument
72 icmpv6_ndo_send(struct sk_buff *skb, u8 type, u8 code, __u32 info) argument
93 icmpv6_param_prob(struct sk_buff *skb, u8 code, int pos) argument
[all...]
/linux-master/drivers/pcmcia/
H A Dmax1600.h24 unsigned int code; member in struct:max1600
28 unsigned int channel, unsigned int code);
/linux-master/drivers/media/firewire/
H A Dfiredtv-rc.c21 /* code from device: 0x4501...0x451f */
55 /* code from device: 0x4540...0x4542 */
65 /* code from device: 0x0300...0x031f */
100 /* code from device: 0x0340...0x0354 */
169 void fdtv_handle_rc(struct firedtv *fdtv, unsigned int code) argument
174 if (code >= 0x0300 && code <= 0x031f)
175 code = keycode[code - 0x0300];
176 else if (code >
[all...]
/linux-master/scripts/
H A Ddecodecode26 code=
33 code=$i
40 code="$code $xdump"
50 if [ -z "$code" ]; then
55 echo $code
56 code=`echo $code | sed -e 's/.*Code: //'`
58 width=`expr index "$code" ' '`
162 # @all_code: code i
[all...]
/linux-master/arch/arm/nwfpe/
H A Dfpa11.c87 unsigned int code; local
92 code = opcode & 0x00000f00;
93 if (code == 0x00000100 || code == 0x00000200) {
95 code = opcode & 0x0e000000;
96 if (code == 0x0e000000) {
107 } else if (code == 0x0c000000) {
/linux-master/include/uapi/linux/surface_aggregator/
H A Ddtx.h27 #define SDTX_STATUS(code) ((code) | SDTX_CATEGORY_STATUS)
28 #define SDTX_ERR_RT(code) ((code) | SDTX_CATEGORY_RUNTIME_ERROR)
29 #define SDTX_ERR_HW(code) ((code) | SDTX_CATEGORY_HARDWARE_ERROR)
30 #define SDTX_UNKNOWN(code) ((code) | SDTX_CATEGORY_UNKNOWN)
83 * @code: Event code, detailin
90 __u16 code; member in struct:sdtx_event
[all...]

Completed in 251 milliseconds

1234567891011>>