Searched defs:Half (Results 1 - 9 of 9) sorted by relevance

/external/clang/include/clang/AST/
H A DPrettyPrinter.h44 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
158 unsigned Half : 1; member in struct:clang::PrintingPolicy
/external/llvm/include/llvm/IR/
H A DIntrinsics.h83 Void, VarArg, MMX, Metadata, Half, Float, Double, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp208 size_t Half; local
218 Half = Count/2;
220 std::advance(I, Half);
225 Count = Count - Half - 1;
227 Count = Half;
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.hpp283 class Half class in class:deqp::gls::GLValue
286 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; }
289 inline Half operator+ (const Half& other) const { return create(halfToFloat(m_value) + halfToFloat(other.getValue())); }
290 inline Half operator* (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(other.getValue())); }
291 inline Half operator/ (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(other.getValue())); }
292 inline Half operato
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml24 | Half Constructor in type:TypeKind/t
/external/clang/lib/Serialization/
H A DASTReader.cpp4880 size_t Half; local
4893 Half = Count / 2;
4895 std::advance(PPI, Half);
4900 Count = Count - Half - 1;
4902 Count = Half;
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4298 for (unsigned Half = 0; Half != 4; ++Half) {
4299 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4306 for (unsigned Half = 0; Half != 4; ++Half) {
4307 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4999 for (unsigned i = 0, Half = NumElems/2; i != Half;
6371 unsigned Half = NumElts/2; local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4424 unsigned Half = VT.getVectorNumElements() / 2; local
4428 for (unsigned i = 0; i != Half; ++i) {
4429 int MIdx = M[i + j * Half];
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp2121 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, local
2124 DAG.getVTList(MVT::i32, MVT::i32), Half);
4794 unsigned Half = VT.getVectorNumElements() / 2; local
4798 for (unsigned i = 0; i != Half; ++i) {
4799 int MIdx = M[i + j * Half];

Completed in 336 milliseconds