/freebsd/contrib/file/magic/Magdir/ |
H A D | dyadic | 21 >>>1 byte 0x01 component file 32-bit non-journaled non-checksummed 22 #>>>1 byte 0x01 component file 37 >>>1 byte 0x09 component file 64-bit non-journaled non-checksummed 39 >>>1 byte 0x0b component file 32-bit level 1 journaled non-checksummed 40 >>>1 byte 0x0c component file 64-bit level 1 journaled non-checksummed 41 >>>1 byte 0x0d component file 32-bit level 1 journaled checksummed 42 >>>1 byte 0x0e component file 64-bit level 1 journaled checksummed 43 >>>1 byte 0x0f component file 32-bit level 2 journaled checksummed 44 >>>1 byte 0x10 component file 64-bit level 2 journaled checksummed 45 >>>1 byte 0x11 component file 32-bit level 3 journaled checksummed [all …]
|
H A D | misctools | 28 # look for Free/Busy component 29 >>>>15 search/278 :VFREEBUSY file, with Free/Busy component 34 # iCalendar calendar without Free/Busy component 36 # look for ALARM component 37 >>>>>15 search/154 :VALARM file, with ALARM component 43 # iCalendar calendar without Free/Busy component and ALARM component
|
/freebsd/contrib/opencsd/decoder/include/common/ |
H A D | comp_attach_pt_t.h | 73 virtual ocsd_err_t attach(T* component); 82 virtual ocsd_err_t detach(T* component); 86 virtual ocsd_err_t replace_first(T* component); 167 template<class T> ocsd_err_t componentAttachPt<T>::attach(T* component) in attach() argument 171 m_comp = component; in attach() 177 template<class T> ocsd_err_t componentAttachPt<T>::replace_first(T* component) in replace_first() argument 182 if(component == 0) in replace_first() 185 return attach(component); in replace_first() 188 template<class T> ocsd_err_t componentAttachPt<T>::detach(T* component) in detach() argument 190 if(m_comp != component) in detach()
|
/freebsd/crypto/openssl/ssl/record/ |
H A D | README.md | 10 1) A struct definition of the same name as the component 11 2) A set of source files that define the functions for that component 21 dtls1_bitmap.c -> DTLS1_BITMAP component 22 ssl3_buffer.c -> SSL3_BUFFER component 23 ssl3_record.c -> SSL3_RECORD component 24 rec_layer_s3.c, rec_layer_d1.c -> RECORD_LAYER component 26 The RECORD_LAYER component is a facade pattern, i.e. it provides a simplified 31 Any component can directly access its own members - they are private to that 32 component, e.g. ssl3_buffer.c can access members of the SSL3_BUFFER struct 33 without using a macro. No component can directly access the members of another [all …]
|
/freebsd/crypto/openssh/regress/ |
H A D | check-perm.c | 38 char component[PATH_MAX]; in safely_chroot() local 43 if (strlen(path) >= sizeof(component)) in safely_chroot() 52 strlcpy(component, path, sizeof(component)); in safely_chroot() 55 memcpy(component, path, cp - path); in safely_chroot() 56 component[cp - path] = '\0'; in safely_chroot() 61 if (stat(component, &st) != 0) in safely_chroot() 63 component, strerror(errno)); in safely_chroot() 67 cp == NULL ? "" : "component ", component); in safely_chroot() 70 cp == NULL ? "" : "component ", component); in safely_chroot()
|
/freebsd/contrib/kyua/utils/fs/ |
H A D | path.cpp | 63 const std::string component = in.substr(pos, next_pos - pos); in normalize() local 64 if (!component.empty()) { in normalize() 66 out += component; in normalize() 67 else if (component != ".") in normalize() 68 out += "/" + component; in normalize()
|
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
H A D | tda1997x.txt | 8 - YUV422 semi-planar 8bit per component (16 bits total): Y[11:4] CbCr[11:4] 9 - YUV422 semi-planar 10bit per component (20 bits total): Y[11:2] CbCr[11:2] 10 - YUV422 semi-planar 12bit per component (24 bits total): - Y[11:0] CbCr[11:0] 11 - YUV422 BT656 8bit per component (8 bits total): YCbCr[11:4] (2-cycles) 12 - YUV422 BT656 10bit per component (10 bits total): YCbCr[11:2] (2-cycles) 13 - YUV422 BT656 12bit per component (12 bits total): YCbCr[11:0] (2-cycles) 18 - YUV422 semi-planar 12bit per component (24 bits total): Y[11:0] CbCr[11:0] 19 - YUV422 BT656 12bit per component (12 bits total): YCbCr[11:0] (2-cycles)
|
H A D | tvp514x.txt | 5 video formats into digital video component. The tvp514x decoder supports analog- 6 to-digital (A/D) conversion of component RGB and YPbPr signals as well as A/D 8 component YCbCr.
|
/freebsd/contrib/ofed/libmlx5/ |
H A D | buf.c | 327 const char *component) in mlx5_alloc_prefered_buf() argument 355 ret = mlx5_alloc_buf_contig(mctx, buf, size, page_size, component); in mlx5_alloc_prefered_buf() 417 void mlx5_get_alloc_type(const char *component, in mlx5_get_alloc_type() argument 425 snprintf(name, sizeof(name), "%s_ALLOC_TYPE", component); in mlx5_get_alloc_type() 448 const char *component) in mlx5_alloc_get_env_info() argument 459 snprintf(name, sizeof(name), "%s_MAX_LOG2_CONTIG_BSIZE", component); in mlx5_alloc_get_env_info() 470 sprintf(name, "%s_MIN_LOG2_CONTIG_BSIZE", component); in mlx5_alloc_get_env_info() 486 const char *component) in mlx5_alloc_buf_contig() argument 497 component); in mlx5_alloc_buf_contig()
|
/freebsd/crypto/openssl/crypto/cmp/ |
H A D | cmp_util.c | 128 int OSSL_CMP_print_to_bio(BIO *bio, const char *component, const char *file, in OSSL_CMP_print_to_bio() argument 142 if (BIO_printf(bio, "%s:%s:%d:", improve_location_name(component, "CMP"), in OSSL_CMP_print_to_bio() 160 const char *component = in OSSL_CMP_print_errors_cb() local 188 OSSL_CMP_print_to_bio(bio, component, file, line, in OSSL_CMP_print_errors_cb() 196 if (log_fn(component, file, line, OSSL_CMP_LOG_ERR, msg) <= 0) in OSSL_CMP_print_errors_cb()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zfs_znode.c | 200 char *component = comp_buf; in zfs_obj_to_path_impl() local 219 component[0] = '/'; in zfs_obj_to_path_impl() 221 strcpy(component + 1, "<xattrdir>"); in zfs_obj_to_path_impl() 224 ZFS_DIRENT_OBJ(-1ULL), component + 1, in zfs_obj_to_path_impl() 230 complen = strlen(component); in zfs_obj_to_path_impl() 233 memcpy(path, component, complen); in zfs_obj_to_path_impl()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | PathMappingList.cpp | 188 auto component = llvm::sys::path::begin(components, style); in AppendPathComponents() local 190 while (component != e && in AppendPathComponents() 191 llvm::sys::path::is_separator(*component->data(), style)) in AppendPathComponents() 192 ++component; in AppendPathComponents() 193 for (; component != e; ++component) in AppendPathComponents() 194 path.AppendPathComponent(*component); in AppendPathComponents()
|
/freebsd/contrib/ntp/sntp/libevent/cmake/ |
H A D | LibeventConfig.cmake.in | 4 # LIBEVENT_xxx_FOUND - true if component xxx(see available components) found on the system 24 # If no component provided, all components will be used. 32 # find_package() can handle dependencies automatically. For example, given the 'openssl' component, 75 message(FATAL_ERROR "Your libevent library does not contain a ${_comp} component!\n" 78 message_if_needed(WARNING "Your libevent library does not contain a ${_comp} component!") 138 message_if_needed(STATUS "Found libevent component: ${_event_lib}")
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_CMP_log_open.pod | 42 typedef int (*OSSL_CMP_log_cb_t)(const char *component, 45 int OSSL_CMP_print_to_bio(BIO *bio, const char *component, const char *file, 62 typedef int (*OSSL_CMP_log_cb_t)(const char *component, 67 some component info (which may be a module name and/or function name) or NULL, 94 OSSL_CMP_print_to_bio() prints the given component info, filename, line number, 96 I<component> usually is a function or module name.
|
H A D | EVP_PKEY_check.pod | 24 EVP_PKEY_param_check() validates the parameters component of the key 28 EVP_PKEY_param_check_quick() validates the parameters component of the key 34 EVP_PKEY_public_check() validates the public component of the key given by B<ctx>. 36 EVP_PKEY_public_check_quick() validates the public component of the key 42 EVP_PKEY_private_check() validates the private component of the key given by B<ctx>.
|
H A D | OSSL_HTTP_parse_url.pod | 55 The host (or server) component may be a DNS name or an IP address 57 The port component is optional and defaults to C<0>. 60 The path component is also optional and defaults to C</>. 62 I<ppath>, I<pquery>, and I<pfrag>, is assigned the respective url component. 66 If I<pquery> is NULL, any given query component is handled as part of the path. 75 The port component is optional and defaults to C<443> if the scheme is C<https>,
|
/freebsd/contrib/libevent/cmake/ |
H A D | LibeventConfig.cmake.in | 4 # LIBEVENT_xxx_FOUND - true if component xxx(see available components) found on the system 24 # If no component provided, all components will be used. 32 # find_package() can handle dependencies automatically. For example, given the 'openssl' component, 75 message(FATAL_ERROR "Your libevent library does not contain a ${_comp} component!\n" 78 message_if_needed(WARNING "Your libevent library does not contain a ${_comp} component!") 138 message_if_needed(STATUS "Found libevent component: ${_event_lib}")
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ti/ |
H A D | composite.txt | 14 The binding must provide a list of the component clocks that shall be 15 merged to this clock. The component clocks shall be of one of the 25 - clocks : link phandles of component clocks
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | FileSpec.h | 188 /// directory component, then the \a file must have the same directory 189 /// component. Otherwise, just it matches just the filename. An empty \a 380 FileSpec CopyByAppendingPathComponent(llvm::StringRef component) const; in IsResolved() 383 void PrependPathComponent(llvm::StringRef component); 386 void AppendPathComponent(llvm::StringRef component); 389 /// Removes the last path component by replacing the current path with its 404 /// A std::vector of llvm::StringRefs for each path component.
|
/freebsd/crypto/heimdal/doc/ |
H A D | layman.asc | 154 are used to distinguish between component types 156 a given structured type, and component types in 276 component types within a structured type. For instance, 290 one component, the underlying type. Explicit tagging is 302 like a structured type with one component, the underlying 557 component of a structured or CHOICE type. 560 attributes component with an implicit, context-specific tag: 576 Example: The BER encoding of the attributes component of a 600 version component of X.509's Certificate type. 614 component of a SEQUENCE, SET or CHOICE type. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/arm/marvell/ |
H A D | armada-37xx.txt | 5 Power Management component is needed: 22 For AVS an other component is needed:
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | name-prefix.txt | 10 the component. 12 Example: Two instances of the same component.
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Path.cpp | 432 for (auto &component : components) { in append() local 437 size_t loc = component.find_first_not_of(separators(style)); in append() 438 StringRef c = component.substr(loc); in append() 446 !component.empty() && is_separator(component[0], style); in append() 448 !(path.empty() || has_root_name(component, style))) { in append() 453 path.append(component.begin(), component.end()); in append() 735 StringRef component = remaining.take_front(next_slash); in remove_dots() local 748 if (component.empty() || component == ".") { in remove_dots() 750 } else if (remove_dot_dot && component == "..") { in remove_dots() 757 components.push_back(component); in remove_dots() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | FileSpec.cpp | 418 FileSpec::CopyByAppendingPathComponent(llvm::StringRef component) const { in CopyByAppendingPathComponent() 420 ret.AppendPathComponent(component); in CopyByAppendingPathComponent() 433 void FileSpec::PrependPathComponent(llvm::StringRef component) { in PrependPathComponent() argument 434 llvm::SmallString<64> new_path(component); in PrependPathComponent() 447 void FileSpec::AppendPathComponent(llvm::StringRef component) { in AppendPathComponent() argument 450 llvm::sys::path::append(current_path, m_style, component); in AppendPathComponent()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | coresight.txt | 8 sink. Each CoreSight component device should use these properties to describe 56 set(s) of the component. 58 * clocks: the clocks associated to this component. 64 clocks the core of that coresight component. The latter clock 105 coresight component and CPU in the same power domain. When the CPU 106 powers down the coresight component also powers down and loses its 150 Each coresight component must describe the "input" and "output" connections. 153 component represents a hardware port and the connection.
|