Home
last modified time | relevance | path

Searched refs:ctype (Results 1 – 25 of 118) sorted by relevance

12345

/freebsd/usr.bin/localedef/
H A Dctype.c81 int32_t ctype; member
132 ctn->ctype |= _ISCNTRL; in add_ctype_impl()
138 ctn->ctype |= _ISPRINT; in add_ctype_impl()
376 ctn->ctype |= _ISALPHA; in dump_ctype()
380 ctn->ctype |= _ISSPACE; in dump_ctype()
382 ctn->ctype |= _ISGRAPH; in dump_ctype()
403 if ((ctn->ctype & _ISSPACE) && (ctn->ctype & _ISGRAPH)) in dump_ctype()
405 if ((ctn->ctype & _ISCNTRL) && (ctn->ctype & _ISPRINT)) in dump_ctype()
412 wc, ctn->ctype); in dump_ctype()
428 if ((last_ct != NULL) && (last_ct->ctype == ctn->ctype) && in dump_ctype()
[all …]
/freebsd/lib/libnv/tests/
H A Dnvlist_send_recv_test.c100 int type, ctype, fd; in send_nvlist_parent() local
227 ATF_REQUIRE(ctype == NV_TYPE_BOOL); in send_nvlist_parent()
233 ATF_REQUIRE(ctype == NV_TYPE_BOOL); in send_nvlist_parent()
239 ATF_REQUIRE(ctype == NV_TYPE_NUMBER); in send_nvlist_parent()
245 ATF_REQUIRE(ctype == NV_TYPE_NUMBER); in send_nvlist_parent()
251 ATF_REQUIRE(ctype == NV_TYPE_NUMBER); in send_nvlist_parent()
257 ATF_REQUIRE(ctype == NV_TYPE_NUMBER); in send_nvlist_parent()
263 ATF_REQUIRE(ctype == NV_TYPE_NUMBER); in send_nvlist_parent()
269 ATF_REQUIRE(ctype == NV_TYPE_NUMBER); in send_nvlist_parent()
275 ATF_REQUIRE(ctype == NV_TYPE_STRING); in send_nvlist_parent()
[all …]
/freebsd/sys/libkern/
H A Diconv_ucs.c84 void * ctype; member
126 dp->ctype = NULL; in iconv_ucs_open()
153 if (dp->ctype) in iconv_ucs_close()
154 iconv_close(dp->ctype); in iconv_ucs_close()
201 if (casetype == KICONV_FROM_LOWER && dp->ctype) { in iconv_ucs_conv()
202 code = towlower(code, dp->ctype); in iconv_ucs_conv()
204 code = towupper(code, dp->ctype); in iconv_ucs_conv()
301 if (casetype == KICONV_LOWER && dp->ctype) { in iconv_ucs_conv()
302 code = towlower(code, dp->ctype); in iconv_ucs_conv()
303 } else if (casetype == KICONV_UPPER && dp->ctype) { in iconv_ucs_conv()
[all …]
/freebsd/cddl/contrib/opensolaris/common/ctf/
H A Dctf_decl.c91 uint_t ctype, kind, n = 1; in ctf_decl_push() local
103 ctf_get_ctt_index(fp, tp, NULL, &ctype, NULL); in ctf_decl_push()
115 ctf_decl_push(cd, fp, ctype); in ctf_decl_push()
122 ctf_decl_push(cd, fp, ctype); in ctf_decl_push()
127 ctf_decl_push(cd, fp, ctype); in ctf_decl_push()
134 ctf_decl_push(cd, fp, ctype); in ctf_decl_push()
H A Dctf_types.c292 uint_t kind, ctype; in ctf_type_resolve() local
301 ctf_get_ctt_index(fp, tp, NULL, &ctype, NULL); in ctf_type_resolve()
302 if (ctype == type || ctype == otype || ctype == prev) { in ctf_type_resolve()
307 type = ctype; in ctf_type_resolve()
617 uint_t ctype, kind; in ctf_type_reference() local
630 ctf_get_ctt_index(fp, tp, NULL, &ctype, NULL); in ctf_type_reference()
631 return (ctype); in ctf_type_reference()
/freebsd/sys/netgraph/
H A Dng_parse.c108 enum comptype ctype);
114 enum comptype ctype);
1201 const enum comptype ctype) in ng_parse_composite() argument
1238 if (ctype != CT_STRUCT) { in ng_parse_composite()
1426 if (ctype != CT_STRUCT) { in ng_unparse_composite()
1471 const enum comptype ctype) in ng_get_composite_elem_default() argument
1476 switch (ctype) { in ng_get_composite_elem_default()
1517 const enum comptype ctype) in ng_get_composite_len() argument
1519 switch (ctype) { in ng_get_composite_len()
1561 switch (ctype) { in ng_get_composite_etype()
[all …]
/freebsd/crypto/openssl/crypto/objects/
H A Dobjects.txt1135 set-ctype 0 : setct-PANData
1136 set-ctype 1 : setct-PANToken
1137 set-ctype 2 : setct-PANOnly
1138 set-ctype 3 : setct-OIData
1139 set-ctype 4 : setct-PI
1140 set-ctype 5 : setct-PIData
1142 set-ctype 7 : setct-HODInput
1148 set-ctype 13 : setct-PI-TBS
1149 set-ctype 14 : setct-PResData
1160 set-ctype 26 : setct-CapReqTBS
[all …]
/freebsd/sys/arm/arm/
H A Dcpufunc.c145 u_int ctype, dsize, cpuid; in get_cachetype_cp15() local
149 ctype = cp15_ctr_get(); in get_cachetype_cp15()
158 if (ctype == cpuid) in get_cachetype_cp15()
161 if (CPU_CT_FORMAT(ctype) == CPU_CT_ARMV7) { in get_cachetype_cp15()
191 dsize = CPU_CT_DSIZE(ctype); in get_cachetype_cp15()
/freebsd/contrib/bsnmp/lib/
H A Dsnmpcrypto.c146 const EVP_CIPHER **ctype, uint8_t *piv) in snmp_pdu_cipher_init() argument
154 *ctype = EVP_des_cbc(); in snmp_pdu_cipher_init()
159 *ctype = EVP_aes_128_cfb128(); in snmp_pdu_cipher_init()
182 const EVP_CIPHER *ctype; in snmp_pdu_encrypt() local
185 err = snmp_pdu_cipher_init(pdu, pdu->scoped_len, &ctype, iv); in snmp_pdu_encrypt()
194 if (EVP_EncryptInit(ctx, ctype, pdu->user.priv_key, iv) != 1) in snmp_pdu_encrypt()
215 const EVP_CIPHER *ctype; in snmp_pdu_decrypt() local
218 err = snmp_pdu_cipher_init(pdu, pdu->scoped_len, &ctype, iv); in snmp_pdu_decrypt()
227 if (EVP_DecryptInit(ctx, ctype, pdu->user.priv_key, iv) != 1 || in snmp_pdu_decrypt()
/freebsd/crypto/heimdal/lib/asn1/
H A Dsymbol.h120 enum ctype { CT_CONTENTS, CT_USER } ; enum
137 enum ctype ctype; member
/freebsd/crypto/openssl/include/crypto/
H A Dsparse_array.h23 # define DEFINE_SPARSE_ARRAY_OF_INTERNAL(type, ctype) \ argument
60 static ossl_unused ossl_inline ctype \
67 ossl_uintmax_t n, ctype *val) \
/freebsd/contrib/llvm-project/libcxx/include/
H A Dctype.h38 #if __has_include_next(<ctype.h>)
39 # include_next <ctype.h>
H A Dcctype40 #include <ctype.h>
43 # error <cctype> tried including <ctype.h> but didn't find libc++'s <ctype.h> header. \
H A Dlocale30 ctype = 0x020,
146 // 22.4.1 and 22.4.1.3, ctype:
830 const ctype<_CharT>& __ct = std::use_facet<ctype<_CharT> >(__iob.getloc());
1054 const ctype<_CharT>& __ct = std::use_facet<ctype<_CharT> >(__loc);
1094 const ctype<_CharT>& __ct = std::use_facet<ctype<_CharT> >(__loc);
1424 const ctype<char_type>& __ct = std::use_facet<ctype<char_type> >(__iob.getloc());
1797 const ctype<char_type>& __ct = std::use_facet<ctype<char_type> >(__iob.getloc());
2622 const ctype<char_type>& __ct = std::use_facet<ctype<char_type> >(__loc);
2659 const ctype<char_type>& __ct = std::use_facet<ctype<char_type> >(__loc);
2917 const ctype<char_type>& __ct = std::use_facet<ctype<char_type> >(__loc);
[all …]
H A D__locale312 // template <class charT> class ctype
408 // Same type as Newlib's _ctype_ array in newlib/libc/include/ctype.h.
468 class _LIBCPP_TEMPLATE_VIS ctype;
520 ~ctype() override;
619 ~ctype() override;
636 class _LIBCPP_EXPORTED_FROM_ABI ctype_byname<char> : public ctype<char> {
680 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
685 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
690 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
740 return std::use_facet<ctype<_CharT> >(__loc).toupper(__c);
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dlocale.inc33 // [category.ctype], ctype
37 using std::ctype;
/freebsd/crypto/heimdal/lib/krb5/
H A Dmit_glue.c146 krb5_c_valid_cksumtype(krb5_cksumtype ctype) in krb5_c_valid_cksumtype() argument
148 return krb5_cksumtype_valid(NULL, ctype); in krb5_c_valid_cksumtype()
152 krb5_c_is_coll_proof_cksum(krb5_cksumtype ctype) in krb5_c_is_coll_proof_cksum() argument
154 return krb5_checksum_is_collision_proof(NULL, ctype); in krb5_c_is_coll_proof_cksum()
158 krb5_c_is_keyed_cksum(krb5_cksumtype ctype) in krb5_c_is_keyed_cksum() argument
160 return krb5_checksum_is_keyed(NULL, ctype); in krb5_c_is_keyed_cksum()
/freebsd/crypto/openssh/
H A Dserverloop.c622 char *ctype = NULL; in server_input_channel_open() local
627 if ((r = sshpkt_get_cstring(ssh, &ctype, NULL)) != 0 || in server_input_channel_open()
633 ctype, rchan, rwindow, rmaxpack); in server_input_channel_open()
635 if (strcmp(ctype, "session") == 0) { in server_input_channel_open()
637 } else if (strcmp(ctype, "direct-tcpip") == 0) { in server_input_channel_open()
639 } else if (strcmp(ctype, "direct-streamlocal@openssh.com") == 0) { in server_input_channel_open()
641 } else if (strcmp(ctype, "tun@openssh.com") == 0) { in server_input_channel_open()
645 debug_f("confirm %s", ctype); in server_input_channel_open()
662 debug_f("failure %s", ctype); in server_input_channel_open()
673 free(ctype); in server_input_channel_open()
[all …]
/freebsd/contrib/nvi/common/
H A Dconv.c325 char *ctype = setlocale(LC_CTYPE, NULL); in conv_init() local
331 if (!strcmp(ctype, "ko_KR.CP949")) in conv_init()
333 else if (!strcmp(ctype, "zh_CN.GB2312")) in conv_init()
335 else if (!strcmp(ctype, "zh_CN.GBK")) in conv_init()
342 if (!strcmp(ctype, "C") || !strcmp(ctype, "POSIX")) { in conv_init()
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp122 const locale::category locale::ctype; member in locale
305 if (c & locale::ctype) { in __imp()
384 if (c & locale::ctype) { in __imp()
707 constinit locale::id ctype<wchar_t>::id;
709 ctype<wchar_t>::~ctype() {} in ~ctype()
805 constinit locale::id ctype<char>::id;
807 const size_t ctype<char>::table_size;
809 ctype<char>::ctype(const mask* tab, bool del, size_t refs) : locale::facet(refs), __tab_(tab), __de… in ctype() function in ctype
814 ctype<char>::~ctype() { in ~ctype()
901 const ctype<char>::mask* ctype<char>::classic_table() noexcept { in classic_table()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/llvm_libc_wrappers/
H A Dctype.h23 #include_next <ctype.h>
29 #if __has_include(<llvm-libc-decls/ctype.h>)
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A D_nvlist.py190 ctype = _ffi.typeof(element)
191 if ctype is not specimen_ctype:
243 valptr = _ffi.new(typeinfo.ctype)
256 valptr = _ffi.new(typeinfo.ctype)
/freebsd/crypto/openssl/crypto/cms/
H A Dcms_ess.c385 ASN1_OBJECT *ctype; in ossl_cms_encode_Receipt() local
399 ctype = CMS_signed_get0_data_by_OBJ(si, in ossl_cms_encode_Receipt()
402 if (!ctype) { in ossl_cms_encode_Receipt()
408 rct.contentType = ctype; in ossl_cms_encode_Receipt()
/freebsd/tools/build/cross-build/include/linux/
H A Dctype.h37 #include_next <ctype.h>
/freebsd/usr.bin/localedef/bootstrap/
H A Dctype.h38 #include_next <ctype.h>

12345