Searched refs:h2 (Results 1 - 25 of 151) sorted by relevance

1234567

/macosx-10.10.1/CPANInternal-159.1/Readonly-1.03/t/
H A Ddeeph.t18 use vars qw/%h1 %h2/;
24 eval {Readonly::Hash1 %h2 => (key1 => \$m1, key2 => {x => 5, z => [1, 2, 3]})};
30 eval {$h2{key1} = 7};
31 is $@ => expected(__LINE__-1), 'Modify h2';
37 eval {${$h2{key1}} = "the"};
38 is $@ => '', 'Deep-modify h2';
39 is $m1 => 'the', 'h2 modification successful';
45 eval {$h2{key2}{z}[2] = 42};
46 is $@ => '', 'Deep-deep modify h2';
47 is $h2{key
[all...]
H A Dreassign.t11 use vars qw($s1 @a1 %h1 $s2 @a2 %h2);
44 Readonly \%h2 => {another => 'hash', of => 'things'};
58 eval q{Readonly \%h2 => {another => "bad", hash => "!"}};
60 ok eq_hash(\%h2, {another => 'hash', of => 'things'}) => 'Readonly Hash reassign no effect';
74 Readonly %h2 => {another => 'hash', of => 'things'};
88 eval q{Readonly %h2 => {another => "bad", hash => "!"}};
90 ok eq_hash(\%h2, {another => 'hash', of => 'things'}) => 'Readonly Hash reassign no effect';
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/image-state-deny-dlclose/
H A Dmain.c46 void* h2 = dlopen("libfoo.dylib", RTLD_LAZY); local
47 if ( h2 == NULL ) {
59 dlclose(h2);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/threaded-flat-lookup/
H A Dmain.c33 void* h2 = NULL; variable
43 dlclose(h2);
44 h2 = dlopen("libfoo2.dylib", 0);
45 if ( h2 == NULL ) {
59 h2 = dlopen("libfoo2.dylib", 0);
60 if ( h2 == NULL ) {
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_hmac.rb9 @h2 = OpenSSL::HMAC.new(@key, "MD5")
17 @h2.update(@data)
18 assert_equal(@h1.digest, @h2.digest)
23 assert_equal(OpenSSL::HMAC.digest("MD5", @key, @data), @h2.digest, "digest")
24 assert_equal(OpenSSL::HMAC.hexdigest("MD5", @key, @data), @h2.hexdigest, "hexdigest")
/macosx-10.10.1/apr-32/apr/apr/include/
H A Dapr_ring.h326 * Concatenate ring h2 onto the end of ring h1, leaving h2 empty.
328 * @param h2 Head of the ring to concatenate
332 #define APR_RING_CONCAT(h1, h2, elem, link) do { \
333 if (!APR_RING_EMPTY((h2), elem, link)) { \
335 APR_RING_FIRST((h2)), \
336 APR_RING_LAST((h2)), link); \
337 APR_RING_INIT((h2), elem, link); \
342 * Prepend ring h2 onto the beginning of ring h1, leaving h2 empt
[all...]
H A Dapr_hash.h202 * @param h2 The second of the tables to merge
204 * make values from h1 override values from h2 (same semantics as
211 const apr_hash_t *h2,
/macosx-10.10.1/libxslt-13/libxslt/tests/xmlspec/
H A DW3C-REC.css38 h1, h2, h3, h4, h5, h6 { text-align: left }
39 h1, h2, h3 { color: #005A9C }
41 h2 { font: 140% sans-serif }
79 h1, h2, h3 { stress: 20; richness: 90 }
/macosx-10.10.1/postfix-255/postfix/mantools/
H A Dmakemanidx24 <h2> Information for new Postfix users </h2>
51 <h2> Postfix manual page organization </h2>
87 /^[A-Z].*:$/ { print ul "<h2>", $0, "</h2>\n\n<ul>\n\n"; ul = "</ul>\n\n" }
91 ' | sed 's;: </h2>$; </h2>;'
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_env.rb174 h2 = {}
175 ENV.each_pair {|k, v| h2[k] = v }
176 assert_equal(h1, h2)
182 h2 = {}
183 ENV.each_pair {|k, v| h2[k] = v }
184 assert_equal(h1, h2)
192 h2 = {}
193 ENV.each_pair {|k, v| h2[k] = v }
194 assert_equal(h1, h2)
200 h2
[all...]
H A Dtest_hash.rb220 h2 = @cls[ "a" => 1, "c" => 2, 7 => 35 ]
224 assert(h2 == h2)
227 assert(!(h1 == h2))
228 assert(h2 == h3)
273 h2 = @cls[ 1 => 'one', 2 => 'two' ]
277 assert_equal(h2, h1)
294 h2 = @cls[ 2 => false, 'cat' => 99 ]
306 assert_equal(h2, h.delete_if {|k,v| v.instance_of?(String) })
307 assert_equal(h2,
[all...]
/macosx-10.10.1/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DIndexPage.pm52 var listbox = "<div class='box'><h2 class='t2'>"
54 + "</h2><table width='100%'>"
107 <h2 class="t2">Search</h2>
121 <h2 class="t2">[% manager.desc | html %]</h2>
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A Dsha.h75 unsigned long h0,h1,h2,h3,h4; member in struct:SHAstate_st
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dflowhash.c247 u_int64_t h2 = seed, k2; local
263 h1 += h2;
269 h2 ^= k2;
271 h2 = ROTL64(h2, 31);
272 h2 += h1;
273 h2 = h2 * 5+ 0x38495ab5;
305 h2 ^= k2;
338 h2
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/memchan/memchan/htdocs/raw/
H A Ddisclaimer.exp7 <h2>Acknowledgements</h2>
17 <h2>Disclaimer</h2>
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/htdocs/raw/
H A Ddisclaimer.exp7 <h2>Acknowledgements</h2>
17 <h2>Disclaimer</h2>
/macosx-10.10.1/apache-793/httpd/build/
H A Ddefault.pl111 <h2>Package List</h2>
194 <h2>Package Name: $(p.name)</h2>
311 print "<h2>Member Index</h2>\n";
322 print "<h2>Class Variables</h2>\n";
330 print "<h2>Class Methods</h2>\
[all...]
/macosx-10.10.1/CPANInternal-159.1/Heap-0.80/lib/Heap/
H A DBinomial.pm201 my $h2 = shift;
205 my $el2 = $$h2;
213 # move next h2 elem to head of h list
221 # if h ran out first, move rest of h2 onto end
226 # clean out h2, all of its elements have been move to h
227 $$h2 = undef;
404 my $h2 = $h->new;
408 $child->{sib} = $$h2;
410 $$h2 = $child;
415 $h->absorb($h2);
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dhttp2.c61 if(nghttp2_session_want_read(httpc->h2))
64 if(nghttp2_session_want_write(httpc->h2))
86 nghttp2_session_del(httpc->h2);
149 nghttp2_info *h2 = nghttp2_version(0); local
150 return snprintf(p, len, " nghttp2/%s", h2->version_str);
158 static ssize_t send_callback(nghttp2_session *h2, argument
166 (void)h2;
445 if(!conn->proto.httpc.h2) {
452 rc = nghttp2_session_client_new(&conn->proto.httpc.h2,
595 rv = nghttp2_session_mem_recv(httpc->h2,
[all...]
/macosx-10.10.1/vim-55/runtime/doc/
H A Dvim2html.pl94 <h2>$head</h2>
198 h1, h2 { color: rgb(82,80,82); text-align: center; }
/macosx-10.10.1/dcerpc-61/www/content/css/blueprint/src/
H A Dtypography.css20 h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
23 h2 { font-size: 2em; margin-bottom: 0.75em; }
29 h1 img, h2 img, h3 img,
H A Dreset.css9 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
/macosx-10.10.1/llvmCore-3425.0.34/docs/_static/
H A Dllvm.css26 .doc_title, .doc_section, .doc_subsection, h1, h2, h3 {
40 h2, .doc_section { text-align: center; font-size: 22pt;
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dumac.c380 UINT64 h1,h2; local
389 h2 = *((UINT64 *)hp + 1);
400 h2 += MUL64((k4 + d0), (k8 + d4));
403 h2 += MUL64((k5 + d1), (k9 + d5));
406 h2 += MUL64((k6 + d2), (k10 + d6));
409 h2 += MUL64((k7 + d3), (k11 + d7));
417 ((UINT64 *)hp)[1] = h2;
427 UINT64 h1,h2,h3; local
436 h2 = *((UINT64 *)hp + 1);
449 h2
482 UINT64 h1,h2,h3,h4; local
[all...]
/macosx-10.10.1/apache-793/httpd/docs/manual/style/css/
H A Dmanual-loose-100pc.css53 h2 {
57 .category h2 {

Completed in 177 milliseconds

1234567