Lines Matching refs:bottom56bits
113 static const limb bottom56bits = 0xffffffffffffff; variable
119 out[0] = (*((limb *) & in[0])) & bottom56bits; in bin48_to_felem()
120 out[1] = (*((limb_aX *) & in[7])) & bottom56bits; in bin48_to_felem()
121 out[2] = (*((limb_aX *) & in[14])) & bottom56bits; in bin48_to_felem()
122 out[3] = (*((limb_aX *) & in[21])) & bottom56bits; in bin48_to_felem()
123 out[4] = (*((limb_aX *) & in[28])) & bottom56bits; in bin48_to_felem()
124 out[5] = (*((limb_aX *) & in[35])) & bottom56bits; in bin48_to_felem()
131 (*((limb *) & out[0])) |= (in[0] & bottom56bits); in felem_to_bin48()
132 (*((limb_aX *) & out[7])) |= (in[1] & bottom56bits); in felem_to_bin48()
133 (*((limb_aX *) & out[14])) |= (in[2] & bottom56bits); in felem_to_bin48()
134 (*((limb_aX *) & out[21])) |= (in[3] & bottom56bits); in felem_to_bin48()
135 (*((limb_aX *) & out[28])) |= (in[4] & bottom56bits); in felem_to_bin48()
136 (*((limb_aX *) & out[35])) |= (in[5] & bottom56bits); in felem_to_bin48()