Home
last modified time | relevance | path

Searched refs:translated (Results 1 – 25 of 96) sorted by relevance

1234

/freebsd/crypto/openssl/crypto/dso/
H A Ddso_dl.c221 char *translated; in dl_name_converter() local
233 translated = OPENSSL_malloc(rsize); in dl_name_converter()
234 if (translated == NULL) { in dl_name_converter()
240 sprintf(translated, "lib%s%s", filename, DSO_EXTENSION); in dl_name_converter()
242 sprintf(translated, "%s%s", filename, DSO_EXTENSION); in dl_name_converter()
244 sprintf(translated, "%s", filename); in dl_name_converter()
245 return translated; in dl_name_converter()
H A Ddso_dlfcn.c255 char *translated; in dlfcn_name_converter() local
267 translated = OPENSSL_malloc(rsize); in dlfcn_name_converter()
268 if (translated == NULL) { in dlfcn_name_converter()
274 sprintf(translated, "lib%s" DSO_EXTENSION, filename); in dlfcn_name_converter()
276 sprintf(translated, "%s" DSO_EXTENSION, filename); in dlfcn_name_converter()
278 sprintf(translated, "%s", filename); in dlfcn_name_converter()
279 return translated; in dlfcn_name_converter()
H A Ddso_vms.c456 char *translated; in vms_name_converter() local
473 if ((translated = OPENSSL_malloc(rsize)) != NULL) { in vms_name_converter()
477 strncpy(translated, filename, len); in vms_name_converter()
478 translated[len] = '\0'; in vms_name_converter()
479 strcat(translated, DSO_EXTENSION); in vms_name_converter()
481 strcat(translated, p); in vms_name_converter()
484 translated = OPENSSL_strdup(filename); in vms_name_converter()
486 return translated; in vms_name_converter()
H A Ddso_win32.c454 char *translated; in win32_name_converter() local
463 translated = OPENSSL_malloc(len + 5); in win32_name_converter()
466 translated = OPENSSL_malloc(len + 1); in win32_name_converter()
467 if (translated == NULL) { in win32_name_converter()
472 sprintf(translated, "%s.dll", filename); in win32_name_converter()
474 sprintf(translated, "%s", filename); in win32_name_converter()
475 return translated; in win32_name_converter()
/freebsd/crypto/openssl/VMS/
H A Dtranslatesyms.pl39 (my $translated, my $original) = split /\$/;
40 $translations{$original} = $translated.'$';
/freebsd/contrib/libxo/doc/
H A Dhowto.rst285 format, which are translated by hand and compiled into "*machine
300 translated using the `xopo -f $input -o $output` command::
371 Note the field names do not change and they should not be translated.
372 The contents of the note ("byte,bytes") should also not be translated,
377 translated using :manpage:`gettext(3)`. In this example, "web" would
/freebsd/contrib/libucl/
H A DREADME.md199 + `[kKmMgG]` - standard 10 base multipliers (so `1k` is translated to 1000)
200 + `[kKmMgG]b` - 2 power multipliers (so `1kb` is translated to 1024)
201 …s, all time values are translated to float number of seconds, for example `10min` is translated to…
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrAMX.td84 // To be translated to the actual instructions in X86ISelLowering.cpp
149 // To be translated to the actual instructions in X86ISelLowering.cpp
190 // To be translated to the actual instructions in X86ISelLowering.cpp
/freebsd/sys/contrib/device-tree/Bindings/phy/
H A Dphy-miphy365x.txt18 are translated by the driver's .xlate() function.
H A Dphy-miphy28lp.txt16 are translated by the driver's .xlate() function.
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/i386/
H A Dregs.sed.in33 * are translated into single space. The resulting sed script is then run
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-pxa-pci-ce4100.txt16 (middle group of 3) is translated to the local
/freebsd/contrib/dialog/samples/copifuncs/
H A Dcopi.ifmcfg259 # \T translated telephone no. (send strings only)
/freebsd/crypto/openssl/doc/man3/
H A DBIO_new_CMS.pod17 automatically translated to a BER format CMS structure of the appropriate type.
H A DCMS_compress.pod29 Normally the supplied content is translated into MIME canonical format (as
H A DSMIME_read_ASN1.pod23 in binary format and is not translated to canonical form.
H A DSMIME_read_CMS.pod31 in binary format and is not translated to canonical form.
H A DPKCS7_encrypt.pod50 Normally the supplied content is translated into MIME canonical format (as
H A DCMS_encrypt.pod47 Normally the supplied content is translated into MIME canonical format (as
H A DPKCS7_sign.pod49 Normally the supplied content is translated into MIME canonical format (as
/freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/
H A Dcmath70 // libc++ implementation uses __builtin_XXX which gets translated into a libcall
/freebsd/crypto/openssl/doc/man7/
H A Dbio.pod27 example a message digest BIO) or translated (for example an
/freebsd/contrib/nvi/catalog/
H A DREADME91 Once you've translated all of the strings, then add your catalog to the
/freebsd/contrib/file/magic/Magdir/
H A Dgnu54 # offset of table with start offsets of translated sysdep strings
/freebsd/contrib/ntp/sntp/libevent/
H A Dhttp.c3339 char *translated; in evhttp_dispatch_callback() local
3345 if ((translated = mm_malloc(offset + 1)) == NULL) in evhttp_dispatch_callback()
3347 evhttp_decode_uri_internal(path, offset, translated, in evhttp_dispatch_callback()
3351 if (!strcmp(cb->what, translated)) { in evhttp_dispatch_callback()
3352 mm_free(translated); in evhttp_dispatch_callback()
3357 mm_free(translated); in evhttp_dispatch_callback()

1234