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

1234567

/macosx-10.9.5/xar-202/xar/test/
H A Dhardlink7 rm -rf h h1 h.xar
8 mkdir h h1
14 cd h1
18 rm -rf h h1 h.xar
21 mkdir -p h h1
26 cd ../h1
30 rm -rf h h1 h.xar
33 rm -rf h h1 h.xar
34 mkdir h h1
38 cd h1
[all...]
H A Dheap6 rm -rf h h1 h.xar h.toc h.out
11 mkdir -p h h1
19 cd h1
40 mkdir -p h h1
53 cd h1
74 mkdir -p h h1
87 cd h1
90 inode1=`ls -i h1/ls | awk '{print $1}'`
91 inode2=`ls -i h1/foo | awk '{print $1}'`
/macosx-10.9.5/CPANInternal-140/Readonly/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.9.5/CPANInternal-140/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.9.5/ruby-104/ruby/benchmark/
H A Dbm_app_erb.rb21 <h1> <%= title %> </h1>
/macosx-10.9.5/ruby-104/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.9.5/dyld-239.4/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.9.5/dyld-239.4/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.9.5/CPANInternal-140/Test-Simple/t/
H A Dcircular_data.t27 my $h1 = { 1=>1, 2=>2, 3=>3 };
28 $h1->{4} = $h1;
32 is_deeply $h1, $h2;
33 ok( eq_hash ($h1, $h2) );
/macosx-10.9.5/dyld-239.4/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.9.5/ruby-104/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.9.5/dyld-239.4/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.9.5/zsh-60/zsh/Etc/
H A Dchangelog2html.pl49 <h1>ChangeLog for zsh version $version</h1>
/macosx-10.9.5/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.9.5/xnu-2422.115.4/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.9.5/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.9.5/CF-855.17/
H A DCFBasicHashFindBucket.m59 // probe[0] = h1(k)
60 // probe[i] = (h1(k) + i * c) mod num_buckets, i = 1 .. num_buckets - 1
61 // h1(k) = k mod num_buckets
63 uintptr_t h1 = __CFBasicHashFold(hash_code, num_buckets_idx);
65 uintptr_t h1 = hash_code % num_buckets;
69 // probe[0] = h1(k)
70 // probe[i] = (h1(k) + i * h2(k)) mod num_buckets, i = 1 .. num_buckets - 1
71 // h1(k) = k mod num_buckets
74 uintptr_t h1 = __CFBasicHashFold(hash_code, num_buckets_idx);
77 uintptr_t h1
[all...]
/macosx-10.9.5/CPANInternal-140/Net-DNS/contrib/
H A Dloc2earth.fcgi46 <h1>loc2earth: The <a href="http://www.fourmilab.ch/earthview/vplanet.html">Earth Viewer</a> Demo</h1>
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/compat/
H A Dsha.h75 unsigned long h0,h1,h2,h3,h4; member in struct:SHAstate_st
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DfeeECDSA.c59 2) Compute h1 = digest as giant integer (skips assigning to 'f' as in
61 3) Compute h1 = h1 * h (mod x1OrderPlus) (i.e., = f * h)
64 6) Compute h1G = h1 'o' G
398 giant h1; // f h local
405 pointProj h1G = NULL; // h1 'o' G
458 * 2) h1 = digest as giant (skips assigning to 'f' in P1363)
461 h1 = borrowGiant(BYTES_TO_GIANT_DIGITS(dataLen));
464 h1 = borrowGiant(cp->maxDigits);
466 deserializeGiant(data, h1, dataLe
[all...]

Completed in 360 milliseconds

1234567