Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 65) sorted by relevance

123

/busybox-1.35.0/util-linux/volume_id/
Dvolume_id_internal.h100 # define le16_to_cpu(x) (uint16_t)(x) argument
101 # define le32_to_cpu(x) (uint32_t)(x) argument
102 # define le64_to_cpu(x) (uint64_t)(x) argument
103 # define be16_to_cpu(x) (uint16_t)(bswap_16(x)) argument
104 # define be32_to_cpu(x) (uint32_t)(bswap_32(x)) argument
105 # define cpu_to_le16(x) (uint16_t)(x) argument
106 # define cpu_to_le32(x) (uint32_t)(x) argument
107 # define cpu_to_be32(x) (uint32_t)(bswap_32(x)) argument
109 # define le16_to_cpu(x) (uint16_t)(bswap_16(x)) argument
110 # define le32_to_cpu(x) (uint32_t)(bswap_32(x)) argument
[all …]
/busybox-1.35.0/networking/
Dtls_pstm_mul_comba.c70 #define COMBA_STORE(x) \ argument
74 #define COMBA_STORE2(x) \ argument
111 #define COMBA_STORE(x) \ argument
115 #define COMBA_STORE2(x) \ argument
144 #define COMBA_STORE(x) \ argument
147 #define COMBA_STORE2(x) \ argument
173 #define COMBA_STORE(x) \ argument
176 #define COMBA_STORE2(x) \ argument
207 #define COMBA_STORE(x) \ argument
210 #define COMBA_STORE2(x) \ argument
Dtls_aesgcm.c38 static void RIGHTSHIFTX(byte* x) in RIGHTSHIFTX()
140 byte x[AES_BLOCK_SIZE] ALIGNED_long; in aesgcm_GHASH() local
193 P32(x)[1] ^= SWAP_BE32(aSz * 8); in aesgcm_GHASH() local
195 P32(x)[3] ^= SWAP_BE32(cSz * 8); in aesgcm_GHASH() local
Dtls_pstm_sqr_comba.c63 #define COMBA_STORE(x) \ argument
66 #define COMBA_STORE2(x) \ argument
138 #define COMBA_STORE(x) \ argument
141 #define COMBA_STORE2(x) \ argument
208 #define COMBA_STORE(x) \ argument
211 #define COMBA_STORE2(x) \ argument
274 #define COMBA_STORE(x) \ argument
277 #define COMBA_STORE2(x) \ argument
383 #define COMBA_STORE(x) \ argument
386 #define COMBA_STORE2(x) \ argument
Dtls_pstm.c521 static void pstm_rshd(pstm_int *a, int x) in pstm_rshd()
553 int x; //bbox: was int16 in pstm_lshd() local
642 int x, oldused; //bbox: was int16 in pstm_mul_2() local
708 int32 x; in s_pstm_sub() local
747 int x, y, oldused; //bbox: was int16 in s_pstm_add() local
869 pstm_digit x, b; in pstm_montgomery_setup() local
905 int32 x; in pstm_montgomery_calc_normalization() local
945 int x; //bbox: was int16 in pstm_mul_2d() local
991 int x; //bbox: was int16 in pstm_mod_2d() local
1031 int x, oldused; //bbox: was int16 in pstm_mul_d() local
[all …]
Dtls_aes.c118 static uint32_t Subword(uint32_t x) in Subword()
241 unsigned x, y, z, t; in MixColumns() local
291 static ALWAYS_INLINE unsigned Multiply(unsigned x) in Multiply()
308 unsigned x, y, z, t; in InvMixColumns() local
Dtls_fe.c50 static void lm_copy(byte* x, const byte* a) in lm_copy()
202 static void fe_reduce(byte *x, word32 c) in fe_reduce()
217 static void fe_normalize(byte *x) in fe_normalize()
345 static void fe_inv__distinct(byte *r, const byte *x) in fe_inv__distinct()
Droute.c67 #define mask_in_addr(x) (((struct sockaddr_in *)&((x).rt_genmask))->sin_addr.s_addr) argument
68 #define full_mask(x) (x) argument
70 #define mask_in_addr(x) ((x).rt_genmask) argument
71 #define full_mask(x) (((struct sockaddr_in *)&(x))->sin_addr.s_addr) argument
/busybox-1.35.0/libbb/
Dhash_md5prime.c118 #define F(x, y, z) (((x) & (y)) | (~(x) & (z))) argument
119 #define G(x, y, z) (((x) & (z)) | ((y) & ~(z))) argument
120 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
121 #define I(x, y, z) ((y) ^ ((x) | ~(z))) argument
124 #define rotl32(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) argument
130 #define FF(a, b, c, d, x, s, ac) { \ argument
135 #define GG(a, b, c, d, x, s, ac) { \ argument
140 #define HH(a, b, c, d, x, s, ac) { \ argument
145 #define II(a, b, c, d, x, s, ac) { \ argument
154 uint32_t a, b, c, d, x[16]; in md5_transform() local
Dhash_md5_sha.c19 static ALWAYS_INLINE uint32_t rotl32(uint32_t x, unsigned n) in rotl32()
24 static ALWAYS_INLINE uint32_t rotr32(uint32_t x, unsigned n) in rotr32()
30 static ALWAYS_INLINE uint64_t rotr64(uint64_t x, unsigned n) in rotr64()
36 static ALWAYS_INLINE uint64_t rotl64(uint64_t x, unsigned n) in rotl64()
630 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha256_process_block64() argument
631 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha256_process_block64() argument
632 #define S0(x) (rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22)) in sha256_process_block64() argument
633 #define S1(x) (rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25)) in sha256_process_block64() argument
634 #define R0(x) (rotr32(x, 7) ^ rotr32(x, 18) ^ (x >> 3)) in sha256_process_block64() argument
635 #define R1(x) (rotr32(x, 17) ^ rotr32(x, 19) ^ (x >> 10)) in sha256_process_block64() argument
[all …]
Dbb_bswap_64.c12 uint64_t FAST_FUNC bb_bswap_64(uint64_t x) in bb_bswap_64()
Disqrt.c22 unsigned long x; in isqrt() local
/busybox-1.35.0/include/
Dplatform.h29 # define __attribute__(x) argument
199 # define bb_bswap_64(x) bswap_64(x) argument
204 # define SWAP_BE16(x) (x) argument
205 # define SWAP_BE32(x) (x) argument
206 # define SWAP_BE64(x) (x) argument
207 # define SWAP_LE16(x) bswap_16(x) argument
208 # define SWAP_LE32(x) bswap_32(x) argument
209 # define SWAP_LE64(x) bb_bswap_64(x) argument
213 # define SWAP_BE16(x) bswap_16(x) argument
214 # define SWAP_BE32(x) bswap_32(x) argument
[all …]
/busybox-1.35.0/scripts/kconfig/lxdialog/
Dyesno.c29 int x = width / 2 - 10; in print_buttons() local
44 int i, x, y, key = 0, button = 0; in dialog_yesno() local
Dchecklist.c60 int y, int x, int height) in print_arrows()
97 int x = width / 2 - 11; in print_buttons() local
115 int i, x, y, box_x, box_y; in dialog_checklist() local
Dutil.c200 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x) in print_autowrap()
262 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button()
290 draw_box(WINDOW * win, int y, int x, int height, int width, in draw_box()
324 void draw_shadow(WINDOW * win, int y, int x, int height, int width) in draw_shadow()
Dinputbox.c31 int x = width / 2 - 11; in print_buttons() local
47 int i, x, y, box_y, box_x, box_width; in dialog_inputbox() local
Dmenubox.c110 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows()
156 int x = width / 2 - 16; in print_buttons() local
185 int i, j, x, y, box_x, box_y; in dialog_menu() local
Dmsgbox.c31 int i, x, y, key = 0; in dialog_msgbox() local
Dtextbox.c39 int i, x, y, cur_x, cur_y, fpos, key = 0; in dialog_textbox() local
449 int y, x; in print_line() local
/busybox-1.35.0/procps/
Duptime.c51 #define LOAD_INT(x) (unsigned)((x) >> FSHIFT) argument
52 #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1 - 1)) * 100) argument
/busybox-1.35.0/archival/libarchive/
Dliblzo.h77 # define NEED_IP(x) \ argument
79 # define TEST_IV(x) if ((x) > (unsigned)0 - (511)) goto input_overrun argument
83 # define NEED_OP(x) \ argument
85 # define TEST_OV(x) if ((x) > (unsigned)0 - (511)) goto output_overrun argument
/busybox-1.35.0/miscutils/
Dconspy.c57 #define CHAR(x) (*(uint8_t*)(x)) argument
58 #define ATTR(x) (((uint8_t*)(x))[1]) argument
59 #define NEXT(x) ((x) += 2) argument
60 #define DATA(x) (*(uint16_t*)(x)) argument
65 int x, y; member
105 #define FLAG(x) (1 << FLAG_##x) argument
180 unsigned x = j - G.x; // if will catch j < G.x too in screen_read_close() local
/busybox-1.35.0/modutils/
Dmodutils-24.c75 #define MATCH_MACHINE(x) (x == EM_ALPHA) argument
83 #define MATCH_MACHINE(x) (x == EM_ARM) argument
101 #define MATCH_MACHINE(x) (x == EM_NDS32) argument
108 #define MATCH_MACHINE(x) (x == EM_NDS32) argument
117 #define MATCH_MACHINE(x) (x == EM_BLACKFIN) argument
125 #define MATCH_MACHINE(x) (x == EM_CRIS) argument
138 #define MATCH_MACHINE(x) (x == EM_H8_300) argument
148 #define MATCH_MACHINE(x) (x == EM_PARISC) argument
162 #define MATCH_MACHINE(x) (x == EM_386) argument
164 #define MATCH_MACHINE(x) (x == EM_386 || x == EM_486) argument
[all …]
/busybox-1.35.0/archival/libarchive/unxz/
Dxz_config.h37 #define min(x, y) ((x) < (y) ? (x) : (y)) argument
38 #define min_t(type, x, y) min(x, y) argument

123