Home
last modified time | relevance | path

Searched refs:convert (Results 1 – 25 of 416) sorted by relevance

12345678910>>...17

/freebsd/contrib/sendmail/cf/mailer/
H A Duucp.m442 R<@ $- . UUCP > : $+ $1 ! $2 convert to UUCP format
43 R<@ $+ > : $+ $1 ! $2 convert to UUCP format
44 R$* < @ $- . UUCP > $2 ! $1 convert to UUCP format
45 R$* < @ $+ > $2 ! $1 convert to UUCP format
61 R<@ $- . UUCP > : $+ $1 ! $2 convert to UUCP format
62 R<@ $+ > : $+ $1 ! $2 convert to UUCP format
63 R$* < @ $- . UUCP > $2 ! $1 convert to UUCP format
64 R$* < @ $+ > $2 ! $1 convert to UUCP format
76 R<@ $- . UUCP > : $+ $1 ! $2 convert to UUCP format
77 R<@ $+ > : $+ $1 ! $2 convert to UUCP format
[all …]
H A Dmail11.m449 R$+ < @ $- .DECNET > $: $2 :: $1 convert to DECnet style
50 R$+ < @ $- .LOCAL > $: $2 :: $1 convert to DECnet style
51 R$+ < @ $=w. > $: $2 :: $1 convert to DECnet style
/freebsd/crypto/heimdal/admin/
H A DChangeLog48 * purge.c: convert to slc; don't purge keys older that a certain
52 * rename.c: convert to slc
54 * remove.c: convert to slc
56 * get.c: convert to slc; warn if resetting disallow-all-tix
58 * copy.c: convert to slc
60 * change.c: convert to slc
62 * add.c: convert to slc
64 * list.c: convert to slc
66 * ktutil_locl.h: convert to slc
68 * ktutil.c: convert to slc
/freebsd/tests/sys/kern/acct/
H A DMakefile7 CLEANFILES+= convert.c convert.c.tmp
9 DPSRCS.acct_test= convert.c
10 acct_test.o: convert.c
12 convert.c: ${SRCTOP}/sys/kern/kern_acct.c
/freebsd/contrib/kyua/utils/cmdline/
H A Doptions.hpp154 static int convert(const std::string& str);
170 static option_type convert(const std::string&);
189 static utils::fs::path convert(const std::string&);
212 static option_type convert(const std::string& str);
230 static std::string convert(const std::string& str);
H A Doptions_test.cpp94 convert(const std::string& str) in convert() function in __anon17aee0310111::mock_option
251 ATF_REQUIRE_EQ(123, cmdline::int_option::convert("123")); in ATF_TEST_CASE_BODY()
254 ATF_REQUIRE_EQ(-567, cmdline::int_option::convert("-567")); in ATF_TEST_CASE_BODY()
301 cmdline::list_option::convert(""); in ATF_TEST_CASE_BODY()
308 cmdline::list_option::convert("foo"); in ATF_TEST_CASE_BODY()
316 cmdline::list_option::convert("foo,bar,baz"); in ATF_TEST_CASE_BODY()
326 cmdline::list_option::convert("foo,bar,"); in ATF_TEST_CASE_BODY()
336 cmdline::list_option::convert(",foo,bar"); in ATF_TEST_CASE_BODY()
346 cmdline::list_option::convert("foo,,bar"); in ATF_TEST_CASE_BODY()
399 cmdline::path_option::convert("/foo/bar"); in ATF_TEST_CASE_BODY()
[all …]
H A Doptions.cpp327 cmdline::int_option::convert(const std::string& raw_value) in convert() function in cmdline::int_option
392 cmdline::list_option::convert(const std::string& raw_value) in convert() function in cmdline::list_option
466 cmdline::path_option::convert(const std::string& raw_value) in convert() function in cmdline::path_option
541 cmdline::property_option::convert(const std::string& raw_value) in convert() function in cmdline::property_option
602 cmdline::string_option::convert(const std::string& raw_value) in convert() function in cmdline::string_option
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXMCExpr.cpp35 APF.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
40 APF.convert(APFloat::BFloat(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
45 APF.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
50 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp32 APFixedPoint APFixedPoint::convert(const FixedPointSemantics &DstSema, in convert() function in llvm::APFixedPoint
190 APFixedPoint ConvertedThis = convert(CommonFXSema); in add()
191 APFixedPoint ConvertedOther = Other.convert(CommonFXSema); in add()
214 APFixedPoint ConvertedThis = convert(CommonFXSema); in sub()
215 APFixedPoint ConvertedOther = Other.convert(CommonFXSema); in sub()
238 APFixedPoint ConvertedThis = convert(CommonFXSema); in mul()
239 APFixedPoint ConvertedOther = Other.convert(CommonFXSema); in mul()
295 APFixedPoint ConvertedThis = convert(CommonFXSema); in div()
296 APFixedPoint ConvertedOther = Other.convert(CommonFXSema); in div()
520 ScaleFactor.convert(*OpSema, LosslessRM, &Ignored); in convertToFloat()
[all …]
/freebsd/libexec/tftpd/
H A Dtftp-file.c48 static int convert; variable
189 convert = !strcmp(mode, "netascii"); in write_init()
197 if (convert == 0) in write_file()
243 convert = !strcmp(mode, "netascii"); in read_init()
251 if (convert == 0) in read_file()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h39 const Mask *convert = static_cast<const Mask *>(src); in copy() local
40 hwloc_bitmap_copy(mask, convert->mask); in copy()
43 const Mask *convert = static_cast<const Mask *>(rhs); in bitwise_and() local
44 hwloc_bitmap_and(mask, mask, convert->mask); in bitwise_and()
47 const Mask *convert = static_cast<const Mask *>(rhs); in bitwise_or() local
48 hwloc_bitmap_or(mask, mask, convert->mask); in bitwise_or()
52 const Mask *convert = static_cast<const Mask *>(rhs); in is_equal() local
53 return hwloc_bitmap_isequal(mask, convert->mask); in is_equal()
367 const Mask *convert = static_cast<const Mask *>(src); in copy() local
370 mask[i] = convert->mask[i]; in copy()
[all …]
/freebsd/contrib/ncurses/ncurses/widechar/
H A Dcharable.c73 wchar_t convert; in _nc_to_widechar() local
77 if (mbtowc(&convert, temp, 1) >= 0) in _nc_to_widechar()
78 result = convert; in _nc_to_widechar()
/freebsd/usr.bin/number/
H A Dnumber.c63 static void convert(char *);
97 convert(line); in main()
103 convert(*argv); in main()
109 convert(char *line) in convert() function
/freebsd/usr.bin/calendar/
H A Devents.c76 convert(char *input) in convert() function
168 e->text = convert(txt); in event_add()
173 e->extra = convert(extra); in event_add()
183 text = convert(txt); in event_continue()
/freebsd/usr.bin/comm/
H A Dcomm.c50 static wchar_t *convert(const char *);
143 if ((tline1 = convert(line1)) != NULL) in main()
144 tline2 = convert(line2); in main()
181 convert(const char *str) in convert() function
/freebsd/crypto/openssl/apps/
H A Dciphers.c103 char *ciphers = NULL, *prog, *convert = NULL, *ciphersuites = NULL; in ciphers_main() local
133 convert = opt_arg(); in ciphers_main()
183 if (convert != NULL) { in ciphers_main()
185 OPENSSL_cipher_name(convert)); in ciphers_main()
/freebsd/crypto/heimdal/doc/
H A Dkerberos4.texi32 Because of this it can be hard or impossible to correctly convert a
36 example, suppose you want to convert the principal @samp{rcmd.foo}.
39 there are exceptions to this rule). To correctly convert the instance
54 @code{krb5_425_conv_principal_ext} to convert principals when handling
60 If you want to convert an existing version 4 database, the principal
63 If you decide to convert your database once and for all, you will only
99 When you convert this database you want the following conversions to be
142 will happily convert @samp{rcmd.gone} to @samp{host/gone.foo.se}. This
150 Instead of doing this you can use DNS to convert instances. This is not
/freebsd/lib/libiconv_modules/GBK2K/
H A Dcitrus_gbk2k.c198 goto convert; in _citrus_GBK2K_mbrtowc_priv()
204 goto convert; in _citrus_GBK2K_mbrtowc_priv()
215 goto convert; in _citrus_GBK2K_mbrtowc_priv()
220 convert: in _citrus_GBK2K_mbrtowc_priv()
/freebsd/sbin/veriexec/
H A Dmanifest_parser.y40 static int convert(char *fp, unsigned int count, unsigned char *out);
128 if (convert($3, fingerprint_table[fptype].fp_size,
228 convert(char *fp, unsigned int count, unsigned char *out) in convert() function
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangedConstraintManager.cpp117 llvm::APSInt ConvertedFrom = ComparisonType.convert(From); in assumeSymInclusiveRange()
118 llvm::APSInt ConvertedTo = ComparisonType.convert(To); in assumeSymInclusiveRange()
186 llvm::APSInt ConvertedInt = ComparisonType.convert(Int); in assumeSymRel()
224 Adjustment = APSIntType(Adjustment).convert(SE->getRHS()); in computeAdjustment()
/freebsd/usr.bin/uniq/
H A Duniq.c72 static wchar_t *convert(const char *);
185 tprev = convert(prevline); in main()
191 tthis = convert(thisline); in main()
251 convert(const char *str) in convert()
250 convert(const char *str) convert() function
/freebsd/tools/
H A Dmake_libdeps.sh49 convert() function
111 echo ${libdir}"${FS}"$(echo ${deps} | tr ' ' '\n' | convert | resolvelibdirs)
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRPrinter.cpp114 void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
116 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
118 void convert(yaml::MachineFunction &MF,
120 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
224 convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo()); in print()
227 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo()); in print()
240 convert(YamlMF, *ConstantPool); in print()
242 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); in print()
310 void MIRPrinter::convert(yaml::MachineFunction &MF, in convert() function in MIRPrinter
351 void MIRPrinter::convert(ModuleSlotTracker &MST, in convert() function in MIRPrinter
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h52 template <typename T> static T convert(T rawValue) { return rawValue; } in convert() function
132 template <typename T> char convert(T rawValue) { in convert() function
203 element = ElementTy::convert(buffer.front()); in read()
238 data = ElementTy::convert(buffer.front()); in read()
293 array.append(llvm::map_iterator(buffer.begin(), T::convert), in read()
294 llvm::map_iterator(buffer.end(), T::convert)); in read()
/freebsd/contrib/expat/lib/
H A Dxmltok.c1311 CONVERTER convert; member
1327 int c = uenc->convert(uenc->userData, p); in unknown_isName()
1336 int c = uenc->convert(uenc->userData, p); in unknown_isNmstrt()
1345 int c = uenc->convert(uenc->userData, p); in unknown_isInvalid()
1362 int c = uenc->convert(uenc->userData, *fromP); in unknown_toUtf8()
1386 c = (unsigned short)uenc->convert(uenc->userData, *fromP); in unknown_toUtf16()
1401 XmlInitUnknownEncoding(void *mem, int *table, CONVERTER convert, in XmlInitUnknownEncoding() argument
1422 if (! convert) in XmlInitUnknownEncoding()
1455 e->convert = convert; in XmlInitUnknownEncoding()
1456 if (convert) { in XmlInitUnknownEncoding()
[all …]

12345678910>>...17