crypto/heimdal/lib/asn1/asn1parse.c
267
static struct constraint_spec *new_constraint_spec(enum ctype);
crypto/heimdal/lib/asn1/asn1parse.c
2822
new_constraint_spec(enum ctype ct)
crypto/heimdal/lib/asn1/asn1parse.c
2825
c->ctype = ct;
crypto/heimdal/lib/asn1/asn1parse.y
1002
c->ctype = ct;
crypto/heimdal/lib/asn1/asn1parse.y
53
static struct constraint_spec *new_constraint_spec(enum ctype);
crypto/heimdal/lib/asn1/asn1parse.y
999
new_constraint_spec(enum ctype ct)
crypto/heimdal/lib/asn1/symbol.h
137
enum ctype ctype;
crypto/heimdal/lib/krb5/crypto.c
750
krb5_cksumtype ctype,
crypto/heimdal/lib/krb5/crypto.c
759
_krb5_etypes[i]->keyed_checksum->type == ctype)
crypto/heimdal/lib/krb5/crypto.c
768
(int)ctype);
crypto/heimdal/lib/krb5/crypto.c
775
krb5_cksumtype ctype)
crypto/heimdal/lib/krb5/crypto.c
777
struct _krb5_checksum_type *c = _krb5_find_checksum(ctype);
crypto/heimdal/lib/krb5/crypto.c
781
ctype);
crypto/heimdal/lib/krb5/mit_glue.c
146
krb5_c_valid_cksumtype(krb5_cksumtype ctype)
crypto/heimdal/lib/krb5/mit_glue.c
148
return krb5_cksumtype_valid(NULL, ctype);
crypto/heimdal/lib/krb5/mit_glue.c
152
krb5_c_is_coll_proof_cksum(krb5_cksumtype ctype)
crypto/heimdal/lib/krb5/mit_glue.c
154
return krb5_checksum_is_collision_proof(NULL, ctype);
crypto/heimdal/lib/krb5/mit_glue.c
158
krb5_c_is_keyed_cksum(krb5_cksumtype ctype)
crypto/heimdal/lib/krb5/mit_glue.c
160
return krb5_checksum_is_keyed(NULL, ctype);
crypto/heimdal/lib/roken/vis.c
95
#include <ctype.h>
crypto/krb5/src/lib/apputils/net-server.c
1234
enum conn_type ctype;
crypto/krb5/src/lib/apputils/net-server.c
1255
ctype = (conn->type == CONN_TCP_LISTENER) ? CONN_TCP : CONN_UNIXSOCK;
crypto/krb5/src/lib/apputils/net-server.c
1256
if (add_fd(s, ctype, flags, conn->handle, conn->prog, ctx,
crypto/krb5/src/lib/apputils/net-server.c
804
enum conn_type ctype)
crypto/krb5/src/lib/apputils/net-server.c
880
ret = add_fd(sock, ctype, flags, handle, prog, ctx, vcb, &ev);
crypto/krb5/src/lib/crypto/krb/checksum_hmac_md5.c
51
if (ctp->ctype == CKSUMTYPE_HMAC_MD5_ARCFOUR) {
crypto/krb5/src/lib/crypto/krb/coll_proof_cksum.c
31
krb5_c_is_coll_proof_cksum(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/coll_proof_cksum.c
35
ctp = find_cksumtype(ctype);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
217
krb5_cksumtype ctype;
crypto/krb5/src/lib/crypto/krb/crypto_int.h
582
find_cksumtype(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/crypto_int.h
587
if (krb5int_cksumtypes_list[i].ctype == ctype)
crypto/krb5/src/lib/crypto/krb/keyed_checksum_types.c
70
ctypes[c++] = ctp->ctype;
crypto/krb5/src/lib/crypto/krb/keyed_cksum.c
31
krb5_c_is_keyed_cksum(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/keyed_cksum.c
35
ctp = find_cksumtype(ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
204
krb5_checksum_size(krb5_context context, krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
208
if (krb5_c_checksum_length(context, ctype, &ret))
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
216
guess_enctype(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
221
if (ctype == CKSUMTYPE_HMAC_MD5_ARCFOUR)
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
223
ctp = find_cksumtype(ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
234
krb5_calculate_checksum(krb5_context context, krb5_cksumtype ctype,
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
245
keyblock.enctype = guess_enctype(ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
251
ret = krb5_c_make_checksum(context, ctype, kptr, 0, &input, &cksum);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
272
krb5_verify_checksum(krb5_context context, krb5_cksumtype ctype,
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
283
keyblock.enctype = guess_enctype(ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
369
valid_cksumtype(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
37
krb5_boolean KRB5_CALLCONV valid_cksumtype(krb5_cksumtype ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
371
return krb5_c_valid_cksumtype(ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
375
is_keyed_cksum(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
377
return krb5_c_is_keyed_cksum(ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
38
krb5_boolean KRB5_CALLCONV is_coll_proof_cksum(krb5_cksumtype ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
381
is_coll_proof_cksum(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
383
return krb5_c_is_coll_proof_cksum(ctype);
crypto/krb5/src/lib/crypto/krb/old_api_glue.c
39
krb5_boolean KRB5_CALLCONV is_keyed_cksum(krb5_cksumtype ctype);
crypto/krb5/src/lib/crypto/krb/string_to_cksumtype.c
40
*cksumtypep = ctp->ctype;
crypto/krb5/src/lib/crypto/krb/string_to_cksumtype.c
49
*cksumtypep = ctp->ctype;
crypto/krb5/src/lib/crypto/krb/valid_cksumtype.c
31
krb5_c_valid_cksumtype(krb5_cksumtype ctype)
crypto/krb5/src/lib/crypto/krb/valid_cksumtype.c
35
ctp = find_cksumtype(ctype);
crypto/krb5/src/windows/include/loadfuncs-krb5.h
324
(const krb5_cksumtype ctype)
crypto/krb5/src/windows/include/loadfuncs-krb5.h
331
(const krb5_cksumtype ctype)
crypto/krb5/src/windows/include/loadfuncs-krb5.h
338
(const krb5_cksumtype ctype)
crypto/libecc/src/tests/ec_self_tests_core.h
5710
ec_curve_type ctype;
crypto/libecc/src/tests/ec_self_tests_core.h
5719
c->ec_str_p->name->buflen, &ctype); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
5721
*err_val = (((u32)ctype << 24) |
crypto/libecc/src/tests/ec_self_tests_core.h
5733
ec_curve_type ctype;
crypto/libecc/src/tests/ec_self_tests_core.h
5741
c->ec_str_p->name->buflen, &ctype); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
5743
*err_val = (((u32)ctype << 24) |
crypto/openssh/channels.c
1073
c->type, c->xctype != NULL ? c->xctype : c->ctype,
crypto/openssh/channels.c
1191
open_preamble(ssh, __func__, c, c->ctype);
crypto/openssh/channels.c
3227
char *ctype = NULL, *listen_host = NULL;
crypto/openssh/channels.c
3258
if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
crypto/openssh/channels.c
3264
-1, -1, -1, 0, 0, 0, ctype, 1);
crypto/openssh/channels.c
3267
if ((r = sshbuf_put_cstring(modified, ctype)) != 0 ||
crypto/openssh/channels.c
3309
if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
crypto/openssh/channels.c
3313
if (strcmp(ctype, "tcpip-forward") != 0) {
crypto/openssh/channels.c
3314
error_f("unsupported request %s", ctype);
crypto/openssh/channels.c
3361
free(ctype);
crypto/openssh/channels.c
361
const char *type = c->xctype == NULL ? c->ctype : c->xctype;
crypto/openssh/channels.c
4748
char *ctype, char *rname, struct channel_connect *cctx,
crypto/openssh/channels.c
4813
char *ctype, char *rname)
crypto/openssh/channels.c
4820
sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
crypto/openssh/channels.c
4826
c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
crypto/openssh/channels.c
4841
u_short listen_port, char *ctype, char *rname)
crypto/openssh/channels.c
4856
ctype, rname);
crypto/openssh/channels.c
4859
ctype, rname);
crypto/openssh/channels.c
4869
char *ctype, char *rname)
crypto/openssh/channels.c
4881
ctype, rname);
crypto/openssh/channels.c
4892
char *ctype, char *rname, int *reason, const char **errmsg)
crypto/openssh/channels.c
4934
sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
crypto/openssh/channels.c
4941
c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
crypto/openssh/channels.c
4953
char *ctype, char *rname)
crypto/openssh/channels.c
4987
return connect_to(ssh, path, PORT_STREAMLOCAL, ctype, rname);
crypto/openssh/channels.c
5016
rdynamic_connect_prepare(struct ssh *ssh, char *ctype, char *rname)
crypto/openssh/channels.c
5021
c = channel_new(ssh, ctype, SSH_CHANNEL_RDYNAMIC_OPEN, -1, -1, -1,
crypto/openssh/channels.c
508
channel_new(struct ssh *ssh, char *ctype, int type, int rfd, int wfd, int efd,
crypto/openssh/channels.c
5443
if (c == NULL || c->ctype == NULL || c->lastused == 0 ||
crypto/openssh/channels.c
5444
strcmp(c->ctype, "x11-connection") != 0)
crypto/openssh/channels.c
552
c->ctype = ctype;
crypto/openssh/channels.c
559
c->inactive_deadline = lookup_timeout(ssh, c->ctype);
crypto/openssh/channels.c
563
found, c->ctype, remote_name, c->inactive_deadline);
crypto/openssh/channels.h
188
char *ctype; /* const type - NB. not freed on channel_free */
crypto/openssh/clientloop.c
1926
char *ctype = NULL;
crypto/openssh/clientloop.c
1932
if ((r = sshpkt_get_cstring(ssh, &ctype, &len)) != 0 ||
crypto/openssh/clientloop.c
1939
ctype, rchan, rwindow, rmaxpack);
crypto/openssh/clientloop.c
1941
if (strcmp(ctype, "forwarded-tcpip") == 0) {
crypto/openssh/clientloop.c
1942
c = client_request_forwarded_tcpip(ssh, ctype, rchan, rwindow,
crypto/openssh/clientloop.c
1944
} else if (strcmp(ctype, "forwarded-streamlocal@openssh.com") == 0) {
crypto/openssh/clientloop.c
1945
c = client_request_forwarded_streamlocal(ssh, ctype, rchan);
crypto/openssh/clientloop.c
1946
} else if (strcmp(ctype, "x11") == 0) {
crypto/openssh/clientloop.c
1947
c = client_request_x11(ssh, ctype, rchan);
crypto/openssh/clientloop.c
1948
} else if (strcmp(ctype, "auth-agent@openssh.com") == 0 ||
crypto/openssh/clientloop.c
1949
strcmp(ctype, "agent-connect") == 0) {
crypto/openssh/clientloop.c
1950
c = client_request_agent(ssh, ctype, rchan);
crypto/openssh/clientloop.c
1953
debug3("proxied to downstream: %s", ctype);
crypto/openssh/clientloop.c
1955
debug("confirm %s", ctype);
crypto/openssh/clientloop.c
1970
debug("failure %s", ctype);
crypto/openssh/clientloop.c
1981
free(ctype);
crypto/openssh/nchan.c
315
if (strcmp(c->ctype, "session") == 0)
crypto/openssh/serverloop.c
614
char *ctype = NULL;
crypto/openssh/serverloop.c
619
if ((r = sshpkt_get_cstring(ssh, &ctype, NULL)) != 0 ||
crypto/openssh/serverloop.c
625
ctype, rchan, rwindow, rmaxpack);
crypto/openssh/serverloop.c
627
if (strcmp(ctype, "session") == 0) {
crypto/openssh/serverloop.c
629
} else if (strcmp(ctype, "direct-tcpip") == 0) {
crypto/openssh/serverloop.c
631
} else if (strcmp(ctype, "direct-streamlocal@openssh.com") == 0) {
crypto/openssh/serverloop.c
633
} else if (strcmp(ctype, "tun@openssh.com") == 0) {
crypto/openssh/serverloop.c
637
debug_f("confirm %s", ctype);
crypto/openssh/serverloop.c
654
debug_f("failure %s", ctype);
crypto/openssh/serverloop.c
665
free(ctype);
crypto/openssh/serverloop.c
885
c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0)
crypto/openssh/ssh-agent.c
1313
u_char ctype;
crypto/openssh/ssh-agent.c
1318
if ((r = sshbuf_get_u8(m, &ctype)) != 0) {
crypto/openssh/ssh-agent.c
1322
switch (ctype) {
crypto/openssh/ssh-agent.c
1351
error_f("Unknown constraint %d", ctype);
crypto/openssl/crypto/cms/cms_ess.c
384
ASN1_OBJECT *ctype;
crypto/openssl/crypto/cms/cms_ess.c
398
ctype = CMS_signed_get0_data_by_OBJ(si,
crypto/openssl/crypto/cms/cms_ess.c
401
if (!ctype) {
crypto/openssl/crypto/cms/cms_ess.c
407
rct.contentType = ctype;
crypto/openssl/crypto/cms/cms_sd.c
127
ASN1_OBJECT *ctype = cms->d.signedData->encapContentInfo->eContentType;
crypto/openssl/crypto/cms/cms_sd.c
131
V_ASN1_OBJECT, ctype, -1)
crypto/openssl/include/crypto/sparse_array.h
23
#define DEFINE_SPARSE_ARRAY_OF_INTERNAL(type, ctype) \
crypto/openssl/include/crypto/sparse_array.h
59
static ossl_unused ossl_inline ctype *ossl_sa_##type##_get(const SPARSE_ARRAY_OF(type) * sa, ossl_uintmax_t n) \
crypto/openssl/include/crypto/sparse_array.h
65
ossl_uintmax_t n, ctype *val) \
crypto/openssl/include/internal/priority_queue.h
19
#define DEFINE_PRIORITY_QUEUE_OF_INTERNAL(type, ctype) \
crypto/openssl/include/internal/priority_queue.h
21
static ossl_unused ossl_inline PRIORITY_QUEUE_OF(type) * ossl_pqueue_##type##_new(int (*compare)(const ctype *, const ctype *)) \
crypto/openssl/include/internal/priority_queue.h
33
void (*freefunc)(ctype *)) \
crypto/openssl/include/internal/priority_queue.h
49
ctype * data, size_t *elem) \
crypto/openssl/include/internal/priority_queue.h
53
static ossl_unused ossl_inline ctype * \
crypto/openssl/include/internal/priority_queue.h
58
static ossl_unused ossl_inline ctype * \
crypto/openssl/include/internal/priority_queue.h
63
static ossl_unused ossl_inline ctype * \
crypto/openssl/ssl/quic/quic_rx_depack.c
1428
int ctype = SSL3_RT_QUIC_FRAME_FULL;
crypto/openssl/ssl/quic/quic_rx_depack.c
1433
ctype = SSL3_RT_QUIC_FRAME_PADDING;
crypto/openssl/ssl/quic/quic_rx_depack.c
1436
ctype = SSL3_RT_QUIC_FRAME_HEADER;
crypto/openssl/ssl/quic/quic_rx_depack.c
1440
ch->msg_callback(0, OSSL_QUIC1_VERSION, ctype, sof, framelen,
crypto/openssl/ssl/quic/quic_txp.c
359
int ctype = SSL3_RT_QUIC_FRAME_FULL;
crypto/openssl/ssl/quic/quic_txp.c
369
ctype = SSL3_RT_QUIC_FRAME_PADDING;
crypto/openssl/ssl/quic/quic_txp.c
372
ctype = SSL3_RT_QUIC_FRAME_HEADER;
crypto/openssl/ssl/quic/quic_txp.c
374
h->txp->msg_callback(1, OSSL_QUIC1_VERSION, ctype, h->txn.data, l,
crypto/openssl/ssl/record/methods/tls_common.c
1102
unsigned char ctype = (unsigned char)rec->type;
crypto/openssl/ssl/record/methods/tls_common.c
1104
rl->msg_callback(0, rl->version, SSL3_RT_INNER_CONTENT_TYPE, &ctype,
crypto/openssl/ssl/record/methods/tls_common.c
1742
unsigned char ctype = thistempl->type;
crypto/openssl/ssl/record/methods/tls_common.c
1745
&ctype, 1, rl->cbarg);
crypto/openssl/ssl/s3_lib.c
3856
OPENSSL_free(sc->s3.tmp.ctype);
crypto/openssl/ssl/s3_lib.c
3888
OPENSSL_free(sc->s3.tmp.ctype);
crypto/openssl/ssl/s3_lib.c
4218
*pctype = sc->s3.tmp.ctype;
crypto/openssl/ssl/s3_lib.c
4916
if (s->cert->ctype)
crypto/openssl/ssl/s3_lib.c
4917
return WPACKET_memcpy(pkt, s->cert->ctype, s->cert->ctype_len);
crypto/openssl/ssl/s3_lib.c
4964
OPENSSL_free(c->ctype);
crypto/openssl/ssl/s3_lib.c
4965
c->ctype = NULL;
crypto/openssl/ssl/s3_lib.c
4971
c->ctype = OPENSSL_memdup(p, len);
crypto/openssl/ssl/s3_lib.c
4972
if (c->ctype == NULL)
crypto/openssl/ssl/ssl_cert.c
193
if (cert->ctype) {
crypto/openssl/ssl/ssl_cert.c
194
ret->ctype = OPENSSL_memdup(cert->ctype, cert->ctype_len);
crypto/openssl/ssl/ssl_cert.c
195
if (ret->ctype == NULL)
crypto/openssl/ssl/ssl_cert.c
287
OPENSSL_free(c->ctype);
crypto/openssl/ssl/ssl_local.h
1366
uint8_t *ctype;
crypto/openssl/ssl/ssl_local.h
2096
uint8_t *ctype;
crypto/openssl/ssl/statem/statem_clnt.c
2629
OPENSSL_free(s->s3.tmp.ctype);
crypto/openssl/ssl/statem/statem_clnt.c
2630
s->s3.tmp.ctype = NULL;
crypto/openssl/ssl/statem/statem_clnt.c
2668
if (!PACKET_memdup(&ctypes, &s->s3.tmp.ctype, &s->s3.tmp.ctype_len)) {
crypto/openssl/ssl/t1_lib.c
4230
const uint8_t *ctypes = s->s3.tmp.ctype;
lib/libnv/tests/nvlist_send_recv_test.c
107
int type, ctype, fd;
lib/libnv/tests/nvlist_send_recv_test.c
232
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
234
ATF_REQUIRE(ctype == NV_TYPE_BOOL);
lib/libnv/tests/nvlist_send_recv_test.c
238
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
240
ATF_REQUIRE(ctype == NV_TYPE_BOOL);
lib/libnv/tests/nvlist_send_recv_test.c
244
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
246
ATF_REQUIRE(ctype == NV_TYPE_NUMBER);
lib/libnv/tests/nvlist_send_recv_test.c
250
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
252
ATF_REQUIRE(ctype == NV_TYPE_NUMBER);
lib/libnv/tests/nvlist_send_recv_test.c
256
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
258
ATF_REQUIRE(ctype == NV_TYPE_NUMBER);
lib/libnv/tests/nvlist_send_recv_test.c
262
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
264
ATF_REQUIRE(ctype == NV_TYPE_NUMBER);
lib/libnv/tests/nvlist_send_recv_test.c
268
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
270
ATF_REQUIRE(ctype == NV_TYPE_NUMBER);
lib/libnv/tests/nvlist_send_recv_test.c
274
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
276
ATF_REQUIRE(ctype == NV_TYPE_NUMBER);
lib/libnv/tests/nvlist_send_recv_test.c
280
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
282
ATF_REQUIRE(ctype == NV_TYPE_STRING);
lib/libnv/tests/nvlist_send_recv_test.c
286
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
288
ATF_REQUIRE(ctype == NV_TYPE_STRING);
lib/libnv/tests/nvlist_send_recv_test.c
292
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
294
ATF_REQUIRE(ctype == NV_TYPE_STRING);
lib/libnv/tests/nvlist_send_recv_test.c
298
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
300
ATF_REQUIRE(ctype == NV_TYPE_DESCRIPTOR);
lib/libnv/tests/nvlist_send_recv_test.c
304
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
306
ATF_REQUIRE(ctype == NV_TYPE_DESCRIPTOR);
lib/libnv/tests/nvlist_send_recv_test.c
310
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
312
ATF_REQUIRE(ctype == NV_TYPE_BINARY);
lib/libnv/tests/nvlist_send_recv_test.c
318
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
320
ATF_REQUIRE(ctype == NV_TYPE_BINARY);
lib/libnv/tests/nvlist_send_recv_test.c
328
cname = nvlist_next(cnvl, &ctype, &ccookie);
lib/libnv/tests/nvlist_send_recv_test.c
330
ATF_REQUIRE(ctype == NV_TYPE_NVLIST);
lib/libnv/tests/nvlist_send_recv_test.c
335
cname = nvlist_next(cnvl, &ctype, &ccookie);
sys/arm/arm/cpufunc.c
126
u_int ctype, dsize, cpuid;
sys/arm/arm/cpufunc.c
130
ctype = cp15_ctr_get();
sys/arm/arm/cpufunc.c
139
if (ctype == cpuid)
sys/arm/arm/cpufunc.c
142
if (CPU_CT_FORMAT(ctype) == CPU_CT_ARMV7) {
sys/arm/arm/cpufunc.c
172
dsize = CPU_CT_DSIZE(ctype);
sys/dev/cxgbe/common/common.h
996
enum ctxt_type ctype, u32 *data);
sys/dev/cxgbe/common/common.h
997
int t4_sge_ctxt_rd_bd(struct adapter *adap, unsigned int cid, enum ctxt_type ctype,
sys/dev/cxgbe/common/t4_hw.c
14645
enum ctxt_type ctype, u32 *data)
sys/dev/cxgbe/common/t4_hw.c
14650
if (ctype == CTXT_EGRESS)
sys/dev/cxgbe/common/t4_hw.c
14652
else if (ctype == CTXT_INGRESS)
sys/dev/cxgbe/common/t4_hw.c
14654
else if (ctype == CTXT_FLM)
sys/dev/cxgbe/common/t4_hw.c
14690
int t4_sge_ctxt_rd_bd(struct adapter *adap, unsigned int cid, enum ctxt_type ctype,
sys/dev/cxgbe/common/t4_hw.c
14695
t4_write_reg(adap, A_SGE_CTXT_CMD, V_CTXTQID(cid) | V_CTXTTYPE(ctype));
sys/dev/cxgbe/cudbg/cudbg_lib.c
72
enum ctxt_type ctype, u32 *data)
sys/dev/cxgbe/cudbg/cudbg_lib.c
82
rc = t4_sge_ctxt_rd(padap, padap->mbox, cid, ctype,
sys/dev/cxgbe/cudbg/cudbg_lib.c
89
t4_sge_ctxt_rd_bd(padap, cid, ctype, data);
sys/dev/ocs_fc/ocs_hw.c
8426
sli4_qentry_e ctype; /* completion type */
sys/dev/ocs_fc/ocs_hw.c
8435
status = sli_cq_parse(&hw->sli, cq->queue, cqe, &ctype, &rid);
sys/dev/ocs_fc/ocs_hw.c
8451
switch (ctype) {
sys/dev/ocs_fc/ocs_hw.c
8502
ocs_log_test(hw->os, "unhandled ctype=%#x rid=%#x\n", ctype, rid);
sys/dev/ocs_fc/ocs_utils.c
1137
ocs_queue_history_cqe(ocs_hw_q_hist_t *q_hist, uint8_t ctype, uint32_t *entryw, uint8_t status, uint32_t qid, uint32_t qindex)
sys/dev/ocs_fc/ocs_utils.c
1151
if (ocs_q_hist_cqe_masks[j].ctype == ctype) {
sys/dev/ocs_fc/ocs_utils.h
181
uint8_t ctype;
sys/dev/sound/pcm/feeder.h
74
#define FEEDER_DECLARE(feeder, ctype) \
sys/dev/sound/pcm/feeder.h
79
.type = ctype, \
sys/libkern/iconv_ucs.c
126
dp->ctype = NULL;
sys/libkern/iconv_ucs.c
128
iconv_open(KICONV_WCTYPE_NAME, ENCODING_UTF8, &dp->ctype);
sys/libkern/iconv_ucs.c
153
if (dp->ctype)
sys/libkern/iconv_ucs.c
154
iconv_close(dp->ctype);
sys/libkern/iconv_ucs.c
201
if (casetype == KICONV_FROM_LOWER && dp->ctype) {
sys/libkern/iconv_ucs.c
202
code = towlower(code, dp->ctype);
sys/libkern/iconv_ucs.c
203
} else if (casetype == KICONV_FROM_UPPER && dp->ctype) {
sys/libkern/iconv_ucs.c
204
code = towupper(code, dp->ctype);
sys/libkern/iconv_ucs.c
301
if (casetype == KICONV_LOWER && dp->ctype) {
sys/libkern/iconv_ucs.c
302
code = towlower(code, dp->ctype);
sys/libkern/iconv_ucs.c
303
} else if (casetype == KICONV_UPPER && dp->ctype) {
sys/libkern/iconv_ucs.c
304
code = towupper(code, dp->ctype);
sys/libkern/iconv_ucs.c
84
void * ctype;
sys/netgraph/ng_parse.c
104
u_char *const buf, int *buflen, enum comptype ctype);
sys/netgraph/ng_parse.c
107
enum comptype ctype);
sys/netgraph/ng_parse.c
110
int *buflen, enum comptype ctype);
sys/netgraph/ng_parse.c
113
enum comptype ctype);
sys/netgraph/ng_parse.c
115
ng_parse_type *type, int index, enum comptype ctype);
sys/netgraph/ng_parse.c
117
int index, enum comptype ctype, int posn);
sys/netgraph/ng_parse.c
1200
const enum comptype ctype)
sys/netgraph/ng_parse.c
1208
const int num = ng_get_composite_len(type, start, buf, ctype);
sys/netgraph/ng_parse.c
1219
!= (ctype == CT_STRUCT ? T_LBRACE : T_LBRACKET)) {
sys/netgraph/ng_parse.c
1231
if (tok == (ctype == CT_STRUCT ? T_RBRACE : T_RBRACKET)) {
sys/netgraph/ng_parse.c
1239
if (ctype != CT_STRUCT) {
sys/netgraph/ng_parse.c
1326
etype = ng_get_composite_etype(type, index, ctype);
sys/netgraph/ng_parse.c
1330
pad = ng_parse_get_elem_pad(type, index, ctype, blen);
sys/netgraph/ng_parse.c
1343
start, buf + blen, &vlen, ctype);
sys/netgraph/ng_parse.c
1378
int *off, char *cbuf, int cbuflen, const enum comptype ctype)
sys/netgraph/ng_parse.c
1382
const int num = ng_get_composite_len(type, data, data + *off, ctype);
sys/netgraph/ng_parse.c
1395
(ctype == CT_STRUCT) ? '{' : '[')) != 0)
sys/netgraph/ng_parse.c
1401
etype = ng_get_composite_etype(type, index, ctype);
sys/netgraph/ng_parse.c
1404
*off += ng_parse_get_elem_pad(type, index, ctype, *off);
sys/netgraph/ng_parse.c
1416
&tempsize, ctype) == 0
sys/netgraph/ng_parse.c
1427
if (ctype != CT_STRUCT) {
sys/netgraph/ng_parse.c
1457
didOne ? " " : "", (ctype == CT_STRUCT) ? '}' : ']');
sys/netgraph/ng_parse.c
1472
const enum comptype ctype)
sys/netgraph/ng_parse.c
1477
switch (ctype) {
sys/netgraph/ng_parse.c
1505
etype = ng_get_composite_etype(type, index, ctype);
sys/netgraph/ng_parse.c
1518
const enum comptype ctype)
sys/netgraph/ng_parse.c
1520
switch (ctype) {
sys/netgraph/ng_parse.c
1558
int index, const enum comptype ctype)
sys/netgraph/ng_parse.c
1562
switch (ctype) {
sys/netgraph/ng_parse.c
1596
int index, enum comptype ctype, int posn)
sys/netgraph/ng_parse.c
1599
etype = ng_get_composite_etype(type, index, ctype);
sys/netgraph/ng_parse.c
1604
if (ctype == CT_STRUCT) {
usr.bin/localedef/ctype.c
111
ctn->ctype |= (_ISUPPER | _ISALPHA | _ISGRAPH | _ISPRINT);
usr.bin/localedef/ctype.c
114
ctn->ctype |= (_ISLOWER | _ISALPHA | _ISGRAPH | _ISPRINT);
usr.bin/localedef/ctype.c
117
ctn->ctype |= (_ISALPHA | _ISGRAPH | _ISPRINT);
usr.bin/localedef/ctype.c
120
ctn->ctype |= (_ISDIGIT | _ISGRAPH | _ISPRINT | _ISXDIGIT | _E4);
usr.bin/localedef/ctype.c
129
ctn->ctype |= (_ISSPACE | _ISPRINT);
usr.bin/localedef/ctype.c
132
ctn->ctype |= _ISCNTRL;
usr.bin/localedef/ctype.c
135
ctn->ctype |= (_ISGRAPH | _ISPRINT);
usr.bin/localedef/ctype.c
138
ctn->ctype |= _ISPRINT;
usr.bin/localedef/ctype.c
141
ctn->ctype |= (_ISPUNCT | _ISGRAPH | _ISPRINT);
usr.bin/localedef/ctype.c
144
ctn->ctype |= (_ISXDIGIT | _ISPRINT);
usr.bin/localedef/ctype.c
147
ctn->ctype |= (_ISBLANK | _ISSPACE);
usr.bin/localedef/ctype.c
150
ctn->ctype |= (_E1 | _ISPRINT | _ISGRAPH);
usr.bin/localedef/ctype.c
153
ctn->ctype |= (_E2 | _ISPRINT | _ISGRAPH);
usr.bin/localedef/ctype.c
156
ctn->ctype |= (_E3 | _ISPRINT | _ISGRAPH);
usr.bin/localedef/ctype.c
159
ctn->ctype |= (_E4 | _ISPRINT | _ISGRAPH);
usr.bin/localedef/ctype.c
162
ctn->ctype |= (_E5 | _ISPRINT | _ISGRAPH);
usr.bin/localedef/ctype.c
246
ctn->ctype &= ~(_CTYPE_SWM);
usr.bin/localedef/ctype.c
249
ctn->ctype |= _CTYPE_SW0;
usr.bin/localedef/ctype.c
252
ctn->ctype |= _CTYPE_SW1;
usr.bin/localedef/ctype.c
255
ctn->ctype |= _CTYPE_SW2;
usr.bin/localedef/ctype.c
258
ctn->ctype |= _CTYPE_SW3;
usr.bin/localedef/ctype.c
342
ctn->ctype |= _ISUPPER;
usr.bin/localedef/ctype.c
344
ctn->ctype |= _ISLOWER;
usr.bin/localedef/ctype.c
346
ctn->ctype |= _ISDIGIT;
usr.bin/localedef/ctype.c
348
ctn->ctype |= _ISPRINT;
usr.bin/localedef/ctype.c
350
ctn->ctype |= _ISSPACE;
usr.bin/localedef/ctype.c
352
ctn->ctype |= _ISXDIGIT;
usr.bin/localedef/ctype.c
354
ctn->ctype |= _ISBLANK;
usr.bin/localedef/ctype.c
368
ctn->ctype |= _ISPUNCT;
usr.bin/localedef/ctype.c
375
if (ctn->ctype & (_ISUPPER |_ISLOWER))
usr.bin/localedef/ctype.c
376
ctn->ctype |= _ISALPHA;
usr.bin/localedef/ctype.c
377
if (ctn->ctype & _ISDIGIT)
usr.bin/localedef/ctype.c
378
ctn->ctype |= _ISXDIGIT;
usr.bin/localedef/ctype.c
379
if (ctn->ctype & _ISBLANK)
usr.bin/localedef/ctype.c
380
ctn->ctype |= _ISSPACE;
usr.bin/localedef/ctype.c
381
if (ctn->ctype & (_ISALPHA|_ISDIGIT|_ISXDIGIT))
usr.bin/localedef/ctype.c
382
ctn->ctype |= _ISGRAPH;
usr.bin/localedef/ctype.c
383
if (ctn->ctype & _ISGRAPH)
usr.bin/localedef/ctype.c
384
ctn->ctype |= _ISPRINT;
usr.bin/localedef/ctype.c
390
if ((ctn->ctype & (_ISSPACE|_ISCNTRL)) == (_ISSPACE|_ISCNTRL))
usr.bin/localedef/ctype.c
391
ctn->ctype &= ~_ISPRINT;
usr.bin/localedef/ctype.c
397
if ((ctn->ctype & _ISALPHA) &&
usr.bin/localedef/ctype.c
398
(ctn->ctype & (_ISPUNCT|_ISDIGIT)))
usr.bin/localedef/ctype.c
400
if ((ctn->ctype & _ISPUNCT) &&
usr.bin/localedef/ctype.c
401
(ctn->ctype & (_ISDIGIT|_ISALPHA|_ISXDIGIT)))
usr.bin/localedef/ctype.c
403
if ((ctn->ctype & _ISSPACE) && (ctn->ctype & _ISGRAPH))
usr.bin/localedef/ctype.c
405
if ((ctn->ctype & _ISCNTRL) && (ctn->ctype & _ISPRINT))
usr.bin/localedef/ctype.c
407
if ((wc == ' ') && (ctn->ctype & (_ISPUNCT|_ISGRAPH)))
usr.bin/localedef/ctype.c
412
wc, ctn->ctype);
usr.bin/localedef/ctype.c
420
rl.runetype[wc] = htote(ctn->ctype);
usr.bin/localedef/ctype.c
428
if ((last_ct != NULL) && (last_ct->ctype == ctn->ctype) &&
usr.bin/localedef/ctype.c
437
htote(ctn->ctype);
usr.bin/localedef/ctype.c
81
int32_t ctype;
usr.bin/localedef/parser.y
228
| ctype
usr.bin/localedef/parser.y
292
ctype : T_CTYPE T_NL ctype_list T_END T_CTYPE T_NL
usr.bin/sed/compile.c
952
duptoeol(char *s, const char *ctype)
usr.bin/sed/compile.c
963
warnx("%lu: %s: whitespace after %s", linenum, fname, ctype);