Home
last modified time | relevance | path

Searched refs:q (Results 1 – 25 of 63) sorted by relevance

123

/busybox-1.35.0/libbb/
Dprocess_escape_sequence.c20 const char *q; in bb_process_escape_sequence() local
27 q = *ptr; in bb_process_escape_sequence()
29 if (WANT_HEX_ESCAPES && *q == 'x') { in bb_process_escape_sequence()
30 ++q; in bb_process_escape_sequence()
40 unsigned d = (unsigned char)(*q) - '0'; in bb_process_escape_sequence()
43 d = (unsigned char)_tolower(*q) - 'a'; in bb_process_escape_sequence()
71 ++q; in bb_process_escape_sequence()
88 if (*p == *q) { in bb_process_escape_sequence()
89 q++; in bb_process_escape_sequence()
100 *ptr = q; in bb_process_escape_sequence()
Dpw_encrypt_des.c718 uint8_t *q; in des_crypt() local
728 q = (uint8_t *)keybuf; in des_crypt()
729 while (q - (uint8_t *)keybuf != 8) { in des_crypt()
730 *q = *key << 1; in des_crypt()
731 if (*q) in des_crypt()
733 q++; in des_crypt()
754 q = (uint8_t *)output + 2; in des_crypt()
755 *q++ = ascii64[(l >> 18) & 0x3f]; /* bits 31..26 of r0 */ in des_crypt()
756 *q++ = ascii64[(l >> 12) & 0x3f]; /* bits 25..20 of r0 */ in des_crypt()
757 *q++ = ascii64[(l >> 6) & 0x3f]; /* bits 19..14 of r0 */ in des_crypt()
[all …]
/busybox-1.35.0/scripts/
Decho.c45 const char *q; in bb_process_escape_sequence() local
54 q = *ptr; in bb_process_escape_sequence()
57 if (*q == 'x') { in bb_process_escape_sequence()
58 ++q; in bb_process_escape_sequence()
65 d = (unsigned char)(*q) - '0'; in bb_process_escape_sequence()
68 d = (unsigned char)(_tolower(*q)) - 'a' + 10; in bb_process_escape_sequence()
76 --q; in bb_process_escape_sequence()
88 ++q; in bb_process_escape_sequence()
94 if (*p == *q) { in bb_process_escape_sequence()
95 q++; in bb_process_escape_sequence()
[all …]
/busybox-1.35.0/shell/hush_test/hush-glob/
Dglob_altvalue1.tests9 echo 1q: "${x:+glob_altvalue1.t*}"
10 echo 2q: "${x:+'glob_altvalue1.t*'}"
11 echo 3q: "${x:+"glob_altvalue1.t*"}"
12 ##echo 4q: "${x:+glob_altvalue1.t\*}"
13 ##echo 5q: "${x:+"glob_altvalue1.t\*"}"
Dglob_altvalue1.right5 1q: glob_altvalue1.t*
6 2q: 'glob_altvalue1.t*'
7 3q: glob_altvalue1.t*
/busybox-1.35.0/shell/ash_test/ash-glob/
Dglob_altvalue1.tests9 echo 1q: "${x:+glob_altvalue1.t*}"
10 echo 2q: "${x:+'glob_altvalue1.t*'}"
11 echo 3q: "${x:+"glob_altvalue1.t*"}"
12 ##echo 4q: "${x:+glob_altvalue1.t\*}"
13 ##echo 5q: "${x:+"glob_altvalue1.t\*"}"
Dglob_altvalue1.right5 1q: glob_altvalue1.t*
6 2q: 'glob_altvalue1.t*'
7 3q: glob_altvalue1.t*
/busybox-1.35.0/printutils/
Dlpd.c172 char *p, *q, var[2]; in lpd_main() local
185 q = xmalloc_xopen_read_close(filenames[0], NULL); in lpd_main()
191 while ((p = strchr(q, '\n')) != NULL && isalpha(*q)) { in lpd_main()
196 if (*q != 'l') { in lpd_main()
197 var[0] = *q++; in lpd_main()
198 xsetenv(var, q); in lpd_main()
200 q = p; // next line in lpd_main()
/busybox-1.35.0/editors/
Dvi.c734 char *q; in end_screen() local
738 q = screenbegin; in end_screen()
740 q = next_line(q); in end_screen()
741 q = end_line(q); in end_screen()
742 return q; in end_screen()
748 char *q; in count_lines() local
752 q = start; in count_lines()
754 stop = q; in count_lines()
769 char *q; in find_line() local
771 for (q = text; li > 1; li--) { in find_line()
[all …]
/busybox-1.35.0/shell/hush_test/hush-parsing/
Dbrace2.right1 {q,w}
2 {q,w}
/busybox-1.35.0/shell/ash_test/ash-parsing/
Dbrace2.right1 {q,w}
2 {q,w}
/busybox-1.35.0/shell/ash_test/ash-vars/
Dvar_wordsplit_ifs3.tests1 a="q w e r t y"
3 for v in ${a#q}; do echo Unquoted#:"<$v>"; done
5 for v in "${a#q}"; do echo Quoted#:"<$v>"; done
Dvar_wordsplit_ifs3.right1 Unquoted%:<q>
11 Quoted%:<q w e r t >
/busybox-1.35.0/shell/hush_test/hush-vars/
Dvar_wordsplit_ifs3.tests1 a="q w e r t y"
3 for v in ${a#q}; do echo Unquoted#:"<$v>"; done
5 for v in "${a#q}"; do echo Quoted#:"<$v>"; done
Dvar_wordsplit_ifs3.right1 Unquoted%:<q>
11 Quoted%:<q w e r t >
/busybox-1.35.0/shell/ash_test/ash-getopts/
Dgetopt_positional.right1 *** no OPTIND, optstring:'we' args:-q -w -e r -t -y
2 Illegal option -q
Dgetopt_optarg.right1 *** no OPTIND, optstring:'w:et' args:-q -w e -r -t -y
2 Illegal option -q
/busybox-1.35.0/shell/hush_test/hush-getopts/
Dgetopt_positional.right1 *** no OPTIND, optstring:'we' args:-q -w -e r -t -y
2 ./getopt_positional.tests: invalid option -- q
Dgetopt_optarg.right1 *** no OPTIND, optstring:'w:et' args:-q -w e -r -t -y
2 ./getopt_optarg.tests: invalid option -- q
/busybox-1.35.0/scripts/basic/
Dfixdep.c232 unsigned char *q; in parse_config_file() local
261 for (q = p; q < end_3+3; q++) { in parse_config_file()
262 if (!(isalnum(*q) || *q == '_')) in parse_config_file()
265 if (q != p) { in parse_config_file()
266 use_config((char*)p, q - p); in parse_config_file()
/busybox-1.35.0/util-linux/
Dfdisk_sun.c170 char *q; in sun_autoconfigure_scsi() local
195 q = strstr(buffer2, "Vendor: "); in sun_autoconfigure_scsi()
196 if (!q) in sun_autoconfigure_scsi()
198 q += 8; in sun_autoconfigure_scsi()
199 vendor = q; in sun_autoconfigure_scsi()
200 q = strstr(q, " "); in sun_autoconfigure_scsi()
201 *q++ = '\0'; /* truncate vendor name */ in sun_autoconfigure_scsi()
202 q = strstr(q, "Model: "); in sun_autoconfigure_scsi()
203 if (!q) in sun_autoconfigure_scsi()
205 *q = '\0'; in sun_autoconfigure_scsi()
[all …]
/busybox-1.35.0/networking/
Dtls_rsa.h10 pstm_int e, d, N, qP, dP, dQ, p, q; member
22 pstm_clear(&key->q); in psRsaKey_clear()
/busybox-1.35.0/shell/hush_test/hush-misc/
Dsource5.right3 0:arg0 1:q 2:w
/busybox-1.35.0/shell/ash_test/ash-misc/
Dsource5.right3 0:arg0 1:q 2:w
/busybox-1.35.0/testsuite/dd/
Ddd-prints-count-to-standard-error2 grep -q records bar

123