| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | tree-ssa-tail-merge.cc | 626 same_succ *same = XNEW (struct same_succ); in same_succ_alloc() local 628 same->bbs = BITMAP_ALLOC (NULL); in same_succ_alloc() 629 same->succs = BITMAP_ALLOC (NULL); in same_succ_alloc() 630 same->inverse = BITMAP_ALLOC (NULL); in same_succ_alloc() 631 same->succ_flags.create (10); in same_succ_alloc() 632 same->in_worklist = false; in same_succ_alloc() 634 return same; in same_succ_alloc() 653 same_succ_reset (same_succ *same) in same_succ_reset() argument 655 bitmap_clear (same->bbs); in same_succ_reset() 656 bitmap_clear (same->succs); in same_succ_reset() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | tree-ssa-tail-merge.c | 626 same_succ *same = XNEW (struct same_succ); in same_succ_alloc() local 628 same->bbs = BITMAP_ALLOC (NULL); in same_succ_alloc() 629 same->succs = BITMAP_ALLOC (NULL); in same_succ_alloc() 630 same->inverse = BITMAP_ALLOC (NULL); in same_succ_alloc() 631 same->succ_flags.create (10); in same_succ_alloc() 632 same->in_worklist = false; in same_succ_alloc() 634 return same; in same_succ_alloc() 653 same_succ_reset (same_succ *same) in same_succ_reset() argument 655 bitmap_clear (same->bbs); in same_succ_reset() 656 bitmap_clear (same->succs); in same_succ_reset() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man7/ |
| H A D | des_modes.pod | 31 The same plaintext block always produces the same ciphertext block 32 (for the same key) making it vulnerable to a 'dictionary attack'. 54 The CBC mode produces the same ciphertext whenever the same 55 plaintext is encrypted using the same key and starting variable. 65 The use of different starting variables prevents the same plaintext 66 enciphering to the same ciphertext. 86 The CFB mode produces the same ciphertext whenever the same 87 plaintext is encrypted using the same key and starting variable. 97 The use of different starting variables prevents the same plaintext 98 enciphering to the same ciphertext. [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/lib/libdes/ |
| H A D | des_modes.pod | 31 The same plaintext block always produces the same ciphertext block 32 (for the same key) making it vulnerable to a 'dictionary attack'. 54 The CBC mode produces the same ciphertext whenever the same 55 plaintext is encrypted using the same key and starting variable. 65 The use of different starting variables prevents the same plaintext 66 enciphering to the same ciphertext. 86 The CFB mode produces the same ciphertext whenever the same 87 plaintext is encrypted using the same key and starting variable. 97 The use of different starting variables prevents the same plaintext 98 enciphering to the same ciphertext. [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/lib/libdes/ |
| H A D | des_modes.pod | 31 The same plaintext block always produces the same ciphertext block 32 (for the same key) making it vulnerable to a 'dictionary attack'. 54 The CBC mode produces the same ciphertext whenever the same 55 plaintext is encrypted using the same key and starting variable. 65 The use of different starting variables prevents the same plaintext 66 enciphering to the same ciphertext. 86 The CFB mode produces the same ciphertext whenever the same 87 plaintext is encrypted using the same key and starting variable. 97 The use of different starting variables prevents the same plaintext 98 enciphering to the same ciphertext. [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/ |
| H A D | des_modes.pod | 31 The same plaintext block always produces the same ciphertext block 32 (for the same key) making it vulnerable to a 'dictionary attack'. 54 The CBC mode produces the same ciphertext whenever the same 55 plaintext is encrypted using the same key and starting variable. 65 The use of different starting variables prevents the same plaintext 66 enciphering to the same ciphertext. 86 The CFB mode produces the same ciphertext whenever the same 87 plaintext is encrypted using the same key and starting variable. 97 The use of different starting variables prevents the same plaintext 98 enciphering to the same ciphertext. [all …]
|
| /netbsd-src/external/gpl2/groff/dist/src/roff/troff/ |
| H A D | node.h | 112 virtual int same(node *) = 0; 158 int same(node *); 198 int same(node *); 227 int same(node *); 242 int same(node *); 263 int same(node *); 277 int same(node *); 290 int same(node *); 305 int same(node *); 335 int same(node *); [all …]
|
| /netbsd-src/external/zlib/pigz/dist/zopfli/ |
| H A D | hash.c | 45 h->same = (unsigned short*)malloc(sizeof(*h->same) * window_size); in ZopfliInitHash() 47 h->same[i] = 0; in ZopfliInitHash() 78 free(h->same); in ZopfliCleanHash() 109 if (h->same[(pos - 1) & ZOPFLI_WINDOW_MASK] > 1) { in ZopfliUpdateHash() 110 amount = h->same[(pos - 1) & ZOPFLI_WINDOW_MASK] - 1; in ZopfliUpdateHash() 116 h->same[hpos] = amount; in ZopfliUpdateHash() 120 h->val2 = ((h->same[hpos] - ZOPFLI_MIN_MATCH) & 255) ^ h->val; in ZopfliUpdateHash()
|
| H A D | lz77.c | 290 unsigned short same0 = h->same[pos & ZOPFLI_WINDOW_MASK]; in ZopfliFindLongestMatch() 292 unsigned short same1 = h->same[(pos - dist) & ZOPFLI_WINDOW_MASK]; in ZopfliFindLongestMatch() 293 unsigned short same = same0 < same1 ? same0 : same1; in ZopfliFindLongestMatch() local 294 if (same > limit) same = limit; in ZopfliFindLongestMatch() 295 scan += same; in ZopfliFindLongestMatch() 296 match += same; in ZopfliFindLongestMatch() 319 if (hhead != h->head2 && bestlength >= h->same[hpos] && in ZopfliFindLongestMatch()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | SSL_set_bio.pod | 24 the same value as previously). 26 SSL_set0_wbio() works in the same as SSL_set0_rbio() except that it connects 28 rbio and wbio are the same then SSL_set0_rbio() and SSL_set0_wbio() each take 34 that it connects both the B<rbio> and the B<wbio> at the same time, and 54 If the B<rbio> and B<wbio> parameters are the same and the B<rbio> is not 55 the same as the previously set value then one reference is consumed. 59 If the B<rbio> and B<wbio> parameters are the same and the B<rbio> is the 60 same as the previously set value, then no additional references are consumed. 65 same as the 72 same as the previously set value and the old B<rbio> and B<wbio> values [all …]
|
| H A D | d2i_PrivateKey.pod | 63 d2i_PrivateKey() does the same as d2i_PrivateKey_ex() except that the default 65 d2i_PublicKey() does the same for public keys. 66 d2i_KeyParams() does the same for key parameters. 71 d2i_PrivateKey_fp() functions are the same except that they read the data from 80 i2d_PublicKey() does the same for public keys. 81 i2d_KeyParams() does the same for key parameters. 83 i2d_PrivateKey_bio() and i2d_PrivateKey_fp() do the same thing except that they
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | SSL_set_bio.pod | 24 the same value as previously). 26 SSL_set0_wbio() works in the same as SSL_set0_rbio() except that it connects 28 rbio and wbio are the same then SSL_set0_rbio() and SSL_set0_wbio() each take 34 that it connects both the B<rbio> and the B<wbio> at the same time, and 54 If the B<rbio> and B<wbio> parameters are the same and the B<rbio> is not 55 the same as the previously set value then one reference is consumed. 59 If the B<rbio> and B<wbio> parameters are the same and the B<rbio> is the 60 same as the previously set value, then no additional references are consumed. 65 same as the 72 same as the previously set value and the old B<rbio> and B<wbio> values [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/unit/ |
| H A D | test_compilation.py | 89 def same(expected): function 95 same([]) 96 same(['-I', '/opt/me/include', '-DNDEBUG', '-ULIMITS']) 97 same(['-O', '-O2']) 98 same(['-m32', '-mmms']) 99 same(['-Wall', '-Wno-unused', '-g', '-funroll-loops'])
|
| /netbsd-src/games/snake/snake/ |
| H A D | snake.c | 81 #define same(s1, s2) ((s1)->line == (s2)->line && (s1)->col == (s2)->col) macro 413 if (same(&you, &money)) { in mainloop() 428 if (same(&you, &finish)) { in mainloop() 493 if (same(&p, &you)) in snrand() 495 if (same(&p, &money)) in snrand() 497 if (same(&p, &finish)) in snrand() 500 if (same(&p, &snake[i])) in snrand() 635 if (same(&d, &money)) in chase() 637 if (same(&d, &finish)) in chase() 877 if (same(&snake[i], &snake[5])) in pushsnake() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/shtest-shell/ |
| H A D | diff-r.txt | 7 # Create same files in both of the dirs. 11 # Create same subdirectories with same contents. 18 # Create empty subdirectories with same names.
|
| /netbsd-src/usr.bin/indent/ |
| H A D | .indent.pro | 5 -ce /* Place '} else' on the same line. */ 8 -d0 /* Indent comments in the same column as the code. */ 15 -ndj /* Indent declarations in the same column as the code. */ 16 -ei /* Place 'else if' on the same line. */
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MSA.txt | 19 same cases. andi.b should use fractionally less power than bclri.b in 24 constant since shf.w covers exactly the same cases. shf.w is used 37 same shuffle. ilvev.d will be emitted instead. 41 same shuffle. ilvod.d will be emitted instead. 48 It is not possible to emit splati.w since shf.w covers the same cases. 67 the same operation and will be emitted instead. 77 Like their non-immediate counterparts, bmnzi.v and bmzi.v are the same
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
| H A D | compat.texi | 36 can be used in the same program. The set of tools includes compilers, 39 they implement the same ABI@. This applies to different versions of the 40 same tools as well as tools from different vendors. 55 Conformance to the same ABI and the same behavior of implementation-defined 122 other and if they are both built with the same compiler, or with compilers 123 that conform to the same ABI for C++ compiler and runtime support. 125 When G++ and another C++ compiler conform to the same C++ ABI, but the 127 follow the same ABI for the Standard C++ Library, object files built with 128 those compilers can be used in the same program only if they use the same
|
| H A D | configterms.texi | 26 If build, host, and target are all the same, this is called a 27 @dfn{native}. If build and host are the same but target is different, 31 on the build at that time). If host and target are the same, but build 35 are the same, but host is different, you are using a cross compiler to 40 If build and host are the same, the GCC you are building will also be 58 for the host, once for the target (even if they are the same), and once
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
| H A D | compat.texi | 36 can be used in the same program. The set of tools includes compilers, 39 they implement the same ABI@. This applies to different versions of the 40 same tools as well as tools from different vendors. 55 Conformance to the same ABI and the same behavior of implementation-defined 122 other and if they are both built with the same compiler, or with compilers 123 that conform to the same ABI for C++ compiler and runtime support. 125 When G++ and another C++ compiler conform to the same C++ ABI, but the 127 follow the same ABI for the Standard C++ Library, object files built with 128 those compilers can be used in the same program only if they use the same
|
| H A D | configterms.texi | 26 If build, host, and target are all the same, this is called a 27 @dfn{native}. If build and host are the same but target is different, 31 on the build at that time). If host and target are the same, but build 35 are the same, but host is different, you are using a cross compiler to 40 If build and host are the same, the GCC you are building will also be 58 for the host, once for the target (even if they are the same), and once
|
| /netbsd-src/external/bsd/flex/dist/ |
| H A D | .indent.pro | 3 -br /* open braces on same line */ 5 -nbc /* vars on same line */ 7 -brs /* struct brace on same line */
|
| /netbsd-src/sbin/mount_umap/ |
| H A D | umap_manual | 12 than one domain leads to certain problems, since the same numerical 21 properly, the same user with different UIDs in two domains can be seen 22 as the same user, from the system point of view, or, conversely, two 23 different users with the same UID in the two domains can be distinguished. 36 They do not, however, have to have the same numerical UID, nor even the 37 same character string login name (the latter is highly recommended, 44 domains in the same manner as UID's. Again, any group that wishes to 46 though it need not be the same GID in both. If a group in one domain is not 77 format of the files is the same. The first line contains the total number 81 UID for the same user on the master machine. The maximum number of users [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/vim/indent/ |
| H A D | llvm.vim | 7 " - On '}' align the same as the line containing the matching '{' 9 " - If the current line ends with ':' indent at the same level as the 34 " On '}' align the same as the line containing the matching '{' 45 " Indent labels the same as the current opening block
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | IntrinsicsRISCV.td | 261 // For destination vector type is the same as source vector. 267 // For destination vector type is the same as first source vector (with mask). 274 // For destination vector type is the same as first and second source vector. 280 // For destination vector type is the same as first and second source vector. 286 // For destination vector type is the same as first and second source vector. 299 // For destination vector type is the same as first and second source vector. 307 // For destination vector type is the same as first source vector, and the 315 // For destination vector type is the same as first source vector (with mask). 324 // For destination vector type is the same as first source vector. 332 // For destination vector type is the same as first source vector (with mask). [all …]
|