HomeSort by relevance Sort by last modified time
    Searched defs:Half (Results 1 - 18 of 18) sorted by null

  /external/google-breakpad/src/common/linux/
elfutils.h 50 typedef Elf32_Half Half;
63 typedef Elf64_Half Half;
dump_symbols.cc 777 typedef typename ElfClass::Half Half;
778 Half arch = elf_header->e_machine;
    [all...]
  /bionic/tools/relocation_packer/src/
elf_traits.h 34 typedef Elf32_Half Half;
58 typedef Elf64_Half Half;
  /external/clang/include/clang/AST/
PrettyPrinter.h 44 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
156 /// \brief When true, print the half-precision floating-point type as 'half'
158 unsigned Half : 1;
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 47 typedef llvm::ELF::Elf32_Half Half;
65 typedef llvm::ELF::Elf64_Half Half;
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 206 size_t Half;
216 Half = Count/2;
218 std::advance(I, Half);
223 Count = Count - Half - 1;
225 Count = Half;
  /external/llvm/include/llvm/IR/
Intrinsics.h 82 Void, VarArg, MMX, Token, Metadata, Half, Float, Double,
  /external/skia/src/core/
SkNx.h 26 typedef SkNx<N/2, T> Half;
27 SkNx(const Half& lo, const Half& hi) : fLo(lo), fHi(hi) {}
37 return SkNx(Half::Load(vals), Half::Load(vals+N/2));
66 return {Half::Min(a.fLo, b.fLo), Half::Min(a.fHi, b.fHi)};
69 return {Half::Max(a.fLo, b.fLo), Half::Max(a.fHi, b.fHi)};
86 Half fLo, fHi
    [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 318 class Half
321 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; }
322 static Half fromFloat (float value) { Half h; h.m_value = floatToHalf(value); return h; }
325 inline Half operator+ (const Half& other) const { return create(halfToFloat(m_value) + halfToFloat(other.getValue())); }
326 inline Half operator* (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(other.getValue())); }
327 inline Half operator/ (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(other.ge (…)
    [all...]
glsDrawTest.cpp 436 class Half
439 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; }
442 inline Half operator+ (const Half& other) const { return create(halfToFloat(m_value) + halfToFloat(other.getValue())); }
443 inline Half operator* (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(other.getValue())); }
444 inline Half operator/ (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(other.getValue())); }
445 inline Half operator- (const Half& other) const { return create(halfToFloat(m_value) - halfToFloat(other.ge (…)
    [all...]
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 377 typedef uint16_t Half;
385 Half e_type;
386 Half e_machine;
392 Half e_shsize;
393 Half e_phentsize;
394 Half e_phnum;
395 Half e_shentsize;
396 Half e_shnum;
397 Half e_shstrndx;
416 typedef uint16_t Half;
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 24 | Half
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 375 // Special handling for half-precision floating point conversions.
376 // If we don't have F16C support, then lower half float conversions
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 475 // Vector add and sub nodes may conceal a high-half opportunity.
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 413 // The half <-> float conversion functions are always soft-float, but are
    [all...]
  /art/runtime/
elf.h     [all...]

Completed in 684 milliseconds