HomeSort by relevance Sort by last modified time
    Searched defs:Vector (Results 151 - 175 of 292) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
149 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
Intrinsics.h 101 Integer, Vector, Pointer, Struct,
138 // and a reference argument (for matching vector width and element types)
167 /// type is an overloaded type it is pushed to the ArgTys vector.
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_richcmp.py 37 class Vector:
57 raise test_support.TestFailed, "Vector.__cmp__() should not be called"
60 return "Vector(%r)" % (self.data, )
63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))])
66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))])
69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))])
72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))])
75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))])
78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))])
81 if isinstance(other, Vector)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_richcmp.py 37 class Vector:
57 raise test_support.TestFailed, "Vector.__cmp__() should not be called"
60 return "Vector(%r)" % (self.data, )
63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))])
66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))])
69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))])
72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))])
75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))])
78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))])
81 if isinstance(other, Vector)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
types.h 22 #include <vector>
35 class Vector;
62 void AddDecoration(std::vector<uint32_t>&& d) {
89 DeclareCastMethod(Vector);
111 // Decorations attached to this type. Each decoration is encoded as a vector
114 std::vector<std::vector<uint32_t>> decorations_;
151 class Vector : public Type {
153 Vector(Type* element_type, uint32_t count);
154 Vector(const Vector&) = default
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 37 class Vector:
57 raise test_support.TestFailed, "Vector.__cmp__() should not be called"
60 return "Vector(%r)" % (self.data, )
63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))])
66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))])
69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))])
72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))])
75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))])
78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))])
81 if isinstance(other, Vector)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 37 class Vector:
57 raise test_support.TestFailed, "Vector.__cmp__() should not be called"
60 return "Vector(%r)" % (self.data, )
63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))])
66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))])
69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))])
72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))])
75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))])
78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))])
81 if isinstance(other, Vector)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
NetBuffer.c 31 @param[in] BlockNum The number of NET_BLOCK in the vector of net buffer
45 NET_VECTOR *Vector;
64 Vector = AllocateZeroPool (NET_VECTOR_SIZE (BlockNum));
66 if (Vector == NULL) {
70 Vector->Signature = NET_VECTOR_SIGNATURE;
71 Vector->RefCnt = 1;
72 Vector->BlockNum = BlockNum;
73 Nbuf->Vector = Vector;
102 NET_VECTOR *Vector;
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/
LocalApic.h 70 UINT32 Vector:8; ///< The vector number of the interrupt being sent.
96 // Spurious-Interrupt Vector Register (SVR)
100 UINT32 SpuriousVector:8; ///< Spurious Vector.
128 UINT32 Vector:8; ///< The vector number of the interrupt being sent.
144 UINT32 Vector:8; ///< The vector number of the interrupt being sent.
177 UINT32 Vector:8; ///< Interrupt vector in range 010h..0FEH
    [all...]
  /external/clang/include/clang/AST/
APValue.h 37 /// [Vector: N * APValue], [Array: N * APValue]
49 Vector,
187 bool isVector() const { return Kind == Vector; }
417 Kind = Vector;
  /external/clang/test/CodeGenCXX/
mangle-ms-arg-qualifiers.cpp 160 typedef double Vector[3];
162 void foo(Vector*) {}
166 void foo(Vector) {}
170 void foo_const(const Vector) {}
174 void foo_volatile(volatile Vector) {}
178 void foo(Vector*, const Vector, const double) {}
  /external/clang/test/PCH/
cxx-templates.h 198 template<typename T, int inlineCapacity = 0> class Vector { };
202 static String adopt(Vector<char, inlineCapacity>&);
206 inline bool equalIgnoringNullity(const Vector<char, inlineCapacity>& a, const String& b) { return false; }
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 163 typedef Matrix<Scalar,Dynamic,1> Vector;
  /external/llvm/include/llvm/ADT/
FoldingSet.h 311 /// Bits - Vector of all the data bits that make the node unique.
557 /// FoldingSetVector - This template class combines a FoldingSet and a vector
564 VectorT Vector;
572 iterator begin() { return Vector.begin(); }
573 iterator end() { return Vector.end(); }
576 const_iterator begin() const { return Vector.begin(); }
577 const_iterator end() const { return Vector.end(); }
580 void clear() { Set.clear(); Vector.clear(); }
594 if (Result == N) Vector.push_back(N);
603 Vector.push_back(N)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
FoldingSet.h 317 /// Bits - Vector of all the data bits that make the node unique.
567 /// FoldingSetVector - This template class combines a FoldingSet and a vector
574 VectorT Vector;
582 iterator begin() { return Vector.begin(); }
583 iterator end() { return Vector.end(); }
586 const_iterator begin() const { return Vector.begin(); }
587 const_iterator end() const { return Vector.end(); }
590 void clear() { Set.clear(); Vector.clear(); }
604 if (Result == N) Vector.push_back(N);
613 Vector.push_back(N)
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 68 class Vector : public VectorDestructorBase<inlineCapacity,
254 class HeapVector : public Vector<T, inlineCapacity, HeapAllocator> { };
257 class HeapDeque : public Vector<T, inlineCapacity, HeapAllocator> { };
277 class PersistentHeapVector : public Vector<T, 0, HeapAllocator> { };

Completed in 764 milliseconds

1 2 3 4 5 67 8 91011>>