| /src/external/gpl2/groff/dist/src/utils/addftinfo/ |
| guess.cpp | 37 #define HASH(c1, c2) (((unsigned char)(c1) << 8) | (unsigned char)(c2)) 38 switch (HASH(s[0], s[1])) { 48 case HASH('\\', '|'): 49 case HASH('\\', '^'): 50 case HASH('\\', '&'): 53 case HASH('f', 0): 58 case HASH('a', 0): 59 case HASH('c', 0): 60 case HASH('e', 0): 61 case HASH('m', 0) [all...] |
| /src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/t/ |
| hash.t | 25 my $text = $template->fill_in(HASH => $vars); 33 $text = $template->fill_in(HASH => $vars); 38 $text = $template->fill_in(HASH => $vars, PACKAGE => 'Q'); 46 $text = $template->fill_in(HASH => $vars); 49 # (8-11) Now what does it do when we pass a hash with undefined values? 58 my $text = $template->fill_in(HASH => { 'v' => undef }); 68 $text = $template->fill_in(HASH => [ { 'v' => 17 }, { 'v' => undef } ]); 81 # (12) Now we'll test the multiple-hash option (Added for 1.20.) 83 HASH => [
|
| strict.t | 32 my $t1 = $tmpl1->fill_in(PACKAGE => 'T1', STRICT => 1, HASH => { bar => 'baz' }); 35 my $t2 = $tmpl2->fill_in(PACKAGE => 'T2', HASH => { bar => 'baz' }); 37 # prepend overrides the hash values 42 HASH => { foo => 'hashval2' }); 45 is $t2, 'The value of $foo is: template', "non-strict hash still works"; 46 is $t3, "The value of \$foo is: fillin", "hash values with prepend, prepend wins, even under strict.";
|
| inline-comment.t | 17 is $tmpl->fill_in(HASH => $vars), 'Hello Bob';
|
| template-encoding.t | 30 )->fill_in(HASH => { name => 'World' }); 45 )->fill_in(HASH => { name => 'World' });
|
| rt29928.t | 23 HASH => { foo => 'things' },
|
| safe2.t | 53 # Now let's see if hash vars are installed properly into safe templates 56 SOURCE => 'hash is {$H}') or die; 59 $text = $t->fill_in(HASH => { H => 'good5' }); 60 is $text, 'hash is good5'; 66 $text = $t->fill_in(HASH => { H => 'good6' }, PACKAGE => 'Q'); 67 is $text, 'hash is good6'; 72 $text = $t->fill_in(HASH => { H => 'good7' }, SAFE => $c); 73 is $text, 'hash is good7'; 77 # got the hash stuffed in 81 $text = $t->fill_in(HASH => { H => 'good8' }, SAFE => $c, PACKAGE => 'Q2') [all...] |
| exported.t | 40 HASH => { "var" => \"It is good!" }); 46 HASH => { "var" => \"It is good!" });
|
| /src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/ |
| hash.t | 25 my $text = $template->fill_in(HASH => $vars); 33 $text = $template->fill_in(HASH => $vars); 38 $text = $template->fill_in(HASH => $vars, PACKAGE => 'Q'); 46 $text = $template->fill_in(HASH => $vars); 49 # (8-11) Now what does it do when we pass a hash with undefined values? 58 my $text = $template->fill_in(HASH => { 'v' => undef }); 68 $text = $template->fill_in(HASH => [ { 'v' => 17 }, { 'v' => undef } ]); 81 # (12) Now we'll test the multiple-hash option (Added for 1.20.) 83 HASH => [
|
| strict.t | 32 my $t1 = $tmpl1->fill_in(PACKAGE => 'T1', STRICT => 1, HASH => { bar => 'baz' }); 35 my $t2 = $tmpl2->fill_in(PACKAGE => 'T2', HASH => { bar => 'baz' }); 37 # prepend overrides the hash values 42 HASH => { foo => 'hashval2' }); 45 is $t2, 'The value of $foo is: template', "non-strict hash still works"; 46 is $t3, "The value of \$foo is: fillin", "hash values with prepend, prepend wins, even under strict.";
|
| inline-comment.t | 17 is $tmpl->fill_in(HASH => $vars), 'Hello Bob';
|
| template-encoding.t | 30 )->fill_in(HASH => { name => 'World' }); 45 )->fill_in(HASH => { name => 'World' });
|
| rt29928.t | 23 HASH => { foo => 'things' },
|
| safe2.t | 53 # Now let's see if hash vars are installed properly into safe templates 56 SOURCE => 'hash is {$H}') or die; 59 $text = $t->fill_in(HASH => { H => 'good5' }); 60 is $text, 'hash is good5'; 66 $text = $t->fill_in(HASH => { H => 'good6' }, PACKAGE => 'Q'); 67 is $text, 'hash is good6'; 72 $text = $t->fill_in(HASH => { H => 'good7' }, SAFE => $c); 73 is $text, 'hash is good7'; 77 # got the hash stuffed in 81 $text = $t->fill_in(HASH => { H => 'good8' }, SAFE => $c, PACKAGE => 'Q2') [all...] |
| exported.t | 40 HASH => { "var" => \"It is good!" }); 46 HASH => { "var" => \"It is good!" });
|
| /src/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/t/ |
| 02-hash.t | 33 $text = $template->fill_in(HASH => $vars); 43 $text = $template->fill_in(HASH => $vars); 49 $text = $template->fill_in(HASH => $vars, PACKAGE => 'Q'); 59 $text = $template->fill_in(HASH => $vars); 63 # (8-11) Now what does it do when we pass a hash with undefined values? 73 my $text = $template->fill_in(HASH => {'v' => undef}); 84 $text = $template->fill_in(HASH => [{'v' => 17}, {'v' => undef}]); 99 # (12) Now we'll test the multiple-hash option (Added for 1.20.) 101 HASH => [{'v' => 17},
|
| 05-safe2.t | 59 # Now let's see if hash vars are installed properly into safe templates 60 $t = new Text::Template TYPE => 'STRING', SOURCE => 'hash is {$H}' 64 $text = $t->fill_in(HASH => {H => 'good5'} ); 65 print +($text eq 'hash is good5' ? '' : 'not '), "ok $n\n"; 69 $text = $t->fill_in(HASH => {H => 'good6'}, PACKAGE => 'Q' ); 70 print +($text eq 'hash is good6' ? '' : 'not '), "ok $n\n"; 74 $text = $t->fill_in(HASH => {H => 'good7'}, SAFE => $c ); 75 print +($text eq 'hash is good7' ? '' : 'not '), "ok $n\n"; 79 # got the hash stuffed in 80 $text = $t->fill_in(HASH => {H => 'good8'}, SAFE => $c, PACKAGE => 'Q2' ) [all...] |
| 08-exported.t | 40 HASH => { "var" => \"It is good!" }); 48 HASH => { "var" => \"It is good!" });
|
| /src/external/mpl/bind/dist/tests/dns/ |
| nsec3param_test.c | 40 #define HASH 1 50 dns_hash_t hash; member in struct:__anon24210 77 to->hash = from.hash; 92 rdata_fromparams(uint8_t hash, uint8_t flags, uint16_t iter, uint8_t saltlen, 95 nsec3param.hash = hash; 142 assert_int_equal(param.hash, expect.hash); 180 { rdata_fromparams(HASH, FLAGS, ITER, SALTLEN, NULL) [all...] |
| /src/sys/net/agr/ |
| if_agrether_hash.c | 34 #include <sys/hash.h> 48 #define HASH(p, l, h) hash32_buf((p), (l), (h)) 76 uint32_t hash = HASH32_BUF_INIT; local 83 return hash; 86 hash = HASH(&eh->ether_dhost, sizeof(eh->ether_dhost), hash); 87 hash = HASH(&eh->ether_shost, sizeof(eh->ether_shost), hash); [all...] |
| /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/ |
| Template.pm | 69 my %hash = ( %{$opts{HASH}} ); 70 delete $opts{HASH}; 72 $self->SUPER::fill_in(HASH => { quotify1 => \"ify1, 76 %hash }, 101 not how we pass them, see the HASH option used in fill_in() above
|
| /src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/ |
| Template.pm | 69 my %hash = ( %{$opts{HASH}} ); 70 delete $opts{HASH}; 72 $self->SUPER::fill_in(HASH => { quotify1 => \"ify1, 76 %hash }, 101 not how we pass them, see the HASH option used in fill_in() above
|
| /src/external/bsd/nsd/dist/ |
| nsd-control-setup.sh.in | 51 # hash algorithm 52 HASH=sha256 125 default_md=$HASH 132 subjectKeyIdentifier=hash 163 default_md=$HASH 192 -$HASH \
|
| /src/external/bsd/unbound/dist/testdata/10-unbound-anchor.tdir/keys/ |
| unbound-control-setup | 51 # hash algorithm 52 HASH=sha1 113 default_md=$HASH 136 default_md=$HASH 146 openssl req -key $CTL_BASE.key -config request.cfg -new | openssl x509 -req -days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
|
| /src/external/bsd/unbound/dist/smallapp/ |
| unbound-control-setup.sh.in | 51 # hash algorithm 52 HASH=sha256 129 default_md=$HASH 136 subjectKeyIdentifier=hash 167 default_md=$HASH 196 -$HASH \
|