Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 10 of 10) sorted by relevance

/busybox-1.35.0/editors/
Dcmp.c52 int c1, c2; in cmp_main() local
104 c1 = getc(fp1); in cmp_main()
107 if (c1 != c2) { /* Remember: a read error may have occurred. */ in cmp_main()
116 c1 = c2; in cmp_main()
118 if (c1 == EOF) { in cmp_main()
128 line_pos = c1; /* line_pos is unused in the -l case. */ in cmp_main()
139 if (c1 == '\n') { in cmp_main()
142 } while (c1 != EOF); in cmp_main()
Dvi.c3663 int c1; local
3845 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3846 if ((unsigned)c1 <= 25) { // a-z?
3847 YDreg = c1;
3853 c1 = (get_one_char() | 0x20);
3854 if ((unsigned)(c1 - 'a') <= 25) { // a-z?
3855 c1 = (c1 - 'a');
3857 q = mark[c1];
3865 } else if (c1 == '\'') { // goto previous context
3881 c1 = (get_one_char() | 0x20) - 'a';
[all …]
/busybox-1.35.0/libbb/
Dprocess_escape_sequence.c108 char c, c1; in strcpy_and_process_escape_sequences() local
109 c = c1 = *src++; in strcpy_and_process_escape_sequences()
110 if (c1 == '\\') in strcpy_and_process_escape_sequences()
111 c1 = bb_process_escape_sequence(&src); in strcpy_and_process_escape_sequences()
112 *dst = c1; in strcpy_and_process_escape_sequences()
/busybox-1.35.0/networking/
Dtls_pstm_sqr_comba.c61 c0 = c1 = c2 = 0;
67 x = c1;
70 do { c0 = c1; c1 = c2; c2 = 0; } while (0);
81 :"=rm"(c0), "=rm"(c1), "=rm"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i) :"%eax","%edx","cc");
94 :"=rm"(c0), "=rm"(c1), "=rm"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","cc");
123 :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(sc0), "r"(sc1), "r"(sc2) : "cc");
136 c0 = c1 = c2 = 0;
142 x = c1;
145 do { c0 = c1; c1 = c2; c2 = 0; } while (0);
156 :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i) :"%rax","%rdx","cc");
[all …]
Dtls_pstm_mul_comba.c63 c0 = c1 = c2 = 0;
67 do { c0 = c1; c1 = c2; c2 = 0; } while (0);
75 x = c1;
88 :"=rm"(c0), "=rm"(c1), "=rm"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","cc");
104 c0 = c1 = c2 = 0;
108 do { c0 = c1; c1 = c2; c2 = 0; } while (0);
116 x = c1;
129 :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i), "g"(j) :"%rax","%rdx","cc");
139 c0 = c1 = c2 = 0;
142 do { c0 = c1; c1 = c2; c2 = 0; } while (0);
[all …]
/busybox-1.35.0/archival/libarchive/bz/
Dblocksort.c382 uint8_t c1, c2; in mainGtU() local
426 c1 = block[i1]; c2 = block[i2]; in mainGtU()
427 if (c1 != c2) return (c1 > c2); in mainGtU()
435 c1 = block[i1]; c2 = block[i2]; in mainGtU()
436 if (c1 != c2) return (c1 > c2); in mainGtU()
912 unsigned c1; in mainSort() local
917 c1 = block[k]; in mainSort()
918 if (!bigDone[c1]) in mainSort()
919 ptr[copyStart[c1]++] = k; in mainSort()
922 unsigned c1; in mainSort() local
[all …]
/busybox-1.35.0/shell/hush_test/hush-misc/
Dand-or.tests11 true || echo c1 || echo c2
/busybox-1.35.0/shell/ash_test/ash-misc/
Dand-or.tests11 true || echo c1 || echo c2
/busybox-1.35.0/docs/
Dunicode_UTF-8-test.txt220 4.2.1 U-0000007F = c1 bf = "��" |
/busybox-1.35.0/miscutils/
Dbc.c2141 BcNum c1; in zbc_num_rem() local
2144 bc_num_init(&c1, len); in zbc_num_rem()
2145 s = zbc_num_r(a, b, &c1, c, scale, ts); in zbc_num_rem()
2146 bc_num_free(&c1); in zbc_num_rem()