Home
last modified time | relevance | path

Searched +full:type +full:- +full:c (Results 1 – 25 of 1150) sorted by relevance

12345678910>>...46

/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeDocstrings.i2 "Represents a member of a type."
6 "Represents a member function of a type."
10 "Represents a data type in lldb.
12 The actual characteristics of each type are defined by the semantics of the
14 to compile the target program. See the language-specific notes in the
20 information. For some languages such as C, C++ and Objective-C it is possible
21 to create new types by evaluating expressions that define a new type
[all...]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp1 //===- Type.cpp - Implement the Type class --------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the Type class for the IR library.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/IR/Type.h"
32 //===----------------------------------------------------------------------===//
33 // Type Class Implementation
34 //===----------------------------------------------------------------------===//
36 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DType.h1 //===- llvm/Type.h - Classes for handling data types -------
94 Type(LLVMContext & C,TypeID tid) Type() argument
467 getScalarTy(LLVMContext & C) getScalarTy() argument
[all...]
H A DConstants.h1 //===-- llvm/Constants.h - Constant class subclass definitions --*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
18 //===----------------------------------------------------------------------===//
61 explicit ConstantData(Type *Ty, ValueTy VT) : Constant(Ty, VT, nullptr, 0) {} in ConstantData()
70 /// Methods to support type inquiry through isa, cast, and dyn_cast.
72 return V->getValueID() >= ConstantDataFirstVal && in classof()
73 V->getValueID() <= ConstantDataLastVal; in classof()
77 //===----------------------------------------------------------------------===//
87 ConstantInt(Type *Ty, const APInt &V);
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DTypes.def1 //===--- Types.def - Driver Type info ---------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the driver type information. Users of this file
10 // must define the TYPE macro to make use of this information.
12 //===----------------------------------------------------------------------===//
14 #ifndef TYPE
15 #error "Define TYPE prior to including this file!"
18 // TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS)
20 // The first value is the type name as a string; for types which can
[all …]
/freebsd/crypto/heimdal/doc/doxyout/hcrypto/man/man3/
H A Dhcrypto_evp.31 …generic crypto functions" 3 "11 Jan 2012" "Version 1.5.2" "Heimdal crypto library" \" -*- nroff -*-
5 EVP generic crypto functions \-
142 .RI "size_t \fBEVP_CIPHER_block_size\fP (const EVP_CIPHER *c)"
145 .RI "size_t \fBEVP_CIPHER_key_length\fP (const EVP_CIPHER *c)"
148 .RI "size_t \fBEVP_CIPHER_iv_length\fP (const EVP_CIPHER *c)"
151 .RI "void \fBEVP_CIPHER_CTX_init\fP (EVP_CIPHER_CTX *c)"
154 .RI "int \fBEVP_CIPHER_CTX_cleanup\fP (EVP_CIPHER_CTX *c)"
157 .RI "int \fBEVP_CIPHER_CTX_set_key_length\fP (EVP_CIPHER_CTX *c, int length)"
184 .RI "int \fBEVP_CipherInit_ex\fP (EVP_CIPHER_CTX *ctx, const EVP_CIPHER *c, ENGINE *engine, const v…
247 .RI "int \fBEVP_BytesToKey\fP (const EVP_CIPHER *type, const EVP_MD *md, const void *salt, const vo…
[all …]
/freebsd/sys/contrib/ck/include/
H A Dck_ring.h2 * Copyright 2009-2015 Samy Al Bahra.
42 char pad[CK_MD_CACHELINE - sizeof(unsigned int)];
45 char _pad[CK_MD_CACHELINE - sizeof(unsigned int) * 2];
59 unsigned int c, p; in ck_ring_size() local
61 c = ck_pr_load_uint(&ring->c_head); in ck_ring_size()
62 p = ck_pr_load_uint(&ring->p_tail); in ck_ring_size()
63 return (p - c) & ring->mask; in ck_ring_size()
70 return ring->size; in ck_ring_capacity()
75 * on the ring. This is primarily meant for persistent ck_ring use-cases. The
83 if (ring->p_tail != ring->p_head) { in ck_ring_repair()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h1 //===- ASTContext.h - Context to hold long-lived AST nodes ------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
149 /// The alignment comes from an alignment attribute on a record type.
152 /// The alignment comes from an alignment attribute on a enum type.
184 /// Holds long-lived AST nodes (such as types and decls) that can be
189 mutable SmallVector<Type *, 0> Types;
285 using TypeInfoMap = llvm::DenseMap<const Type *, struct TypeInfo>;
291 using UnadjustedAlignMap = llvm::DenseMap<const Type *, unsigned>;
[all …]
H A DTypeVisitor.h1 //===--- TypeVisitor.h - Visitor for Type subclasses ------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
16 #include "clang/AST/Type.h"
21 return static_cast<ImplClass*>(this)-> \
24 /// An operation on a type.
28 /// \tparam RetTy %Type of result produced by the operation.
30 /// The class implements polymorphic operation on an object of type derived
31 /// from Type. The operation is performed by calling method Visit. It then
[all …]
H A DType.h1 //===- Type.h - C Language Family Type Representation -----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// C Language Family Type Representation
12 /// This file defines the clang::Type interface and subclasses, used to
13 /// represent types for languages in the C family.
15 //===----------------------------------------------------------------------===//
69 class Type; variable
88 struct PointerLikeTypeTraits< ::clang::Type*> {
89 static inline void *getAsVoidPointer(::clang::Type *P) { return P; }
[all …]
H A DBuiltinTypes.def1 //===-- BuiltinTypes.def - Metadata about BuiltinTypes ----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // BuiltinType::Id is the enumerator defining the type.
13 // Context.SingletonId is the global singleton of this type. Some global
16 // BUILTIN_TYPE(Id, SingletonId) - A builtin type that has not been
20 // SIGNED_TYPE(Id, SingletonId) - A signed integral type.
22 // UNSIGNED_TYPE(Id, SingletonId) - An unsigned integral type.
24 // FLOATING_TYPE(Id, SingletonId) - A floating-point type.
26 // PLACEHOLDER_TYPE(Id, SingletonId) - A placeholder type. Placeholder
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td1 //==--- DiagnosticSemaKinds.td - libsema diagnostics ----------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
33 "been assigned">, InGroup<DiagGroup<"duplicate-enum">>, DefaultIgnore;
38 "taking the absolute value of unsigned type %0 has no effect">,
43 "absolute value function %0 given an argument of type %1 but has parameter "
44 "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;
47 "when argument is of %select{integer|floating point|complex}2 type">,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h1 //===------------ DebugInfo.h - LLVM C API Debug Info API -----------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 /// This file declares the C API endpoints for generating DWARF Debug Info
14 //===----------------------------------------------------------------------===//
19 #include "llvm-c/ExternC.h"
20 #include "llvm-c/Types.h"
201 * An LLVM DWARF type encoding.
224 * The version of debug metadata that's present in the provided \c Module.
245 * \c LLVMDIBuilderFinalize.
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.h1 //===--- CodeGenTypes.h - Type translation for LLVM CodeGen -----*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This is the code that handles AST -> LLVM type lowering.
11 //===----------------------------------------------------------------------===//
25 class Type; variable
41 class Type; variable
42 typedef CanQual<Type> CanQualType;
52 /// This class organizes the cross-module state that is used while lowering
61 /// The opaque type map for Objective-C interfaces. All direct
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.h1 //===--- FormatToken.h - Format C++ code ------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
28 TYPE(ArrayInitializerLSquare) \
29 TYPE(ArraySubscriptLSquare) \
30 TYPE(AttributeColon) \
31 TYPE(AttributeLParen) \
32 TYPE(AttributeMacro) \
33 TYPE(AttributeRParen) \
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A Dd2i_RSAPrivateKey.318 .\" Set up some character translations and predefined strings. \*(-- will
20 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
21 .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
22 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
23 .\" nothing in troff, for use with C<>.
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
33 . ds C` ""
[all …]
H A DOPENSSL_LH_COMPFUNC.318 .\" Set up some character translations and predefined strings. \*(-- will
20 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
21 .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
22 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
23 .\" nothing in troff, for use with C<>.
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
33 . ds C` ""
[all …]
/freebsd/contrib/netbsd-tests/usr.sbin/mtree/
H A Dd_merge.in3 . type=dir
6 ./a type=dir
7 ./a/change-dir-to-link type=dir mode=0755
8 ./a/change-dir-to-link type=link mode=0755
11 ./b type=dir
12 ./b/change-link-to-dir type=link mode=0755
13 ./b/change-link-to-dir type=dir mode=0755
15 # directory "c" with multiple entries, one changing from dir to link
16 ./c type=dir
17 ./c/aaa type=file
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DirectXIRPasses/
H A DPointerTypeAnalysis.cpp1 //===- Target/DirectX/PointerTypeAnalisis.cpp - PointerType analysis ------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
24 // Classifies the type of the value passed in by walking the value's users to
25 // find a typed instruction to materialize a type from.
26 Type *classifyPointerType(const Value *V, PointerTypeMap &Map) { in classifyPointerType()
27 assert(V->getType()->isPointerTy() && in classifyPointerType()
28 "classifyPointerType called with non-pointer"); in classifyPointerType()
31 return It->second; in classifyPointerType()
[all …]
/freebsd/stand/forth/
H A Dmenusets.4th1 \ Copyright (c) 2012 Devin Teske <dteske@FreeBSD.org>
26 marker task-menusets.4th
28 vocabulary menusets-infrastructure
29 only forth also menusets-infrastructure definitions
37 : menuset-loadvar ( -- )
40 \ $type should be set to one of:
47 s" set cmdbuf='set ${type}_${var}=\$'" evaluate
48 s" cmdbuf" getenv swap drop ( -- u1 ) \ get string length
50 s" set cmdbuf=${cmdbuf}${affix}${type}_${var}"
51 ( u1 -- u1 c-addr2 u2 )
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/
H A DOffloadWrapper.cpp1 //===- OffloadWrapper.cpp ---------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
42 LLVMContext &C = M.getContext(); in getDeviceImageTy() local
43 StructType *ImageTy = StructType::getTypeByName(C, "__tgt_device_image"); in getDeviceImageTy()
46 StructType::create("__tgt_device_image", PointerType::getUnqual(C), in getDeviceImageTy()
47 PointerType::getUnqual(C), PointerType::getUnqual(C), in getDeviceImageTy()
48 PointerType::getUnqual(C)); in getDeviceImageTy()
63 LLVMContext &C = M.getContext(); in getBinDescTy() local
64 StructType *DescTy = StructType::getTypeByName(C, "__tgt_bin_desc"); in getBinDescTy()
[all …]
/freebsd/sys/contrib/openzfs/module/zcommon/
H A Dzprop_common.c9 * or https://opensource.org/licenses/CDDL-1.0.
26 * Copyright (c) 2012 by Delphix. All rights reserved.
52 zprop_get_proptable(zfs_type_t type) in zprop_get_proptable() argument
54 if (type == ZFS_TYPE_POOL) in zprop_get_proptable()
56 else if (type == ZFS_TYPE_VDEV) in zprop_get_proptable()
63 zprop_get_numprops(zfs_type_t type) in zprop_get_numprops() argument
65 if (type == ZFS_TYPE_POOL) in zprop_get_numprops()
67 else if (type == ZFS_TYPE_VDEV) in zprop_get_numprops()
74 zfs_mod_supported_prop(const char *name, zfs_type_t type, in zfs_mod_supported_prop() argument
78 * The zfs module spa_feature_table[], whether in-kernel or in libzpool, in zfs_mod_supported_prop()
[all …]
/freebsd/sbin/ipf/ippool/
H A Dippool.c3 * Copyright (C) 2012 by Darren Reed.
60 int fd = -1;
70 fprintf(stderr, "\t-a [-dnv] -m <name> [-o <role>] [-t type] [-T ttl] -i <ipaddr>[/netmask]\n"); in usage()
71 fprintf(stderr, "\t-A [-dnv] [-m <name>] [-o <role>] [-S <seed>] [-t <type>]\n"); in usage()
72 fprintf(stderr, "\t-f <file> [-dnuvR]\n"); in usage()
73 fprintf(stderr, "\t-F [-dv] [-o <role>] [-t <type>]\n"); in usage()
74 fprintf(stderr, "\t-l [-dv] [-m <name>] [-t <type>] [-o <role>] [-M <core>] [-N <namelist>]\n"); in usage()
75 fprintf(stderr, "\t-r [-dnv] [-m <name>] [-o <role>] [-t type] -i <ipaddr>[/netmask]\n"); in usage()
76 fprintf(stderr, "\t-R [-dnv] [-m <name>] [-o <role>] [-t <type>]\n"); in usage()
77 fprintf(stderr, "\t-s [-dtv]\n"); in usage()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackReader.h1 //===- MsgPackReader.h - Simple MsgPack reader --------
48 enum class Type : uint8_t { global() enum
66 int8_t Type; global() member
[all...]
/freebsd/contrib/byacc/test/
H A Drun_test.sh11 mv -f "$NEW" "${REF_DIR}/"
13 if test ! -f "$CMP"
18 sed -e "s,$NEW,$REF," \
19 -e "s%$YACC_escaped%YACC%" \
20 -e "s%^yacc\>%YACC%" \
21 -e "s%YACC:.*option.*$%YACC: error message%" \
22 -e "s%yacc:.*option.*$%YACC: error message%" \
23 -e "s%^Usage: yacc\>%Usage: YACC%" \
24 -e '/YYPATCH/s/[0-9][0-9]*/"yyyymmdd"/' \
25 -e '/#define YYPATCH/s/PATCH/CHECK/' \
[all …]

12345678910>>...46