Home
last modified time | relevance | path

Searched refs:c3 (Results 1 – 25 of 51) sorted by relevance

123

/dragonfly/crypto/libressl/crypto/bn/
HDbn_asm.c643 BN_ULONG c1, c2, c3; in bn_mul_comba8() local
647 c3 = 0; in bn_mul_comba8()
648 mul_add_c(a[0], b[0], c1, c2, c3); in bn_mul_comba8()
651 mul_add_c(a[0], b[1], c2, c3, c1); in bn_mul_comba8()
652 mul_add_c(a[1], b[0], c2, c3, c1); in bn_mul_comba8()
655 mul_add_c(a[2], b[0], c3, c1, c2); in bn_mul_comba8()
656 mul_add_c(a[1], b[1], c3, c1, c2); in bn_mul_comba8()
657 mul_add_c(a[0], b[2], c3, c1, c2); in bn_mul_comba8()
658 r[2] = c3; in bn_mul_comba8()
659 c3 = 0; in bn_mul_comba8()
[all …]
/dragonfly/tools/regression/bin/sh/expansion/
HDtrim8.011 c3=$(printf '\342\202\254')
15 s=$c1$c2$c3$c4
36 testcase 'set -- "${s#$c1}"' "1|$c2$c3$c4"
37 testcase 'set -- "${s#$c1$c2}"' "1|$c3$c4"
38 testcase 'set -- "${s#$c1$c2$c3}"' "1|$c4"
39 testcase 'set -- "${s#$c1$c2$c3$c4}"' "1|"
40 testcase 'set -- "${s#?}"' "1|$c2$c3$c4"
41 testcase 'set -- "${s#??}"' "1|$c3$c4"
44 testcase 'set -- "${s#*$c3}"' "1|$c4"
45 testcase 'set -- "${s%$c4}"' "1|$c1$c2$c3"
[all …]
/dragonfly/tools/regression/bin/sh/builtins/
HDcase6.011 c3=$(printf '\240')
13 # $c2$c3$c4 form one utf-8 character
16 case $c1$c2$c3$c4 in
24 case $c1$c2$c3$c4 in
25 $c1$c2$c3$c4) ;;
29 case $c1$c2$c3$c4 in
30 "$c1$c2$c3$c4") ;;
34 case $c1$c2$c3$c4 in
39 case $c1$c2$c3$c4 in
44 case $c1$c2$c3$c4 in
[all …]
HDcase5.011 c3=$(printf '\342\202\254')
16 case $c1$c2$c3$c4 in
24 case $c1$c2$c3$c4 in
25 $c1$c2$c3$c4) ;;
29 case $c1$c2$c3$c4 in
30 "$c1$c2$c3$c4") ;;
34 case $c1$c2$c3$c4 in
39 case $c1.$c2.$c3.$c4 in
44 case $c1$c2$c3$c4 in
49 case $c1$c2$c3$c4 in
[all …]
/dragonfly/contrib/gmp/mpn/generic/
HDtoom_interpolate_5pts.c39 mp_ptr c1, v1, c3, vinf; in mpn_toom_interpolate_5pts() local
46 c3 = v1 + k; in mpn_toom_interpolate_5pts()
47 vinf = c3 + k; in mpn_toom_interpolate_5pts()
122 MPN_INCR_U (c3 + 1, twor + k - 1, cy); /* 2n-(3k+1) = 2r+k-1 */ in mpn_toom_interpolate_5pts()
159 MPN_INCR_U (c3 + kk1, twor - k - 1, cy); /* 2n-(5k+1) = 2r-k-1 */ in mpn_toom_interpolate_5pts()
183 cy = mpn_add_n (c3, c3, v2, k); in mpn_toom_interpolate_5pts()
HDdiveby3.c135 mp_limb_t s, sm, cl, q, qx, c2, c3; in mpn_divexact_by3c() local
154 c3 = qx >= GMP_NUMB_CEIL_2MAX_DIV3 ; in mpn_divexact_by3c()
156 cy = c2 + c3; in mpn_divexact_by3c()
157 cl = (-c2 & -MODLIMB_INVERSE_3) + (-c3 & -MODLIMB_INVERSE_3); in mpn_divexact_by3c()
HDaddmul_1.c65 mp_limb_t shifted_vl, ul, rl, lpl, hpl, prev_hpl, cl, xl, c1, c2, c3; in mpn_addmul_1() local
84 ADDC_LIMB (c3, xl, xl, cl); in mpn_addmul_1()
85 cl = c1 + c2 + c3; in mpn_addmul_1()
HDsubmul_1.c65 mp_limb_t shifted_vl, ul, rl, lpl, hpl, prev_hpl, cl, xl, c1, c2, c3; in mpn_submul_1() local
84 SUBC_LIMB (c3, xl, xl, cl); in mpn_submul_1()
85 cl = c1 + c2 + c3; in mpn_submul_1()
/dragonfly/games/sail/
HDdr_5.c74 int c1, c2, c3; in mensent() local
91 c3 = men/10 ? crew[2] : 0; in mensent()
93 c3 = *captured == NULL ? crew[2] : *pc; in mensent()
95 c1 = c2 = c3 = 0; in mensent()
96 return(c1 + c2 + c3); in mensent()
/dragonfly/usr.bin/localedef/
HDscanner.c297 int c1, c2, c3; in scan_dec_byte() local
313 c3 = scanc(); in scan_dec_byte()
314 if (!isdigit(c3)) { in scan_dec_byte()
315 unscanc(c3); in scan_dec_byte()
318 b += (c3 - '0'); in scan_dec_byte()
326 int c1, c2, c3; in scan_oct_byte() local
344 c3 = scanc(); in scan_oct_byte()
345 if (!isodigit(c3)) { in scan_oct_byte()
346 unscanc(c3); in scan_oct_byte()
349 b += (c3 - '0'); in scan_oct_byte()
/dragonfly/lib/libcrypt/
HDcrypt-blowfish.c109 u_int8_t c1, c2, c3, c4; in decode_base64() local
122 c3 = CHAR64(*(p + 2)); in decode_base64()
123 if (c3 == 255) in decode_base64()
126 *bp++ = ((c2 & 0x0f) << 4) | ((c3 & 0x3c) >> 2); in decode_base64()
133 *bp++ = ((c3 & 0x03) << 6) | c4; in decode_base64()
/dragonfly/crypto/libressl/crypto/whrlpool/
HDwp_block.c123 # define LL(c0,c1,c2,c3,c4,c5,c6,c7) c0,c1,c2,c3,c4,c5,c6,c7 argument
134 # define LL(c0,c1,c2,c3,c4,c5,c6,c7) c0,c1,c2,c3,c4,c5,c6,c7, \ argument
135 c7,c0,c1,c2,c3,c4,c5,c6, \
136 c6,c7,c0,c1,c2,c3,c4,c5, \
137 c5,c6,c7,c0,c1,c2,c3,c4, \
138 c4,c5,c6,c7,c0,c1,c2,c3, \
139 c3,c4,c5,c6,c7,c0,c1,c2, \
140 c2,c3,c4,c5,c6,c7,c0,c1, \
141 c1,c2,c3,c4,c5,c6,c7,c0
153 # define LL(c0,c1,c2,c3,c4,c5,c6,c7) c0,c1,c2,c3,c4,c5,c6,c7, \ argument
[all …]
/dragonfly/contrib/ncurses/ncurses/tinfo/
HDMKcaptab.awk74 c3 = add_string($4);
75 … aliases[num_aliases] = sprintf("\t{%5d, %5d, %5d},\t /* %s */", c1, c2, c3, $5);
/dragonfly/bin/dd/
HDref.pareven6 00000040 c0 41 42 c3 44 c5 c6 47 48 c9 ca 4b cc 4d 4e cf |.AB.D..GH..K.MN.|
14 000000c0 c0 41 42 c3 44 c5 c6 47 48 c9 ca 4b cc 4d 4e cf |.AB.D..GH..K.MN.|
HDref.parset6 00000040 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf |................|
14 000000c0 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf |................|
HDref.oldascii10 00000080 c3 61 62 63 64 65 66 67 68 69 c4 c5 c6 c7 c8 c9 |.abcdefghi......|
HDref.ucase14 000000c0 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf |................|
HDref.ascii10 00000080 c3 61 62 63 64 65 66 67 68 69 c4 c5 c6 c7 c8 c9 |.abcdefghi......|
HDref.lcase14 000000c0 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf |................|
HDref.swab14 000000c0 c1 c0 c3 c2 c5 c4 c7 c6 c9 c8 cb ca cd cc cf ce |................|
HDref.oldibm6 00000040 7c c1 c2 c3 c4 c5 c6 c7 c8 c9 d1 d2 d3 d4 d5 d6 ||...............|
HDref.oldebcdic6 00000040 7c c1 c2 c3 c4 c5 c6 c7 c8 c9 d1 d2 d3 d4 d5 d6 ||...............|
/dragonfly/contrib/wpa_supplicant/src/crypto/
HDms_funcs.c57 u8 c3 = utf8_string[++i]; in utf8_to_ucs2() local
60 ((c2 & 0x3F) << 6) | (c3 & 0x3F)); in utf8_to_ucs2()
/dragonfly/share/misc/
HDlatin121 | c0 � | c1 � | c2 � | c3 � | c4 � | c5 � | c6 � | c7 � |
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++11/
Dcodecvt.cc285 unsigned char c3 = from[2]; in read_utf8_code_point() local
286 if ((c3 & 0xC0) != 0x80) in read_utf8_code_point()
288 char32_t c = (c1 << 12) + (c2 << 6) + c3 - 0xE2080; in read_utf8_code_point()
304 unsigned char c3 = from[2]; in read_utf8_code_point() local
305 if ((c3 & 0xC0) != 0x80) in read_utf8_code_point()
310 char32_t c = (c1 << 18) + (c2 << 12) + (c3 << 6) + c4 - 0x3C82080; in read_utf8_code_point()

123