OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VectorTy
(Results
1 - 9
of
9
) sorted by null
/frameworks/compile/slang/
slang_rs_check_ast.cpp
58
const clang::VectorType *
VectorTy
;
62
VectorTy
= clang::dyn_cast_or_null<clang::VectorType>(Ty);
64
if (
VectorTy
) {
66
VectorTy
->getElementType()->getUnqualifiedDesugaredType());
77
if (
VectorTy
) {
78
switch (
VectorTy
->getNumElements()) {
132
if (
VectorTy
) {
133
DiagBuilder <<
VectorTy
->getNumElements();
/external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp
288
///
VectorTy
- This tracks the type that we should promote the vector to if
291
VectorType *
VectorTy
;
307
ScalarKind(Unknown),
VectorTy
(0), HadNonMemTransferAccess(false),
343
if (ScalarKind == Vector &&
VectorTy
->getBitWidth() != AllocaSize * 8)
354
assert(
VectorTy
&& "Missing type for vector scalar.");
356
<< *
VectorTy
<< '\n');
357
NewTy =
VectorTy
; // Use the vector type.
385
/// (
VectorTy
) so far at the offset specified by Offset (which is specified in
395
/// and stores would mutate the memory. We mark this by setting
VectorTy
424
(!
VectorTy
|| EltSize == VectorTy->getElementType(
[
all
...]
/external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp
[
all
...]
/external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp
59
typedef std::vector<std::pair<KeyT, ValueT> >
VectorTy
;
61
VectorTy
Vector;
64
typedef typename
VectorTy
::iterator iterator;
65
typedef typename
VectorTy
::const_iterator const_iterator;
79
for (typename
VectorTy
::const_iterator I = Vector.begin(),
[
all
...]
/external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c
373
CAMLprim value llvm_vector_size(LLVMTypeRef
VectorTy
) {
374
return Val_int(LLVMGetVectorSize(
VectorTy
));
[
all
...]
/external/llvm/include/llvm-c/
Core.h
991
unsigned LLVMGetVectorSize(LLVMTypeRef
VectorTy
);
[
all
...]
/external/llvm/lib/IR/
Core.cpp
413
unsigned LLVMGetVectorSize(LLVMTypeRef
VectorTy
) {
414
return unwrap<VectorType>(
VectorTy
)->getNumElements();
[
all
...]
/external/clang/lib/Sema/
SemaExpr.cpp
[
all
...]
/external/clang/include/clang/Sema/
Sema.h
[
all
...]
Completed in 471 milliseconds