Home
last modified time | relevance | path

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

12345678910>>...119

/kernel/linux/linux-6.6/kernel/trace/
H A Dtrace_probe_tmpl.h7 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 in fetch_apply_bitfield()
103 process_common_fetch_insn(struct fetch_insn *code, unsigned long *val) process_common_fetch_insn() argument
123 process_fetch_insn_bottom(struct fetch_insn *code, unsigned long val, void *dest, void *base) process_fetch_insn_bottom() argument
[all...]
H A Dtrace_probe.c3 * Common code for probe-based Dynamic events.
5 * This code was copied from kernel/trace/trace_kprobe.c written by
289 static int parse_trace_event_arg(char *arg, struct fetch_insn *code, in parse_trace_event_arg() argument
298 code->op = FETCH_OP_TP_ARG; in parse_trace_event_arg()
299 code->data = field; in parse_trace_event_arg()
365 struct fetch_insn *code = *pcode + 1; in check_prepare_btf_string_fetch() local
367 if (code->op == FETCH_OP_END) { in check_prepare_btf_string_fetch()
372 code->op = FETCH_OP_UDEREF; in check_prepare_btf_string_fetch()
374 code->op = FETCH_OP_DEREF; in check_prepare_btf_string_fetch()
375 code in check_prepare_btf_string_fetch()
525 struct fetch_insn *code = *pcode; parse_btf_field() local
601 struct fetch_insn *code = *pcode; parse_btf_arg() local
701 struct fetch_insn *code = *pcode; parse_btf_bitfield() local
766 struct fetch_insn *code = *pcode; parse_probe_vars() local
891 struct fetch_insn *code = *pcode; parse_probe_arg() local
1063 struct fetch_insn *code = *pcode; __parse_bitfield_probe_arg() local
1098 struct fetch_insn *code, *scode, *tmp = NULL; traceprobe_parse_probe_arg_body() local
1418 struct fetch_insn *code = arg->code; traceprobe_free_probe_arg() local
1579 struct fetch_insn *code = arg->code; traceprobe_update_arg() local
[all...]
/kernel/linux/linux-5.10/kernel/trace/
H A Dtrace_probe_tmpl.h7 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 in fetch_apply_bitfield()
72 process_fetch_insn_bottom(struct fetch_insn *code, unsigned long val, void *dest, void *base) process_fetch_insn_bottom() argument
[all...]
H A Dtrace_probe.c3 * Common code for probe-based Dynamic events.
5 * This code was copied from kernel/trace/trace_kprobe.c written by
273 struct fetch_insn *code, unsigned int flags, int offs) in parse_probe_vars()
281 code->op = FETCH_OP_RETVAL; in parse_probe_vars()
288 code->op = FETCH_OP_STACKP; in parse_probe_vars()
298 code->op = FETCH_OP_STACK; in parse_probe_vars()
299 code->param = (unsigned int)param; in parse_probe_vars()
304 code->op = FETCH_OP_COMM; in parse_probe_vars()
316 code->op = FETCH_OP_ARG; in parse_probe_vars()
317 code in parse_probe_vars()
272 parse_probe_vars(char *arg, const struct fetch_type *t, struct fetch_insn *code, unsigned int flags, int offs) parse_probe_vars() argument
358 struct fetch_insn *code = *pcode; parse_probe_arg() local
512 struct fetch_insn *code = *pcode; __parse_bitfield_probe_arg() local
546 struct fetch_insn *code, *scode, *tmp = NULL; traceprobe_parse_probe_arg_body() local
792 struct fetch_insn *code = arg->code; traceprobe_free_probe_arg() local
808 struct fetch_insn *code = arg->code; traceprobe_update_arg() local
[all...]
/kernel/linux/linux-6.6/kernel/bpf/
H A Ddisasm.c143 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()
174 u8 class = BPF_CLASS(insn->code); in print_bpf_insn()
177 if (BPF_OP(insn->code) == BPF_END) { in print_bpf_insn()
182 } else if (BPF_OP(insn->code) == BPF_NEG) { in print_bpf_insn()
184 insn->code, clas in print_bpf_insn()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Ddisasm.c143 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()
174 u8 class = BPF_CLASS(insn->code); in print_bpf_insn()
177 if (BPF_OP(insn->code) == BPF_END) { in print_bpf_insn()
182 } else if (BPF_OP(insn->code) == BPF_NEG) { in print_bpf_insn()
184 insn->code, clas in print_bpf_insn()
[all...]
/kernel/linux/linux-5.10/kernel/bpf/
H A Ddisasm.c112 insn->code, insn->dst_reg, in print_bpf_end_insn()
113 BPF_SRC(insn->code) == BPF_TO_BE ? "be" : "le", in print_bpf_end_insn()
122 u8 class = BPF_CLASS(insn->code); in print_bpf_insn()
125 if (BPF_OP(insn->code) == BPF_END) { in print_bpf_insn()
127 verbose(cbs->private_data, "BUG_alu64_%02x\n", insn->code); in print_bpf_insn()
130 } else if (BPF_OP(insn->code) == BPF_NEG) { in print_bpf_insn()
132 insn->code, class == BPF_ALU ? 'w' : 'r', in print_bpf_insn()
135 } else if (BPF_SRC(insn->code) == BPF_X) { in print_bpf_insn()
137 insn->code, class == BPF_ALU ? 'w' : 'r', in print_bpf_insn()
139 bpf_alu_string[BPF_OP(insn->code) >> in print_bpf_insn()
[all...]
/kernel/linux/linux-5.10/arch/ia64/kernel/
H A Dunwind_decoder.c30 * UNW_DEC_BAD_CODE(code)
86 unw_decode_x1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x1() argument
103 unw_decode_x2 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x2() argument
121 unw_decode_x3 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x3() argument
141 unw_decode_x4 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x4() argument
162 unw_decode_r1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_r1() argument
164 int body = (code & 0x20) != 0; in unw_decode_r1()
167 rlen = (code & 0x1f); in unw_decode_r1()
173 unw_decode_r2 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_r2() argument
180 mask = ((code in unw_decode_r2()
188 unw_decode_r3(unsigned char *dp, unsigned char code, void *arg) unw_decode_r3() argument
198 unw_decode_p1(unsigned char *dp, unsigned char code, void *arg) unw_decode_p1() argument
207 unw_decode_p2_p5(unsigned char *dp, unsigned char code, void *arg) unw_decode_p2_p5() argument
256 unw_decode_p6(unsigned char *dp, unsigned char code, void *arg) unw_decode_p6() argument
269 unw_decode_p7_p10(unsigned char *dp, unsigned char code, void *arg) unw_decode_p7_p10() argument
368 unw_decode_b1(unsigned char *dp, unsigned char code, void *arg) unw_decode_b1() argument
380 unw_decode_b2(unsigned char *dp, unsigned char code, void *arg) unw_decode_b2() argument
390 unw_decode_b3_x4(unsigned char *dp, unsigned char code, void *arg) unw_decode_b3_x4() argument
454 unsigned char code; unw_decode() local
[all...]
/kernel/linux/linux-6.6/arch/ia64/kernel/
H A Dunwind_decoder.c30 * UNW_DEC_BAD_CODE(code)
86 unw_decode_x1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x1() argument
103 unw_decode_x2 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x2() argument
121 unw_decode_x3 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x3() argument
141 unw_decode_x4 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x4() argument
162 unw_decode_r1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_r1() argument
164 int body = (code & 0x20) != 0; in unw_decode_r1()
167 rlen = (code & 0x1f); in unw_decode_r1()
173 unw_decode_r2 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_r2() argument
180 mask = ((code in unw_decode_r2()
188 unw_decode_r3(unsigned char *dp, unsigned char code, void *arg) unw_decode_r3() argument
198 unw_decode_p1(unsigned char *dp, unsigned char code, void *arg) unw_decode_p1() argument
207 unw_decode_p2_p5(unsigned char *dp, unsigned char code, void *arg) unw_decode_p2_p5() argument
256 unw_decode_p6(unsigned char *dp, unsigned char code, void *arg) unw_decode_p6() argument
269 unw_decode_p7_p10(unsigned char *dp, unsigned char code, void *arg) unw_decode_p7_p10() argument
368 unw_decode_b1(unsigned char *dp, unsigned char code, void *arg) unw_decode_b1() argument
380 unw_decode_b2(unsigned char *dp, unsigned char code, void *arg) unw_decode_b2() argument
390 unw_decode_b3_x4(unsigned char *dp, unsigned char code, void *arg) unw_decode_b3_x4() argument
454 unsigned char code; unw_decode() local
[all...]
/kernel/linux/linux-5.10/drivers/scsi/
H A Dscript_asm.pl179 @code = (); # Array of 32 bit words for SIOP
198 # &patch ($address, $offset, $length, $value) patches $code[$address]
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);
226 # Side effects are that the bytes are combined into the @code arra
[all...]
/kernel/linux/linux-6.6/drivers/scsi/
H A Dscript_asm.pl179 @code = (); # Array of 32 bit words for SIOP
198 # &patch ($address, $offset, $length, $value) patches $code[$address]
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);
226 # Side effects are that the bytes are combined into the @code arra
[all...]
/kernel/linux/linux-6.6/arch/s390/kernel/
H A Ddiag.c28 int code; member
33 [DIAG_STAT_X008] = { .code = 0x008, .name = "Console Function" },
34 [DIAG_STAT_X00C] = { .code = 0x00c, .name = "Pseudo Timer" },
35 [DIAG_STAT_X010] = { .code = 0x010, .name = "Release Pages" },
36 [DIAG_STAT_X014] = { .code = 0x014, .name = "Spool File Services" },
37 [DIAG_STAT_X044] = { .code = 0x044, .name = "Voluntary Timeslice End" },
38 [DIAG_STAT_X064] = { .code = 0x064, .name = "NSS Manipulation" },
39 [DIAG_STAT_X08C] = { .code = 0x08c, .name = "Access 3270 Display Device Information" },
40 [DIAG_STAT_X09C] = { .code = 0x09c, .name = "Relinquish Timeslice" },
41 [DIAG_STAT_X0DC] = { .code
[all...]
/kernel/linux/linux-5.10/drivers/media/test-drivers/vimc/
H A Dvimc-debayer.c25 u32 code; member
49 .code = MEDIA_BUS_FMT_SRGGB8_1X8,
69 .code = MEDIA_BUS_FMT_SBGGR8_1X8,
74 .code = MEDIA_BUS_FMT_SGBRG8_1X8,
79 .code = MEDIA_BUS_FMT_SGRBG8_1X8,
84 .code = MEDIA_BUS_FMT_SRGGB8_1X8,
89 .code = MEDIA_BUS_FMT_SBGGR10_1X10,
94 .code = MEDIA_BUS_FMT_SGBRG10_1X10,
99 .code = MEDIA_BUS_FMT_SGRBG10_1X10,
104 .code
130 vimc_deb_pix_map_by_code(u32 code) vimc_deb_pix_map_by_code() argument
141 vimc_deb_src_code_is_valid(u32 code) vimc_deb_src_code_is_valid() argument
171 vimc_deb_enum_mbus_code(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg, struct v4l2_subdev_mbus_code_enum *code) vimc_deb_enum_mbus_code() argument
278 u32 code = fmt->format.code; vimc_deb_set_fmt() local
[all...]
H A Dvimc-common.c22 .code = {
31 .code = {
46 .code = { MEDIA_BUS_FMT_ARGB8888_1X32 },
54 .code = { MEDIA_BUS_FMT_SBGGR8_1X8 },
60 .code = { MEDIA_BUS_FMT_SGBRG8_1X8 },
66 .code = { MEDIA_BUS_FMT_SGRBG8_1X8 },
72 .code = { MEDIA_BUS_FMT_SRGGB8_1X8 },
78 .code = { MEDIA_BUS_FMT_SBGGR10_1X10 },
84 .code = { MEDIA_BUS_FMT_SGBRG10_1X10 },
90 .code
214 vimc_pix_map_by_code(u32 code) vimc_pix_map_by_code() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/test-drivers/vimc/
H A Dvimc-debayer.c25 u32 code; member
50 .code = MEDIA_BUS_FMT_SRGGB8_1X8,
70 .code = MEDIA_BUS_FMT_SBGGR8_1X8,
75 .code = MEDIA_BUS_FMT_SGBRG8_1X8,
80 .code = MEDIA_BUS_FMT_SGRBG8_1X8,
85 .code = MEDIA_BUS_FMT_SRGGB8_1X8,
90 .code = MEDIA_BUS_FMT_SBGGR10_1X10,
95 .code = MEDIA_BUS_FMT_SGBRG10_1X10,
100 .code = MEDIA_BUS_FMT_SGRBG10_1X10,
105 .code
131 vimc_debayer_pix_map_by_code(u32 code) vimc_debayer_pix_map_by_code() argument
142 vimc_debayer_src_code_is_valid(u32 code) vimc_debayer_src_code_is_valid() argument
172 vimc_debayer_enum_mbus_code(struct v4l2_subdev *sd, struct v4l2_subdev_state *sd_state, struct v4l2_subdev_mbus_code_enum *code) vimc_debayer_enum_mbus_code() argument
279 u32 code = fmt->format.code; vimc_debayer_set_fmt() local
[all...]
H A Dvimc-common.c22 .code = {
31 .code = {
46 .code = { MEDIA_BUS_FMT_ARGB8888_1X32 },
54 .code = { MEDIA_BUS_FMT_SBGGR8_1X8 },
60 .code = { MEDIA_BUS_FMT_SGBRG8_1X8 },
66 .code = { MEDIA_BUS_FMT_SGRBG8_1X8 },
72 .code = { MEDIA_BUS_FMT_SRGGB8_1X8 },
78 .code = { MEDIA_BUS_FMT_SBGGR10_1X10 },
84 .code = { MEDIA_BUS_FMT_SGBRG10_1X10 },
90 .code
214 vimc_pix_map_by_code(u32 code) vimc_pix_map_by_code() argument
[all...]
/kernel/linux/linux-5.10/arch/s390/kernel/
H A Ddiag.c25 int code; member
30 [DIAG_STAT_X008] = { .code = 0x008, .name = "Console Function" },
31 [DIAG_STAT_X00C] = { .code = 0x00c, .name = "Pseudo Timer" },
32 [DIAG_STAT_X010] = { .code = 0x010, .name = "Release Pages" },
33 [DIAG_STAT_X014] = { .code = 0x014, .name = "Spool File Services" },
34 [DIAG_STAT_X044] = { .code = 0x044, .name = "Voluntary Timeslice End" },
35 [DIAG_STAT_X064] = { .code = 0x064, .name = "NSS Manipulation" },
36 [DIAG_STAT_X09C] = { .code = 0x09c, .name = "Relinquish Timeslice" },
37 [DIAG_STAT_X0DC] = { .code = 0x0dc, .name = "Appldata Control" },
38 [DIAG_STAT_X204] = { .code
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dfweh.c22 * @code: event code.
31 enum brcmf_fweh_event_code code; member
40 * struct brcmf_fweh_event_name - code, name mapping entry.
43 enum brcmf_fweh_event_code code; member
51 /* array for mapping code to event name */
58 * brcmf_fweh_event_name() - returns name for given event code.
60 * @code: code to lookup.
62 const char *brcmf_fweh_event_name(enum brcmf_fweh_event_code code) in brcmf_fweh_event_name() argument
72 brcmf_fweh_event_name(enum brcmf_fweh_event_code code) brcmf_fweh_event_name() argument
95 brcmf_fweh_call_event_handler(struct brcmf_pub *drvr, struct brcmf_if *ifp, enum brcmf_fweh_event_code code, struct brcmf_event_msg *emsg, void *data) brcmf_fweh_call_event_handler() argument
326 brcmf_fweh_register(struct brcmf_pub *drvr, enum brcmf_fweh_event_code code, brcmf_fweh_handler_t handler) brcmf_fweh_register() argument
345 brcmf_fweh_unregister(struct brcmf_pub *drvr, enum brcmf_fweh_event_code code) brcmf_fweh_unregister() argument
399 enum brcmf_fweh_event_code code; brcmf_fweh_process_event() local
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dfweh.c22 * @code: event code.
31 enum brcmf_fweh_event_code code; member
40 * struct brcmf_fweh_event_name - code, name mapping entry.
43 enum brcmf_fweh_event_code code; member
51 /* array for mapping code to event name */
58 * brcmf_fweh_event_name() - returns name for given event code.
60 * @code: code to lookup.
62 const char *brcmf_fweh_event_name(enum brcmf_fweh_event_code code) in brcmf_fweh_event_name() argument
72 brcmf_fweh_event_name(enum brcmf_fweh_event_code code) brcmf_fweh_event_name() argument
95 brcmf_fweh_call_event_handler(struct brcmf_pub *drvr, struct brcmf_if *ifp, enum brcmf_fweh_event_code code, struct brcmf_event_msg *emsg, void *data) brcmf_fweh_call_event_handler() argument
326 brcmf_fweh_register(struct brcmf_pub *drvr, enum brcmf_fweh_event_code code, brcmf_fweh_handler_t handler) brcmf_fweh_register() argument
345 brcmf_fweh_unregister(struct brcmf_pub *drvr, enum brcmf_fweh_event_code code) brcmf_fweh_unregister() argument
400 enum brcmf_fweh_event_code code; brcmf_fweh_process_event() local
[all...]
/kernel/linux/linux-5.10/scripts/
H A Ddecodecode24 code=
31 code=$i
38 code="$code $xdump"
48 if [ -z "$code" ]; then
53 echo $code
54 code=`echo $code | sed -e 's/.*Code: //'`
56 width=`expr index "$code" ' '`
105 marker=`expr index "$code" "\<"`
[all...]
/kernel/linux/linux-5.10/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) 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 > in fdtv_handle_rc()
[all...]
/kernel/linux/linux-6.6/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) 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 > in fdtv_handle_rc()
[all...]
/kernel/linux/linux-5.10/tools/include/linux/
H A Dfilter.h36 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
44 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
54 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
62 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
72 .code = BPF_ALU | BPF_END | BPF_SRC(TYPE), \
82 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
90 .code = BPF_ALU | BPF_MOV | BPF_X, \
100 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
108 .code = BPF_ALU | BPF_MOV | BPF_K, \
118 .code
[all...]
/kernel/linux/linux-6.6/tools/include/linux/
H A Dfilter.h36 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
44 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
54 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
62 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
72 .code = BPF_ALU | BPF_END | BPF_SRC(TYPE), \
82 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
90 .code = BPF_ALU | BPF_MOV | BPF_X, \
100 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
108 .code = BPF_ALU | BPF_MOV | BPF_K, \
118 .code
[all...]
/kernel/linux/linux-6.6/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" ' '`
157 # @all_code: code i
[all...]

Completed in 11 milliseconds

12345678910>>...119