OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ElementCount
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/AST/
ASTContext.cpp
[
all
...]
/external/llvm/lib/IR/
Core.cpp
334
unsigned
ElementCount
, LLVMBool Packed) {
335
ArrayRef<Type*> Tys(unwrap(ElementTypes),
ElementCount
);
340
unsigned
ElementCount
, LLVMBool Packed) {
342
ElementCount
, Packed);
359
unsigned
ElementCount
, LLVMBool Packed) {
360
ArrayRef<Type*> Tys(unwrap(ElementTypes),
ElementCount
);
389
LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned
ElementCount
) {
390
return wrap(ArrayType::get(unwrap(ElementType),
ElementCount
));
397
LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned
ElementCount
) {
398
return wrap(VectorType::get(unwrap(ElementType),
ElementCount
));
[
all
...]
Completed in 43 milliseconds