/src/bin/ed/ |
cbc.c | 108 if (des_cipher(buf, buf, 0L, (inverse ? -1 : 1))) \ 390 int inverse = 0; /* 0 to encrypt, 1 to decrypt */ local in function:cbc_encode 430 int inverse = 1; /* 0 to encrypt, 1 to decrypt */ local in function:cbc_decode
|
/src/usr.bin/bdes/ |
bdes.c | 104 if (des_cipher(buf, buf, 0L, (inverse ? -1 : 1))) \ 116 if (encrypt(bits1, inverse)) \ 157 static int inverse; /* 0 to encrypt, 1 to decrypt */ variable in typeref:typename:int 287 inverse = (alg == ALG_CBC || alg == ALG_ECB) && mode == MODE_DECRYPT;
|
/src/usr.bin/pkill/ |
pkill.c | 95 static int inverse; variable in typeref:typename:int 251 inverse = 1; 454 if (inverse) 456 } else if (!inverse)
|
/src/sys/arch/vax/vsa/ |
smg.c | 652 uint32_t lmask, rmask, glyph, inverse; local in function:smg_putchar 662 inverse = ((attr & WSATTR_REVERSE) != 0) ? ALL1BITS : ALL0BITS; 684 glyph = (glyph << align) ^ inverse; 699 lhalf = (glyph << align) ^ inverse; 703 rhalf = (glyph >> (BLITWIDTH - align)) ^ inverse;
|
/src/games/canfield/canfield/ |
canfield.c | 565 printrank(int a, int b, const struct cardtype *cp, bool inverse) 570 if (inverse) 589 if (inverse) 605 bool inverse = (cp->suit == 'd' || cp->suit == 'h'); local in function:printcard 607 printrank(a, b, cp, inverse); 608 if (inverse) 611 if (inverse)
|