Searched defs:ID (Results 1 - 25 of 627) sorted by relevance

1234567891011>>

/external/dropbear/libtomcrypt/src/misc/crypt/
H A Dcrypt_find_cipher_id.c15 Find cipher by ID, Tom St Denis
19 Find a cipher by ID number
20 @param ID The ID (not same as index) of the cipher to find
23 int find_cipher_id(unsigned char ID) argument
28 if (cipher_descriptor[x].ID == ID) {
H A Dcrypt_find_hash_id.c15 Find hash by ID, Tom St Denis
19 Find a hash by ID number
20 @param ID The ID (not same as index) of the hash to find
23 int find_hash_id(unsigned char ID) argument
28 if (hash_descriptor[x].ID == ID) {
H A Dcrypt_find_hash_oid.c18 int find_hash_oid(const unsigned long *ID, unsigned long IDlen) argument
21 LTC_ARGCHK(ID != NULL);
24 if (hash_descriptor[x].name != NULL && hash_descriptor[x].OIDlen == IDlen && !XMEMCMP(hash_descriptor[x].OID, ID, sizeof(unsigned long) * IDlen)) {
/external/llvm/include/llvm/CodeGen/
H A DMachineFunctionPass.h34 explicit MachineFunctionPass(char &ID) : FunctionPass(ID) {} argument
H A DMachineBlockFrequencyInfo.h34 static char ID; member in class:llvm::MachineBlockFrequencyInfo
H A DMachineBranchProbabilityInfo.h41 static char ID; member in class:llvm::MachineBranchProbabilityInfo
43 MachineBranchProbabilityInfo() : ImmutablePass(ID) {
H A DProcessImplicitDefs.h38 static char ID; member in class:llvm::ProcessImplicitDefs
40 ProcessImplicitDefs() : MachineFunctionPass(ID) {
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfo.h34 static char ID; member in class:llvm::BlockFrequencyInfo
H A DBranchProbabilityInfo.h44 static char ID; member in class:llvm::BranchProbabilityInfo
46 BranchProbabilityInfo() : FunctionPass(ID) {
H A DFindUsedTypes.h28 static char ID; // Pass identification, replacement for typeid member in class:llvm::FindUsedTypes
29 FindUsedTypes() : ModulePass(ID) {
/external/llvm/lib/CodeGen/
H A DLiveDebugVariables.h35 static char ID; // Pass identification, replacement for typeid member in class:llvm::LiveDebugVariables
/external/llvm/include/llvm/
H A DIntrinsics.h36 enum ID { enum in namespace:llvm::Intrinsic
46 /// Intrinsic::getName(ID) - Return the LLVM name for an intrinsic, such as
48 std::string getName(ID id, ArrayRef<Type*> Tys = ArrayRef<Type*>());
50 /// Intrinsic::getType(ID) - Return the function type for an intrinsic.
52 FunctionType *getType(LLVMContext &Context, ID id,
55 /// Intrinsic::isOverloaded(ID) - Returns true if the intrinsic can be
57 bool isOverloaded(ID id);
59 /// Intrinsic::getAttributes(ID) - Return the attributes for an intrinsic.
61 AttrListPtr getAttributes(ID id);
63 /// Intrinsic::getDeclaration(M, ID)
[all...]
/external/llvm/lib/Target/
H A DTargetLibraryInfo.cpp21 char TargetLibraryInfo::ID = 0; member in class:TargetLibraryInfo
50 TargetLibraryInfo::TargetLibraryInfo() : ImmutablePass(ID) {
57 TargetLibraryInfo::TargetLibraryInfo(const Triple &T) : ImmutablePass(ID) {
65 : ImmutablePass(ID) {
/external/llvm/tools/bugpoint-passes/
H A DTestPasses.cpp29 static char ID; // Pass ID, replacement for typeid member in class:__anon7133::CrashOnCalls
30 CrashOnCalls() : BasicBlockPass(ID) {}
46 char CrashOnCalls::ID = 0; member in class:CrashOnCalls
56 static char ID; // Pass ID, replacement for typeid member in class:__anon7134::DeleteCalls
57 DeleteCalls() : BasicBlockPass(ID) {}
72 char DeleteCalls::ID = 0; member in class:DeleteCalls
/external/clang/include/clang/Driver/
H A DCC1AsOptions.h18 enum ID { enum in namespace:clang::driver::cc1asoptions
19 OPT_INVALID = 0, // This is not an option ID.
20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 HELPTEXT, METAVAR) OPT_##ID,
H A DCC1Options.h18 enum ID { enum in namespace:clang::driver::cc1options
19 OPT_INVALID = 0, // This is not an option ID.
20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 HELPTEXT, METAVAR) OPT_##ID,
H A DOptions.h18 enum ID { enum in namespace:clang::driver::options
19 OPT_INVALID = 0, // This is not an option ID.
20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 HELPTEXT, METAVAR) OPT_##ID,
H A DPhases.h16 /// ID - Ordered values for successive stages in the
18 enum ID { enum in namespace:clang::driver::phases
26 const char *getPhaseName(ID Id);
H A DTypes.h18 enum ID { enum in namespace:clang::driver::types
20 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) TY_##ID,
27 const char *getTypeName(ID Id);
29 /// getPreprocessedType - Get the ID of the type for this input when
32 ID getPreprocessedType(ID Id);
36 const char *getTypeTempSuffix(ID Id);
39 bool onlyAssembleType(ID Id);
42 bool onlyPrecompileType(ID I
[all...]
/external/clang/lib/Serialization/
H A DASTCommon.cpp26 unsigned ID = 0; local
28 case BuiltinType::Void: ID = PREDEF_TYPE_VOID_ID; break;
29 case BuiltinType::Bool: ID = PREDEF_TYPE_BOOL_ID; break;
30 case BuiltinType::Char_U: ID = PREDEF_TYPE_CHAR_U_ID; break;
31 case BuiltinType::UChar: ID = PREDEF_TYPE_UCHAR_ID; break;
32 case BuiltinType::UShort: ID = PREDEF_TYPE_USHORT_ID; break;
33 case BuiltinType::UInt: ID = PREDEF_TYPE_UINT_ID; break;
34 case BuiltinType::ULong: ID = PREDEF_TYPE_ULONG_ID; break;
35 case BuiltinType::ULongLong: ID = PREDEF_TYPE_ULONGLONG_ID; break;
36 case BuiltinType::UInt128: ID
[all...]
/external/collada/include/1.4/dom/
H A DdomFx_profile_abstract.h26 static daeInt ID() { return 727; } function in class:domFx_profile_abstract
27 virtual daeInt typeID() const { return ID(); }
H A DdomGl_hook_abstract.h22 static daeInt ID() { return 729; } function in class:domGl_hook_abstract
23 virtual daeInt typeID() const { return ID(); }
/external/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp32 static char ID; // Pass identification, replacement for typeid member in class:__anon6575::ModuleDebugInfoPrinter
33 ModuleDebugInfoPrinter() : ModulePass(ID) {
46 char ModuleDebugInfoPrinter::ID = 0; member in class:ModuleDebugInfoPrinter
H A DPostDominators.cpp30 char PostDominatorTree::ID = 0; member in class:PostDominatorTree
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriterPass.cpp22 static char ID; // Pass identification, replacement for typeid member in class:__anon6599::WriteBitcodePass
24 : ModulePass(ID), OS(o) {}
35 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass

Completed in 280 milliseconds

1234567891011>>