Searched refs:norm (Results 1 - 25 of 76) sorted by relevance

1234

/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dbigrat.pl48 &norm($1, $3 ? $3 : '+1');
55 sub norm { #(bint, bint) return rat_num
96 &norm(&'bmul($xn,$yn),&'bmul($xd,$yd));
103 &norm(&'bmul($xn,$yd),&'bmul($xd,$yn));
111 &norm(&'badd(&'bmul($xn,$yd),&'bmul($yn,$xd)),&'bmul($xd,$yd));
118 &norm(&'bsub(&'bmul($xn,$yd),&'bmul($yn,$xd)),&'bmul($xd,$yd));
54 sub norm { #(bint, bint) return rat_num subroutine
H A Dbigfloat.pl57 &norm(($1 ? "$1$2$x" : "+$2$x"), (($x ne '') ? $6-length($x) : $6));
64 sub norm { #(mantissa, exponent) return fnum_str
107 &norm(&'bmul($xm,$ym),$xe+$ye);
121 &norm(&'badd($ym,$xm.('0' x ($xe-$ye))),$ye);
145 &norm(&round(&'bdiv($xm.('0' x $scale),$ym),&'babs($ym)),
185 &norm(&round(substr($xm,0,$scale+1),
211 &norm(&round(substr($xm,0,1).'0',
214 &norm(&round(substr($xm,0,$xe),
63 sub norm { #(mantissa, exponent) return fnum_str subroutine
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/tests/
H A Dall-bench.tcl19 # -norm <number>
20 # See man bench, ::bench::norm
58 set norm ""
65 "-norm" {
67 puts stderr "The option -norm expects a postiv integer as\
71 set norm $argValue
129 if {$norm ne ""} {
130 set results [::bench::norm $results $norm]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtstnrapi.cpp26 Normalizer norm(iter, UNORM_NFC);
27 if(norm.next()!=0xe4) {
32 Normalizer copy(norm);
74 norm.setIndexOnly(3);
75 if(norm.current()!=0x4e3d) {
134 norm.setMode(UNORM_NONE);
135 if(norm.first()!=0x61 || norm.next()!=0x308 || norm.last()!=0x2f800) {
H A Dtstnorm.cpp166 Normalizer* norm = new Normalizer("", UNORM_NFD); local
171 backAndForth(norm, canonTests[i][0]);
175 norm->setMode(UNORM_NFC);
177 backAndForth(norm, canonTests[i][0]);
180 delete norm;
185 Normalizer* norm = new Normalizer("", UNORM_NFD); local
186 iterateTest(norm, canonTests, ARRAY_LENGTH(canonTests), 1);
188 delete norm;
193 Normalizer* norm = new Normalizer("", UNORM_NFKD); local
194 iterateTest(norm, compatTest
203 Normalizer* norm = new Normalizer("", UNORM_NFC); local
213 Normalizer* norm = new Normalizer("", UNORM_NFKC); local
233 Normalizer* norm = new Normalizer("", UNORM_NFC); local
255 Normalizer* norm = new Normalizer("", UNORM_NFD); local
[all...]
H A Dcollationtest.cpp116 UBool getCollationKey(const char *norm, const UnicodeString &line,
119 UBool checkCompareTwo(const char *norm, const UnicodeString &prevFileLine,
1304 UBool CollationTest::getCollationKey(const char *norm, const UnicodeString &line,
1312 norm, errorCode.errorName());
1321 norm);
1342 errln("Collator(%s).getCollationKey() contains a 00 byte", norm);
1352 norm, (int)numLevelSeparators, (int)numLevels);
1415 norm);
1430 norm, (int)partSize, errorCode.errorName());
1437 norm, (in
1476 checkCompareTwo(const char *norm, const UnicodeString &prevFileLine, const UnicodeString &prevString, const UnicodeString &s, UCollationResult expectedOrder, Collation::Level expectedLevel, IcuTestErrorCode &errorCode) argument
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/wind/
H A Didn-lookup.c74 uint32_t *norm = malloc(norm_len * sizeof(uint32_t)); local
78 if (norm == NULL && norm_len != 0)
84 ret = wind_stringprep(u, u_len, norm, &norm_len, WIND_PROFILE_NAME);
94 for (j = i; j < norm_len && !is_separator(norm[j]); ++j)
97 ret = wind_punycode_label_toascii(norm + i, j - i, ep, &len);
106 free(norm);
/macosx-10.10.1/ruby-106/ruby/ext/bigdecimal/lib/bigdecimal/
H A Dnewton.rb33 def norm(fv,zero=0.0) method in class:Newton
51 d = norm(f0,zero)
72 dn = norm(f0,zero)
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dpdf.vim30 nnoremap <silent><buffer> <C-T> :if len(b:pdf_tagstack) > 0 <Bar> call setpos('.',remove(b:pdf_tagstack, -1)) <Bar> else <Bar> exe "norm! \<Lt>C-T>" <Bar> endif<CR>
59 norm! m'
66 exe 'norm! '.oldcol.'|'
74 norm! m'
76 norm! 1go
80 exe "goto ".(digits)."|norm! 1 "
H A Dman.vim124 exe "norm! \<C-W>b"
126 exe "norm! " . thiswin . "\<C-W>w"
131 exe "norm! \<C-W>w"
147 silent exec "norm 1GdG"
152 silent norm ggdd
155 silent norm Gdd
171 exec "norm ".s:man_tag_col."|"
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_div.c106 int res, n, t, i, norm, neg; local
152 norm = mp_count_bits(&y) % DIGIT_BIT;
153 if (norm < (int)(DIGIT_BIT-1)) {
154 norm = (DIGIT_BIT-1) - norm;
155 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
158 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
162 norm = 0;
272 mp_div_2d (&x, norm, &x, NULL);
/macosx-10.10.1/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_div.c106 int res, n, t, i, norm, neg; local
152 norm = mp_count_bits(&y) % DIGIT_BIT;
153 if (norm < (int)(DIGIT_BIT-1)) {
154 norm = (DIGIT_BIT-1) - norm;
155 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
158 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
162 norm = 0;
272 mp_div_2d (&x, norm, &x, NULL);
/macosx-10.10.1/ruby-106/ruby/test/matrix/
H A Dtest_vector.rb135 assert_in_epsilon(3.7416573867739413, @v1.norm)
136 assert_in_epsilon(3.7416573867739413, @v4.norm)
142 assert_equal(1.0, v.norm, bug6966)
147 assert_equal(0.5, v.norm)
/macosx-10.10.1/ICU-531.30/icuSources/tools/gennorm2/
H A Dn2builder.h85 UBool combinesWithCCBetween(const Norm &norm, uint8_t lowCC, uint8_t highCC) const;
86 UChar32 combine(const Norm &norm, UChar32 trail) const;
H A Dn2builder.cpp407 UBool Normalizer2DataBuilder::combinesWithCCBetween(const Norm &norm, argument
411 const CompositionPair *pairs=norm.getCompositionPairs(length);
422 UChar32 Normalizer2DataBuilder::combine(const Norm &norm, UChar32 trail) const { argument
424 const CompositionPair *pairs=norm.getCompositionPairs(length);
449 Norm &norm=norms[value]; local
450 const UnicodeString &m=*norm.mapping;
467 if(norm.mappingType==Norm::ROUND_TRIP) {
509 if(norm.mappingType==Norm::ROUND_TRIP && prev!=0) {
527 if(norm.rawMapping==NULL) {
529 norm
1057 const Norm &norm=norms[i]; local
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/library/
H A Dauto.tcl134 set norm $i
136 set norm [file normalize $i]
138 if {[info exists seen($norm)]} { continue }
139 set seen($norm) ""
/macosx-10.10.1/tcl-105/tcl84/tcl/library/
H A Dauto.tcl140 set norm $i
142 set norm [file normalize $i]
144 if {[info exists seen($norm)]} { continue }
145 set seen($norm) ""
/macosx-10.10.1/vim-55/runtime/
H A Dmacmap.vim59 nnoremap <silent> <special> <D-a> :if &slm != ""<Bar>exe ":norm gggH<C-O>G"<Bar> else<Bar>exe ":norm ggVG"<Bar>endif<CR>
/macosx-10.10.1/tcl-105/tests/
H A Dpkgreq.test20 if {[regexp {^(dom::c|page::((analysis|compiler|transform)::.*|(gen::peg|writer)::(me|mecpu)|(reader|util::norm)::(peg|lemon))|xotcl::.*::(ldap|.*gdbm)|(doctools::(toc|idx)|pt::peg)::(import|export)::.*)$} $pkg]} {
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dxpath_parser.rb673 def norm b method in class:REXML.XPathParser.expr
703 i1 = norm( i1 )
704 i2 = norm( i2 )
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/fileutil/
H A Dtraverse.tcl209 set norm [fileutil::fullnormalize $f]
210 if {[info exists _known($norm)]} continue
211 set _known($norm) .
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/
H A Dsak.tcl903 proc bench_mod {mlist paths interp flags norm format verbose output} {
955 _bench_write $output [array get DATA] $norm $format
959 proc bench_all {flags norm format verbose output} {
960 bench_mod [modules] $flags $norm $format $verbose $output
965 proc _bench_write {output data norm format} {
966 if {$norm != {}} {
970 set data [bench::norm $data $norm]
1925 set norm {}
1940 -norm {se
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/
H A Dsak.tcl903 proc bench_mod {mlist paths interp flags norm format verbose output} {
955 _bench_write $output [array get DATA] $norm $format
959 proc bench_all {flags norm format verbose output} {
960 bench_mod [modules] $flags $norm $format $verbose $output
965 proc _bench_write {output data norm format} {
966 if {$norm != {}} {
970 set data [bench::norm $data $norm]
1925 set norm {}
1940 -norm {se
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Dxmlschemastypes.c2131 xmlChar *norm = NULL; local
2154 norm = xmlSchemaWhiteSpaceReplace(value);
2156 norm = xmlSchemaCollapseString(value);
2157 if (norm != NULL)
2158 value = norm;
2206 norm = xmlSchemaCollapseString(value);
2208 norm = xmlSchemaWhiteSpaceReplace(value);
2209 if (norm != NULL)
2210 value = norm;
2225 norm
5937 xmlSchemaValPtr norm; local
5966 xmlSchemaValPtr norm; local
5994 xmlSchemaValPtr norm; local
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxmlschemastypes.c2131 xmlChar *norm = NULL; local
2154 norm = xmlSchemaWhiteSpaceReplace(value);
2156 norm = xmlSchemaCollapseString(value);
2157 if (norm != NULL)
2158 value = norm;
2206 norm = xmlSchemaCollapseString(value);
2208 norm = xmlSchemaWhiteSpaceReplace(value);
2209 if (norm != NULL)
2210 value = norm;
2225 norm
5930 xmlSchemaValPtr norm; local
5959 xmlSchemaValPtr norm; local
5987 xmlSchemaValPtr norm; local
[all...]

Completed in 187 milliseconds

1234