| /linux/kernel/bpf/ |
| H A D | disasm.c | 143 insn->code, insn->dst_reg, in print_bpf_end_insn() 144 BPF_SRC(insn->code) == BPF_TO_BE ? "be" : "le", in print_bpf_end_insn() 153 insn->code, insn->dst_reg, in print_bpf_bswap_insn() 159 return (BPF_OP(insn->code) == BPF_DIV || BPF_OP(insn->code) == BPF_MOD) && in is_sdiv_smod() 165 return BPF_OP(insn->code) == BPF_MOV && in is_movsx() 171 return insn->code == (BPF_ALU64 | BPF_MOV | BPF_X) && in is_addr_space_cast() 183 return insn->code == (BPF_ALU64 | BPF_MOV | BPF_X) && insn->off == BPF_ADDR_PERCPU; in is_mov_percpu_addr() 191 u8 class = BPF_CLASS(insn->code); in print_bpf_insn() 194 if (BPF_OP(insn->code) == BPF_END) { in print_bpf_insn() 199 } else if (BPF_OP(insn->code) == BPF_NEG) { in print_bpf_insn() [all …]
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | disasm.c | 143 insn->code, insn->dst_reg, in print_bpf_end_insn() 144 BPF_SRC(insn->code) == BPF_TO_BE ? "be" : "le", in print_bpf_end_insn() 153 insn->code, insn->dst_reg, in print_bpf_bswap_insn() 159 return (BPF_OP(insn->code) == BPF_DIV || BPF_OP(insn->code) == BPF_MOD) && in is_sdiv_smod() 165 return BPF_OP(insn->code) == BPF_MOV && in is_movsx() 171 return insn->code == (BPF_ALU64 | BPF_MOV | BPF_X) && in is_addr_space_cast() 183 return insn->code == (BPF_ALU64 | BPF_MOV | BPF_X) && insn->off == BPF_ADDR_PERCPU; in is_mov_percpu_addr() 191 u8 class = BPF_CLASS(insn->code); in print_bpf_insn() 194 if (BPF_OP(insn->code) in print_bpf_insn() [all...] |
| /linux/kernel/trace/ |
| H A D | trace_probe_tmpl.h | 7 fetch_store_raw(unsigned long val, struct fetch_insn *code, void *buf) in fetch_store_raw() argument 9 switch (code->size) { in fetch_store_raw() 29 fetch_apply_bitfield(struct fetch_insn *code, void *buf) in fetch_apply_bitfield() argument 31 switch (code->basesize) { in fetch_apply_bitfield() 33 *(u8 *)buf <<= code->lshift; in fetch_apply_bitfield() 34 *(u8 *)buf >>= code->rshift; in fetch_apply_bitfield() 37 *(u16 *)buf <<= code->lshift; in fetch_apply_bitfield() 38 *(u16 *)buf >>= code->rshift; in fetch_apply_bitfield() 41 *(u32 *)buf <<= code->lshift; in fetch_apply_bitfield() 42 *(u32 *)buf >>= code->rshift; in fetch_apply_bitfield() [all …]
|
| H A D | trace_probe.c | 318 static int parse_trace_event_arg(char *arg, struct fetch_insn *code, in parse_trace_event_arg() argument 327 code->op = FETCH_OP_TP_ARG; in parse_trace_event_arg() 328 code->data = field; in parse_trace_event_arg() 335 static int parse_trace_event(char *arg, struct fetch_insn *code, in parse_trace_event() argument 340 if (code->data) in parse_trace_event() 342 ret = parse_trace_event_arg(arg, code, ctx); in parse_trace_event() 464 struct fetch_insn *code = *pcode + 1; in check_prepare_btf_string_fetch() local 466 if (code->op == FETCH_OP_END) { in check_prepare_btf_string_fetch() 471 code->op = FETCH_OP_UDEREF; in check_prepare_btf_string_fetch() 473 code->op = FETCH_OP_DEREF; in check_prepare_btf_string_fetch() [all …]
|
| /linux/drivers/scsi/ |
| H A D | script_asm.pl | 179 @code = (); # Array of 32 bit words for SIOP 209 printf STDERR "Old code : %08x\n", $code[$address]; 214 $code[$address] = ($code[$address] & ~$mask) | 215 (($code[$address] & $mask) + ($value << ($offset * 8)) & 218 printf STDERR "New code : %08x\n", $code[$address] if ($debug); 277 $code[$address] |= 0x00_01_00_00; 296 $code[$address] |= 0x00_08_00_00; 306 $code[$address] |= 0x00_02_00_00; 312 $code[$address] |= $p | 0x00_02_00_00; 341 $code[$address] |= 0x00_04_00_00; [all …]
|
| /linux/drivers/media/firewire/ |
| H A D | firedtv-rc.c | 169 void fdtv_handle_rc(struct firedtv *fdtv, unsigned int code) in fdtv_handle_rc() argument 174 if (code >= 0x0300 && code <= 0x031f) in fdtv_handle_rc() 175 code = keycode[code - 0x0300]; in fdtv_handle_rc() 176 else if (code >= 0x0340 && code <= 0x0354) in fdtv_handle_rc() 177 code = keycode[code - 0x0320]; in fdtv_handle_rc() 178 else if (code >= 0x4501 && code <= 0x451f) in fdtv_handle_rc() 179 code = oldtable[code - 0x4501]; in fdtv_handle_rc() 180 else if (code >= 0x4540 && code <= 0x4542) in fdtv_handle_rc() 181 code = oldtable[code - 0x4521]; in fdtv_handle_rc() 185 code); in fdtv_handle_rc() [all …]
|
| /linux/tools/include/linux/ |
| H A D | filter.h | 37 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \ 45 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \ 55 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \ 63 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \ 73 .code = BPF_ALU | BPF_END | BPF_SRC(TYPE), \ 83 .code = BPF_ALU64 | BPF_MOV | BPF_X, \ 91 .code = BPF_ALU | BPF_MOV | BPF_X, \ 101 .code = BPF_ALU64 | BPF_MOV | BPF_K, \ 109 .code = BPF_ALU | BPF_MOV | BPF_K, \ 119 .code [all...] |
| /linux/drivers/iio/amplifiers/ |
| H A D | hmc425a.c | 55 int (*gain_dB_to_code)(int gain, int *code); 56 int (*code_to_gain_dB)(int code, int *val, int *val2); 67 static int gain_dB_to_code(struct hmc425a_state *st, int val, int val2, int *code) in gain_dB_to_code() argument 82 return st->chip_info->gain_dB_to_code(gain, code); in gain_dB_to_code() 85 static int hmc425a_gain_dB_to_code(int gain, int *code) in hmc425a_gain_dB_to_code() argument 87 *code = ~((abs(gain) / 500) & 0x3F); in hmc425a_gain_dB_to_code() 91 static int hmc540s_gain_dB_to_code(int gain, int *code) in hmc540s_gain_dB_to_code() argument 93 *code = ~((abs(gain) / 1000) & 0xF); in hmc540s_gain_dB_to_code() 97 static int adrf5740_gain_dB_to_code(int gain, int *code) in adrf5740_gain_dB_to_code() argument 102 *code = temp & BIT(3) ? temp | BIT(2) : temp; in adrf5740_gain_dB_to_code() [all …]
|
| /linux/drivers/media/test-drivers/vimc/ |
| H A D | vimc-common.c | 24 .code = { 33 .code = { 48 .code = { MEDIA_BUS_FMT_ARGB8888_1X32 }, 56 .code = { MEDIA_BUS_FMT_SBGGR8_1X8 }, 62 .code = { MEDIA_BUS_FMT_SGBRG8_1X8 }, 68 .code = { MEDIA_BUS_FMT_SGRBG8_1X8 }, 74 .code = { MEDIA_BUS_FMT_SRGGB8_1X8 }, 80 .code = { MEDIA_BUS_FMT_SBGGR10_1X10 }, 86 .code = { MEDIA_BUS_FMT_SGBRG10_1X10 }, 92 .code = { MEDIA_BUS_FMT_SGRBG10_1X10 }, [all …]
|
| H A D | vimc-debayer.c | 28 u32 code; member 60 .code = MEDIA_BUS_FMT_SRGGB8_1X8, 80 .code = MEDIA_BUS_FMT_SBGGR8_1X8, 85 .code = MEDIA_BUS_FMT_SGBRG8_1X8, 90 .code = MEDIA_BUS_FMT_SGRBG8_1X8, 95 .code = MEDIA_BUS_FMT_SRGGB8_1X8, 100 .code = MEDIA_BUS_FMT_SBGGR10_1X10, 105 .code = MEDIA_BUS_FMT_SGBRG10_1X10, 110 .code = MEDIA_BUS_FMT_SGRBG10_1X10, 115 .code = MEDIA_BUS_FMT_SRGGB10_1X10, [all …]
|
| /linux/scripts/ |
| H A D | decodecode | 25 code= 32 code=$i 39 code="$code $xdump" 49 if [ -z "$code" ]; then 54 echo $code 55 code=`echo $code | sed -e 's/.*Code: //'` 57 width=`expr index "$code" ' '` 161 # @all_code: code i [all...] |
| /linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
| H A D | fweh.c | 32 u32 code; member 44 enum brcmf_fweh_event_code code; member 63 const char *brcmf_fweh_event_name(enum brcmf_fweh_event_code code) in brcmf_fweh_event_name() argument 67 if (fweh_event_names[i].code == code) in brcmf_fweh_event_name() 73 const char *brcmf_fweh_event_name(enum brcmf_fweh_event_code code) in brcmf_fweh_event_name() argument 194 enum brcmf_fweh_event_code code, in brcmf_fweh_map_event_code() argument 202 *fw_code = code; in brcmf_fweh_map_event_code() 205 if (fweh->event_map->items[i].code == code) { in brcmf_fweh_map_event_code() 214 enum brcmf_fweh_event_code *code) in brcmf_fweh_map_fwevt_code() argument 218 if (WARN_ON(!code)) in brcmf_fweh_map_fwevt_code() [all …]
|
| /linux/samples/bpf/ |
| H A D | bpf_insn.h | 12 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \ 20 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \ 30 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \ 38 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \ 48 .code = BPF_ALU64 | BPF_MOV | BPF_X, \ 56 .code = BPF_ALU | BPF_MOV | BPF_X, \ 66 .code = BPF_ALU64 | BPF_MOV | BPF_K, \ 74 .code = BPF_ALU | BPF_MOV | BPF_K, \ 86 .code = BPF_LD | BPF_DW | BPF_IMM, \ 92 .code = 0, /* zero is reserved opcode */ \ [all …]
|
| /linux/include/uapi/linux/ |
| H A D | bpf_common.h | 6 #define BPF_CLASS(code) ((code) & 0x07) argument 17 #define BPF_SIZE(code) ((code) & 0x18) argument 22 #define BPF_MODE(code) ((code) & 0xe0) argument 31 #define BPF_OP(code) ((code) & 0xf0) argument 49 #define BPF_SRC(code) ((code) & 0x08) argument
|
| H A D | filter.h | 25 __u16 code; /* Actual filter code */ member 37 #define BPF_RVAL(code) ((code) & 0x18) argument 41 #define BPF_MISCOP(code) ((code) & 0xf8) argument 49 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k } argument 52 #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k } argument
|
| /linux/tools/include/uapi/linux/ |
| H A D | bpf_common.h | 6 #define BPF_CLASS(code) ((code) & 0x07) argument 17 #define BPF_SIZE(code) ((code) & 0x18) argument 22 #define BPF_MODE(code) ((code) & 0xe0) argument 31 #define BPF_OP(code) ((code) & 0xf0) argument 49 #define BPF_SRC(code) ((code) & 0x08) argument
|
| H A D | filter.h | 25 __u16 code; /* Actual filter code */ member 37 #define BPF_RVAL(code) ((code) & 0x18) argument 41 #define BPF_MISCOP(code) ((code) & 0xf8) argument 49 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k } argument 52 #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k } argument
|
| /linux/arch/sh/boards/mach-x3proto/ |
| H A D | setup.c | 129 .code = KEY_POWER, 134 .code = KEY_SUSPEND, 139 .code = KEY_KATAKANAHIRAGANA, 143 .code = KEY_SWITCHVIDEOMODE, 147 .code = KEY_F12, 151 .code = KEY_F11, 155 .code = KEY_F10, 159 .code = KEY_F9, 163 .code = KEY_F8, 167 .code = KEY_F7, [all …]
|
| /linux/lib/zstd/common/ |
| H A D | zstd_common.c | 37 unsigned ZSTD_isError(size_t code) { return ERR_isError(code); } in ZSTD_isError() argument 41 const char* ZSTD_getErrorName(size_t code) { return ERR_getErrorName(code); } in ZSTD_getErrorName() argument 45 ZSTD_ErrorCode ZSTD_getErrorCode(size_t code) { return ERR_getErrorCode(code); } in ZSTD_getErrorCode() argument 49 const char* ZSTD_getErrorString(ZSTD_ErrorCode code) { return ERR_getErrorString(code); } in ZSTD_getErrorString() argument
|
| /linux/drivers/usb/serial/ |
| H A D | io_ionsp.h | 446 #define IOSP_GET_STATUS_LEN(code) ((code) < 8 ? 2 : ((code) < 0x0A ? 3 : 4)) argument 448 #define IOSP_STATUS_IS_2BYTE(code) ((code) < 0x08) argument 449 #define IOSP_STATUS_IS_3BYTE(code) (((code) >= 0x08) && ((code) <= 0x0B)) argument 450 #define IOSP_STATUS_IS_4BYTE(code) (((code) >= 0x0C) && ((code) <= 0x0D)) argument
|
| /linux/Documentation/driver-api/cxl/linux/example-configurations/ |
| H A D | multi-interleave.rst | 14 This output is generated by :code:`cxl list -v` and describes the relationships 15 between objects exposed in :code:`/sys/bus/cxl/devices/`. 81 Bridge :code:`port1`. In this case, :code:`port1` has 3 available downstream 82 ports: :code:`dport0`, :code:`dport2`, and :code:`dport113`. 141 This chunk shows the endpoints attached to the host bridge :code:`port1`. 143 :code:`endpoint5` contains a single configured decoder :code:`decoder5.0` 144 which has the same interleave configuration as :code:`region0` (shown later). 146 :code:`endpoint6` contains a single configured decoder :code:`decoder5.0` 147 which has the same interleave configuration as :code:`region0` (shown later). 180 Host Bridge :code:`port1` has a single decoder (:code:`decoder1.0`), whose [all …]
|
| H A D | single-device.rst | 13 This output is generated by :code:`cxl list -v` and describes the relationships 14 between objects exposed in :code:`/sys/bus/cxl/devices/`. 80 Bridge :code:`port1`. In this case, :code:`port1` has 3 available downstream 81 ports: :code:`dport1`, :code:`dport2`, and :code:`dport113`.. 113 This chunk shows the endpoints attached to the host bridge :code:`port1`. 115 :code:`endpoint5` contains a single configured decoder :code:`decoder5.0` 116 which has the same interleave configuration as :code:`region0` (shown later). 142 Host Bridge :code:`port1` has a single decoder (:code:`decoder1.0`), whose only 143 target is :code:`dport1` - which is attached to :code:`endpoint5`. 195 Next we have the `Root Decoders` belonging to :code:`root0`. This root decoder [all …]
|
| /linux/sound/core/seq/oss/ |
| H A D | seq_oss_event.h | 20 unsigned char code; member 28 unsigned char code; member 36 unsigned char code; member 44 unsigned char code; member 53 unsigned char code; member 63 unsigned char code; member 73 unsigned char code; member 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/Documentation/driver-api/cxl/linux/ |
| H A D | memory-hotplug.rst | 22 - :code:`CONFIG_MHP_DEFAULT_ONLINE_TYPE` Build Configuration 23 - :code:`memhp_default_state` Boot parameter 24 - :code:`/sys/devices/system/memory/auto_online_blocks` value 29 2) Online in :code:`ZONE_NORMAL` 30 3) Online in :code:`ZONE_MOVABLE` 32 :code:`ZONE_NORMAL` implies this capacity may be used for almost any allocation, 33 while :code:`ZONE_MOVABLE` implies this capacity should only be used for 36 :code:`ZONE_MOVABLE` attempts to retain the hotplug-ability of a memory block 38 onlined into :code:`ZONE_NORMAL` should be considered permanently attached to 51 The location of :code:`struct folio` allocations to represent the hotplugged [all …]
|
| /linux/Documentation/scsi/ |
| H A D | arcmsr_spec.rst | 13 - InitThread message and return code 40 offset 0xa00 for inbound message code message_rwbuffer 42 offset 0xa00 for outbound message code message_rwbuffer 97 1 Error, error code in AdapStatus/DevStatus/SenseData 127 9. Message0 message code 133 ->offset 0xa00 :for outbound message code message_rwbuffer 152 ->offset 0xa00 :for inbound message code message_rwbuffer 167 ->offset 0xa00 for inbound message code message_rwbuffer 196 command code, data and checksum byte 214 command code [all …]
|