Home
last modified time | relevance | path

Searched refs:normalize (Results 1 – 25 of 112) sorted by relevance

12345

/freebsd-12-stable/tools/tools/netmap/
Dctrs.h21 norm2(char *buf, double val, const char *fmt, int normalize) in norm2() argument
25 if (normalize) in norm2()
35 norm(char *buf, double val, int normalize) in norm() argument
37 if (normalize) in norm()
38 return norm2(buf, val, "%.3f %s", normalize); in norm()
40 return norm2(buf, val, "%.0f %s", normalize); in norm()
/freebsd-12-stable/contrib/ntp/libntp/
Dmktime.c114 normalize( in normalize() function
144 normalize(&tmbuf.tm_hour, &tmbuf.tm_min, MINSPERHOUR); in mkdst()
198 normalize(&yourtm.tm_min, &yourtm.tm_sec, SECSPERMIN); in time2()
199 normalize(&yourtm.tm_hour, &yourtm.tm_min, MINSPERHOUR); in time2()
200 normalize(&yourtm.tm_mday, &yourtm.tm_hour, HOURSPERDAY); in time2()
201 normalize(&yourtm.tm_year, &yourtm.tm_mon, MONSPERYEAR); in time2()
/freebsd-12-stable/contrib/googletest/googletest/test/
Dgtest_json_test_utils.py35 def normalize(obj): function
54 return normalize(value)
58 return [normalize(x) for x in obj]
/freebsd-12-stable/crypto/heimdal/lib/wind/
DMakefile.am33 normalize.c \
73 test-normalize \
104 normalize_table.h normalize_table.c: UnicodeData.txt CompositionExclusions-3.2.0.txt gen-normalize.…
105 …$(skip_python) $(PYTHON) $(srcdir)/gen-normalize.py $(srcdir)/UnicodeData.txt $(srcdir)/Compositio…
129 gen-normalize.py \
DNTMakefile46 $(OBJ)\normalize.obj \
76 …_table.h $(OBJ)\normalize_table.c: UnicodeData.txt CompositionExclusions-3.2.0.txt gen-normalize.py
78 …$(PYTHON) $(SRCDIR)\gen-normalize.py $(SRCDIR)\UnicodeData.txt $(SRCDIR)\CompositionExclusions-3.2…
105 $(OBJ)\test-normalize.exe \
124 $(OBJ)\test-normalize.exe: $(OBJ)\test-normalize.obj
141 test-normalize.exe $(SRCDIR)\NormalizationTest.txt
DChangeLog42 * test-normalize.c: include roken.h
80 * normalize.c: use generated constant for length, check for
83 * gen-normalize.py, test-normalize.c: use generated constant for length
126 * gen-normalize.py:
DMakefile.in50 test-normalize$(EXEEXT) test-prohibited$(EXEEXT) \
131 ldap.lo normalize.lo punycode.lo stringprep.lo utf8.lo
158 test_normalize_SOURCES = test-normalize.c
159 test_normalize_OBJECTS = test-normalize.$(OBJEXT)
193 test-normalize.c test-prohibited.c $(test_punycode_SOURCES) \
196 test-bidi.c test-ldap.c test-map.c test-normalize.c \
475 normalize.c \
521 gen-normalize.py \
673 test-normalize$(EXEEXT): $(test_normalize_OBJECTS) $(test_normalize_DEPENDENCIES)
674 @rm -f test-normalize$(EXEEXT)
[all …]
/freebsd-12-stable/contrib/gcc/
Dsreal.c61 static void normalize (sreal *);
135 normalize (sreal *x) in normalize() function
281 normalize (r); in sreal_init()
386 normalize (r); in sreal_add()
436 normalize (r); in sreal_sub()
478 normalize (r); in sreal_mul()
490 normalize (r); in sreal_mul()
535 normalize (r); in sreal_div()
541 normalize (r); in sreal_div()
/freebsd-12-stable/usr.bin/dc/
Dbcode.c409 normalize(struct number *n, u_int s) in normalize() function
420 normalize(n, 0); in get_ulong()
528 normalize(value->u.num, 0); in pop_print()
765 normalize(n, 0); in to_ascii()
982 normalize(a, r->scale); in badd()
984 normalize(b, r->scale); in badd()
1009 normalize(a, r->scale); in bsub()
1011 normalize(b, r->scale); in bsub()
1035 normalize(r, max(scale, max(ascale, bscale))); in bmul_number()
1104 normalize(a, scale); in bmod()
[all …]
Dmem.c71 normalize(divisor, scale); in div_number()
72 normalize(dividend, scale + quotient->scale); in div_number()
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
Dtst.multinormalize.d59 normalize(@func1, 5);
63 normalize(@func2, 5);
Dtst.clearnormalize.d59 normalize(@func, 5);
73 normalize(@func, 5);
Dtst.lquantnormal.d49 normalize(@, 5);
Dtst.stddev.normalize.d44 normalize(@, 10);
Dtst.denormalize.d57 normalize(@func, 5);
Derr.D_NORMALIZE_SCALAR.bad.d62 normalize(@func, "hello");
/freebsd-12-stable/cddl/usr.sbin/dtrace/tests/common/aggs/
DMakefile151 tst.normalize.d \
152 tst.normalize.d.out \
172 tst.stddev.normalize.d \
173 tst.stddev.normalize.d.out \
/freebsd-12-stable/contrib/binutils/binutils/
Dar.c61 static const char *normalize (const char *, bfd *);
187 (!FILENAME_CMP (normalize (*files, arch), head->filename))) in map_over_members()
273 normalize (const char *file, bfd *abfd) in normalize() function
1041 if (FILENAME_CMP (normalize (*files_to_delete, arch), in delete_members()
1096 if (FILENAME_CMP (normalize (*files_to_move, arch), in move_members()
1148 if (FILENAME_CMP (normalize (*files_to_move, arch), in replace_members()
1149 normalize (current->filename, arch)) == 0 in replace_members()
/freebsd-12-stable/contrib/atf/atf-sh/
Dmisc_helpers.sh192 atf_test_case normalize
295 atf_add_test_case normalize
Dnormalize_test.sh36 -o match:'c-d: test value 2' -e ignore ${h} normalize
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
Dfp_mul_impl.inc68 scale += normalize(&aSignificand);
70 scale += normalize(&bSignificand);
74 // denormal path it was already set by normalize( ), but setting it twice
Dfp_add_impl.inc75 aExponent = normalize(&aSignificand);
77 bExponent = normalize(&bSignificand);
87 // was already set by normalize( ), but setting it twice won't hurt
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
DDarwinSDKInfo.cpp24 auto KV = Mapping.find(Key.normalize()); in map()
49 Mapping[KeyVersion.normalize()] = ValueVersion; in parseJSON()
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/llquantize/
Dtst.normal.d37 normalize(@, 10);
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
Drenormalize.d53 normalize(@func, (timestamp - start) / 1000000000);

12345