/busybox-1.35.0/archival/libarchive/ |
D | liblzo.h | 48 #define DX2(p,s1,s2) \ argument 49 (((((unsigned)((p)[2]) << (s2)) ^ (p)[1]) << (s1)) ^ (p)[0]) 52 #define DX3(p,s1,s2,s3) ((DX2((p)+1,s2,s3) << (s1)) ^ (p)[0]) argument
|
/busybox-1.35.0/libbb/ |
D | uuencode.c | 57 unsigned s1, s2; in bb_uuencode() local 60 s1 = s2 = 0; in bb_uuencode() 65 s2 = s[2]; in bb_uuencode() 69 *p++ = tbl[((s1 & 0xf) << 2) + (s2 >> 6)]; in bb_uuencode() 70 *p++ = tbl[s2 & 0x3f]; in bb_uuencode()
|
/busybox-1.35.0/networking/ |
D | ftpgetput.c | 97 static int ftpcmd(const char *s1, const char *s2) in ftpcmd() argument 102 bb_error_msg("cmd %s %s", s1, s2); in ftpcmd() 106 fprintf(control_stream, (s2 ? "%s %s\r\n" : "%s %s\r\n"+3), in ftpcmd() 107 s1, s2); in ftpcmd()
|
D | tls.h | 98 #define memcmpct(s1, s2, len) memcmp((s1), (s2), (len)) argument
|
D | wget.c | 508 static int ftpcmd(const char *s1, const char *s2, FILE *fp) in ftpcmd() argument 512 if (!s2) in ftpcmd() 513 s2 = ""; in ftpcmd() 514 fprintf(fp, "%s%s\r\n", s1, s2); in ftpcmd() 517 fprintf(stderr, "--> %s%s\n\n", s1, s2); in ftpcmd() 519 log_io("> %s%s", s1, s2); in ftpcmd()
|
D | tls.c | 342 const uint8_t* s2 = src2; in xorbuf3() local 344 *d++ = *s1++ ^ *s2++; in xorbuf3()
|
/busybox-1.35.0/archival/ |
D | lzop.c | 520 uint32_t s2 = (adler >> 16) & 0xffff; in lzo_adler32() local 531 s2 += s1; in lzo_adler32() 534 s2 %= LZO_BASE; in lzo_adler32() 536 return (s2 << 16) | s1; in lzo_adler32()
|
D | dpkg.c | 1358 char s1, s2; /* status abbreviations */ in list_packages() local 1376 s2 = stat_str[j]; in list_packages() 1379 printf("%c%c %-14s %s\n", s1, s2, name_str, vers_str); in list_packages()
|
/busybox-1.35.0/archival/libarchive/bz/ |
D | blocksort.c | 383 uint16_t s1, s2; in mainGtU() local 437 s1 = quadrant[i1]; s2 = quadrant[i2]; in mainGtU() 438 if (s1 != s2) return (s1 > s2); in mainGtU()
|
/busybox-1.35.0/scripts/kconfig/ |
D | expr.h | 156 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
|
D | expr.c | 43 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() argument 49 e->right.sym = s2; in expr_alloc_comp()
|
D | lex.zconf.c_shipped | 2159 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) 2163 s1[i] = s2[i];
|
/busybox-1.35.0/util-linux/ |
D | mdev.c | 445 const char *s2 = strchr(s, val[0]); in parse_next_rule() local 446 if (!s2) { in parse_next_rule()
|
/busybox-1.35.0/editors/ |
D | vi.c | 2416 static int mycmp(const char *s1, const char *s2, int len) in mycmp() argument 2419 return strncasecmp(s1, s2, len); in mycmp() 2421 return strncmp(s1, s2, len); in mycmp()
|