Symbol: limb_aX
crypto/openssl/crypto/ec/ecp_nistp224.c
313
out[1] = (*((const limb_aX *)(in + 7))) & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
314
out[2] = (*((const limb_aX *)(in + 14))) & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
315
out[3] = (*((const limb_aX *)(in + 20))) >> 8;
crypto/openssl/crypto/ec/ecp_nistp384.c
120
out[1] = (*((limb_aX *)&in[7])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
121
out[2] = (*((limb_aX *)&in[14])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
122
out[3] = (*((limb_aX *)&in[21])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
123
out[4] = (*((limb_aX *)&in[28])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
124
out[5] = (*((limb_aX *)&in[35])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
132
(*((limb_aX *)&out[7])) |= (in[1] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
133
(*((limb_aX *)&out[14])) |= (in[2] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
134
(*((limb_aX *)&out[21])) |= (in[3] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
135
(*((limb_aX *)&out[28])) |= (in[4] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
136
(*((limb_aX *)&out[35])) |= (in[5] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp521.c
146
out[1] = (*((limb_aX *)&in[7]) >> 2) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
147
out[2] = (*((limb_aX *)&in[14]) >> 4) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
148
out[3] = (*((limb_aX *)&in[21]) >> 6) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
149
out[4] = (*((limb_aX *)&in[29])) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
150
out[5] = (*((limb_aX *)&in[36]) >> 2) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
151
out[6] = (*((limb_aX *)&in[43]) >> 4) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
152
out[7] = (*((limb_aX *)&in[50]) >> 6) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
153
out[8] = (*((limb_aX *)&in[58])) & bottom57bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
164
(*((limb_aX *)&out[7])) |= in[1] << 2;
crypto/openssl/crypto/ec/ecp_nistp521.c
165
(*((limb_aX *)&out[14])) |= in[2] << 4;
crypto/openssl/crypto/ec/ecp_nistp521.c
166
(*((limb_aX *)&out[21])) |= in[3] << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
167
(*((limb_aX *)&out[29])) = in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
168
(*((limb_aX *)&out[36])) |= in[5] << 2;
crypto/openssl/crypto/ec/ecp_nistp521.c
169
(*((limb_aX *)&out[43])) |= in[6] << 4;
crypto/openssl/crypto/ec/ecp_nistp521.c
170
(*((limb_aX *)&out[50])) |= in[7] << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
171
(*((limb_aX *)&out[58])) = in[8];