| /freebsd-10-stable/lib/libthr/thread/ |
| D | thr_spec.c | 110 if (curthread->specific == NULL) in _thread_cleanupspecific() 120 (curthread->specific[key].data != NULL)) { in _thread_cleanupspecific() 121 if (curthread->specific[key].seqno == in _thread_cleanupspecific() 123 data = curthread->specific[key].data; in _thread_cleanupspecific() 127 curthread->specific[key].data = NULL; in _thread_cleanupspecific() 129 } else if (curthread->specific[key].data != NULL) { in _thread_cleanupspecific() 138 curthread->specific[key].data = NULL; in _thread_cleanupspecific() 154 munmap(curthread->specific, PTHREAD_KEYS_MAX * sizeof(struct in _thread_cleanupspecific() 156 curthread->specific = NULL; in _thread_cleanupspecific() 177 if (pthread->specific == NULL) { in _pthread_setspecific() [all …]
|
| /freebsd-10-stable/lib/libkse/thread/ |
| D | thr_spec.c | 112 if (curthread->specific == NULL) in _thread_cleanupspecific() 124 (curthread->specific[key].data != NULL)) { in _thread_cleanupspecific() 125 if (curthread->specific[key].seqno == in _thread_cleanupspecific() 127 data = curthread->specific[key].data; in _thread_cleanupspecific() 131 curthread->specific[key].data = NULL; in _thread_cleanupspecific() 151 free(curthread->specific); in _thread_cleanupspecific() 152 curthread->specific = NULL; in _thread_cleanupspecific() 182 if ((pthread->specific) || in _pthread_setspecific() 183 (pthread->specific = pthread_key_allocate_data())) { in _pthread_setspecific() 186 if (pthread->specific[key].data == NULL) { in _pthread_setspecific() [all …]
|
| /freebsd-10-stable/crypto/openssl/doc/crypto/ |
| D | CRYPTO_set_ex_data.pod | 5 CRYPTO_set_ex_data, CRYPTO_get_ex_data - internal application specific data functions 17 Several OpenSSL structures can have application specific data attached to them. 19 specific data attached to a specific structure. 25 B<CRYPTO_set_ex_data()> is used to set application specific data, the data is 29 B<CRYPTO_get_ex_data()> is used to retrieve application specific data. The data
|
| D | RSA_get_ex_new_index.pod | 5 RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specific data to RSA struc… 29 Several OpenSSL structures can have application specific data attached to them. 38 new application specific data. It takes three optional function pointers which 51 B<RSA_set_ex_data()> is used to set application specific data, the data is 55 B<RSA_get_ex_data()> is used to retrieve application specific data. The data 62 application specific structure. 69 pointer to the parent RSA structure. B<ptr> is a the application specific data
|
| D | DH_get_ex_new_index.pod | 5 DH_get_ex_new_index, DH_set_ex_data, DH_get_ex_data - add application specific data to DH structures 22 These functions handle application specific data in DH
|
| D | DSA_get_ex_new_index.pod | 5 DSA_get_ex_new_index, DSA_set_ex_data, DSA_get_ex_data - add application specific data to DSA struc… 22 These functions handle application specific data in DSA
|
| /freebsd-10-stable/crypto/openssl/doc/ssl/ |
| D | SSL_CTX_get_ex_new_index.pod | 5 SSL_CTX_get_ex_new_index, SSL_CTX_set_ex_data, SSL_CTX_get_ex_data - internal application specific … 29 Several OpenSSL structures can have application specific data attached to them. 31 specific data attached to a specific structure. 34 specific data.
|
| D | SSL_get_ex_new_index.pod | 5 SSL_get_ex_new_index, SSL_set_ex_data, SSL_get_ex_data - internal application specific data functio… 29 Several OpenSSL structures can have application specific data attached to them. 31 specific data attached to a specific structure. 34 specific data.
|
| D | SSL_SESSION_get_ex_new_index.pod | 5 …ex, SSL_SESSION_set_ex_data, SSL_SESSION_get_ex_data - internal application specific data functions 29 Several OpenSSL structures can have application specific data attached to them. 31 specific data attached to a specific structure. 34 specific data.
|
| /freebsd-10-stable/lib/libc/softfloat/ |
| D | softfloat-source.txt | 102 is slightly scattered between target-specific and target-independent 119 processors - Target-specific header files that are not specific to 131 are not within these target-specific subdirectories are intended to be 134 The naming convention used for the target-specific directories is 149 Alongside the supplied target-specific directories is a `templates' 150 directory containing a set of ``generic'' target-specific source files. A 163 the `*' symbol is used in place of the name of a specific target, such as 170 The target-specific `processors' header file defines integer types 199 The target-specific `softfloat.h' header file defines the SoftFloat 206 target-specific declarations in `softfloat.h' must match what `softfloat.c' [all …]
|
| /freebsd-10-stable/tools/test/testfloat/ |
| D | testfloat-source.txt | 103 is slightly scattered between target-specific and target-independent 115 processors - Target-specific header files that are not specific to 122 files that are not within these target-specific subdirectories are intended 125 The naming convention used for the target-specific directories is 140 Alongside the supplied target-specific directories there is a `templates' 141 directory containing a set of ``generic'' target-specific source files. 164 target-specific subdirectory within which the SoftFloat header file and 178 specific and some target-independent. The target-independent modules are as 229 later in this document explains how to create a target-specific `systfloat' 236 No target-specific modules are needed for `testsoftfloat'. [all …]
|
| /freebsd-10-stable/contrib/llvm/patches/ |
| D | patch-r208987-format-extensions.diff | 1 This patch adds support for the FreeBSD-specific -fformat-extension option, 23 // Objective-C specific specifiers. 26 + // FreeBSD specific specifiers. 31 // GlibC specific specifiers. 66 // Glibc specific. 81 // Apple-specific 161 // Check for using an Objective-C specific conversion specifier 196 + // FreeBSD specific specifiers 201 // GlibC specific specifiers. 213 + HelpText<"Enable FreeBSD kernel specific format string extensions">;
|
| D | patch-r262261-llvm-r198029-sparc.diff | 3 [Sparc] Add target specific MCExpr class to handle sparc specific modifiers like %hi, %lo, etc., 12 +//===-- SparcMCExpr.cpp - Sparc specific MC expression classes --------===// 113 +//====- SparcMCExpr.h - Sparc specific MC expression classes --*- C++ -*-=====// 122 +// This file describes Sparc-specific MCExprs, used for modifiers like
|
| /freebsd-10-stable/etc/rc.d/ |
| D | dhclient | 41 specific=$(get_if_var $ifn dhclient_flags_IF) 42 if [ -z "$flags" -a -n "$specific" ]; then 43 rc_flags=$specific
|
| /freebsd-10-stable/contrib/gcclibs/libssp/ |
| D | configure.ac | 13 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs]) 14 AC_ARG_ENABLE(version-specific-runtime-libs, 15 [ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in … 19 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);; 96 # Presume the ISO C functions are available; add target-specific 142 # and header files if --enable-version-specific-runtime-libs option
|
| /freebsd-10-stable/contrib/llvm/lib/Support/Unix/ |
| D | README.txt | 9 Posix - code that is specific to Posix variants of UNIX 10 SUS - code that is specific to the Single Unix Specification 11 SysV - code that is specific to System V variants of UNIX
|
| /freebsd-10-stable/tools/tools/ |
| D | README | 12 ath Tools specific to the Atheros 802.11 support 21 drm Tools specific to the DRM/KMS device drivers. 38 iwi Tools specific to the Intel PRO/Wireless 2200BG/2225BG/2915ABG 48 mwl Tools specific to the Marvell 88W8363 support 52 npe Tools specific to the Intel IXP4XXX NPE device 61 sysdoc Build a manual page with available sysctls for a specific
|
| /freebsd-10-stable/contrib/gcc/ |
| D | config.build | 1 # GCC build-specific configuration file. 22 # This is the GCC build-specific configuration file 23 # where a configuration type is mapped to different system-specific 26 # running autoconf when modifying build-specific information. 52 # System-specific settings.
|
| D | config.host | 1 # GCC host-specific configuration file. 22 # This is the GCC host-specific configuration file 23 # where a configuration type is mapped to different system-specific 26 # running autoconf when modifying host-specific information. 40 # host_xmake_file List of host-specific makefile-fragments. 110 # Machine-specific settings.
|
| /freebsd-10-stable/sys/geom/part/ |
| D | g_part_if.m | 76 # add() - scheme specific processing for the add verb. 83 # bootcode() - scheme specific processing for the bootcode verb. 89 # create() - scheme specific processing for the create verb. 95 # destroy() - scheme specific processing for the destroy verb. 123 # modify() - scheme specific processing for the modify verb. 130 # resize() - scheme specific processing for the resize verb. 172 # recover() - scheme specific processing for the recover verb.
|
| /freebsd-10-stable/contrib/ofed/libmlx4/debian/ |
| D | control.in | 14 libmlx4 is a device-specific driver for Mellanox ConnectX InfiniBand 26 libmlx4 is a device-specific driver for Mellanox ConnectX InfiniBand 40 libmlx4 is a device-specific driver for Mellanox ConnectX InfiniBand
|
| /freebsd-10-stable/contrib/ofed/libmthca/debian/ |
| D | control.in | 14 libmthca is a device-specific driver for Mellanox InfiniBand host 26 libmthca is a device-specific driver for Mellanox InfiniBand host 40 libmthca is a device-specific driver for Mellanox InfiniBand host
|
| /freebsd-10-stable/contrib/ntp/sntp/harden/ |
| D | README | 6 If no "more specific" file has been found and cvo.sh says the OS is 9 If no "mode specific" file has been found and the "uname" command returns
|
| /freebsd-10-stable/contrib/gcc/config/ |
| D | t-sol2 | 1 # Solaris-specific format checking and pragmas 8 # Solaris-specific attributes
|
| /freebsd-10-stable/contrib/binutils/binutils/ |
| D | configure.tgt | 1 # This is the binutils target specific file. This is invoked by the 3 # file lets us skip running autoconf when modifying target specific
|