Searched refs:h1 (Results 1 - 25 of 160) sorted by relevance

1234567

/macosx-10.10/CPANInternal-159.1/Readonly-1.03/t/
H A Dhash.t18 use vars qw/%h1/;
22 eval {Readonly::Hash %h1 => (a=>"A", b=>"B", c=>"C", d=>"D")};
30 is $h1{a} => 'A', 'Fetch global';
31 ok !defined $h1{'q'}, 'Nonexistent element undefined';
35 eval {$h1{a} = 'Z'};
39 eval {delete $h1{c}};
43 eval {%h1 = ()};
47 ok exists $h1{a}, 'Exists';
48 eval {ok !exists $h1{x}, "Doesn't exist"};
52 my @a = sort keys %h1;
[all...]
H A Ddeeph.t18 use vars qw/%h1 %h2/;
22 eval {Readonly::Hash %h1 => (key1 => \$m1, key2 => {x => 5, z => [1, 2, 3]})};
28 eval {$h1{key1} = 7};
29 is $@ => expected(__LINE__-1), 'Modify h1';
33 eval {${$h1{key1}} = "the"};
34 is $@ => expected(__LINE__-1), 'Deep-modify h1';
35 is $m1 => 17, 'h1 unchanged';
41 eval {$h1{key2}{z}[1] = 42};
42 is $@ => expected(__LINE__-1), 'Deep-deep modify h1';
43 is $h1{key
[all...]
H A Dreassign.t11 use vars qw($s1 @a1 %h1 $s2 @a2 %h2);
15 Readonly::Hash %h1 => {a => 'hash', of => 'things'};
30 eval {Readonly::Hash %h1 => "another", "hash"};
32 ok eq_hash(\%h1, {a => 'hash', of => 'things'}) => 'Readonly::Hash reassign no effect';
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_app_erb.rb21 <h1> <%= title %> </h1>
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_hmac.rb8 @h1 = OpenSSL::HMAC.new(@key, @digest.new)
16 @h1.update(@data)
18 assert_equal(@h1.digest, @h2.digest)
20 assert_equal(OpenSSL::HMAC.digest(@digest.new, @key, @data), @h1.digest, "digest")
21 assert_equal(OpenSSL::HMAC.hexdigest(@digest.new, @key, @data), @h1.hexdigest, "hexdigest")
28 @h1.update(@data)
29 h = @h1.dup
30 assert_equal(@h1.digest, h.digest, "dup digest")
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/image-state-deny-dlclose/
H A Dmain.c38 void* h1 = dlopen("libbase.dylib", RTLD_LAZY); local
39 if ( h1 == NULL ) {
43 dlclose(h1);
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/rpath-install-name/
H A Dmain.c32 void* h1 = dlopen("./libstuff_better.dylib", RTLD_LAZY); local
33 if ( h1 == NULL ) {
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/bundle-dont-gc/
H A Dmain.c70 void* h1 = dlopen("bar.bundle", RTLD_LAZY); local
71 if ( h1 == NULL ) {
75 dlclose(h1);
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_hash.rb168 h1 = h.dup
169 h1.default = :default
171 assert_equal('one', h1[1])
172 assert_equal('two', h1[2])
173 assert_equal('three', h1[3])
174 assert_equal('self', h1[self])
175 assert_equal('time', h1[t])
176 assert_equal('nil', h1[nil])
177 assert_equal(nil, h1['nil'])
178 assert_equal(:default, h1['koal
[all...]
H A Dtest_env.rb170 h1 = {}
171 ENV.each_pair {|k, v| h1[k] = v }
176 assert_equal(h1, h2)
178 h1 = {}
179 ENV.each_pair {|k, v| h1[k] = v }
184 assert_equal(h1, h2)
188 h1 = {}
189 ENV.each_pair {|k, v| h1[k] = v }
194 assert_equal(h1, h2)
196 h1
[all...]
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/threaded-flat-lookup/
H A Dmain.c32 void* h1 = NULL; variable
38 h1 = dlopen("libfoo1.dylib", 0);
39 if ( h1 == NULL ) {
49 dlclose(h1);
/macosx-10.10/zsh-61/zsh/Etc/
H A Dchangelog2html.pl49 <h1>ChangeLog for zsh version $version</h1>
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen.sh85 rm -f tmp-desc.h tmp-desc.h1
87 rm -f tmp-opc.h tmp-opc.h1
90 rm -f tmp-ibld.h tmp-ibld.h1
103 -H tmp-desc.h1 \
105 -O tmp-opc.h1 \
113 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" < tmp-desc.h1 > tmp-desc.h
120 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" < tmp-opc.h1 > tmp-opc.h
151 rm -f tmp-desc.h1 tmp-desc.c1
152 rm -f tmp-opc.h1 tmp-opc.c1
154 rm -f tmp-ibld.h1 tm
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Dflowhash.c188 u_int32_t h1 = seed, k1; local
201 h1 ^= k1;
202 h1 = ROTL32(h1, 13);
203 h1 = h1 * 5 + 0xe6546b64;
222 h1 ^= k1;
226 h1 ^= len;
228 h1 = mh3_fmix32(h1);
246 u_int64_t h1 = seed, k1; local
[all...]
/macosx-10.10/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 }
40 h1 { font: 170% sans-serif }
50 div.head h1 { margin-top: 2em; clear: both }
79 h1, h2, h3 { stress: 20; richness: 90 }
/macosx-10.10/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/Security-57031.1.35/Security/include/security_cryptkit/
H A DfeeECDSA.c58 2) Compute h1 = digest as giant integer (skips assigning to 'f' as in
60 3) Compute h1 = h1 * h (mod x1OrderPlus) (i.e., = f * h)
63 6) Compute h1G = h1 'o' G
397 giant h1; // f h local
404 pointProj h1G = NULL; // h1 'o' G
457 * 2) h1 = digest as giant (skips assigning to 'f' in P1363)
460 h1 = borrowGiant(BYTES_TO_GIANT_DIGITS(dataLen));
463 h1 = borrowGiant(cp->maxDigits);
465 deserializeGiant(data, h1, dataLe
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DfeeECDSA.c58 2) Compute h1 = digest as giant integer (skips assigning to 'f' as in
60 3) Compute h1 = h1 * h (mod x1OrderPlus) (i.e., = f * h)
63 6) Compute h1G = h1 'o' G
397 giant h1; // f h local
404 pointProj h1G = NULL; // h1 'o' G
457 * 2) h1 = digest as giant (skips assigning to 'f' in P1363)
460 h1 = borrowGiant(BYTES_TO_GIANT_DIGITS(dataLen));
463 h1 = borrowGiant(cp->maxDigits);
465 deserializeGiant(data, h1, dataLe
[all...]
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dstdio.c162 int __nt_open_osfhandle(intptr_t h1, int mode) { argument
169 __gOpenFiles[i].handle = (HANDLE)h1;
247 int nt_seek(HANDLE h1, long offset, int how) { argument
265 if (SetFilePointer(h1,offset,NULL,dwmove) == -1){
272 HANDLE h1 ; local
273 h1 =__gOpenFiles[fd].handle;
274 return nt_seek(h1,offset,how);
590 HANDLE h1; local
597 &h1,
602 realfd = _open_osfhandle((intptr_t)h1,
[all...]
/macosx-10.10/ruby-106/ruby/test/win32ole/
H A Dtest_win32ole_event.rb313 h1 = Handler1.new
314 ev.handler = h1
317 assert_equal(CONNSTR, h1.val1)
318 assert_equal(h1.val1, ev.handler.val1)
319 assert_equal(nil, h1.val2)
320 assert_equal(ADO::AdStateOpen, h1.val3)
321 assert_equal(ADO::AdStateOpen, h1.val4)
/macosx-10.10/dcerpc-61/www/content/css/blueprint/src/
H A Dtypography.css20 h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
22 h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
29 h1 img, h2 img, h3 img,
H A Dreset.css9 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
/macosx-10.10/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DDoc.pm82 <h1 class="t1">[% title | html %]</h1>
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Di386linux.c436 struct linux_link_hash_entry *h1, *h2;
479 h1 = linux_link_hash_lookup (linux_hash_table (info),
495 if (h1 != NULL
496 && (((h1->root.root.type == bfd_link_hash_defined
497 || h1->root.root.type == bfd_link_hash_defweak)
498 && ! bfd_is_abs_section (h1->root.root.u.def.section))
510 if ((f1->h != h && f1->h != h1)
513 if (f1->h == h1)
518 f = new_fixup (info, h1, f1->h->root.root.u.def.value, 0);
521 f1->h = h1;
435 struct linux_link_hash_entry *h1, *h2; local
[all...]
H A Dm68klinux.c440 struct linux_link_hash_entry *h1, *h2;
483 h1 = linux_link_hash_lookup (linux_hash_table (info),
499 if (h1 != NULL
500 && (((h1->root.root.type == bfd_link_hash_defined
501 || h1->root.root.type == bfd_link_hash_defweak)
502 && ! bfd_is_abs_section (h1->root.root.u.def.section))
514 if ((f1->h != h && f1->h != h1)
517 if (f1->h == h1)
522 f = new_fixup (info, h1, f1->h->root.root.u.def.value, 0);
525 f1->h = h1;
439 struct linux_link_hash_entry *h1, *h2; local
[all...]

Completed in 262 milliseconds

1234567