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

1 2 3

  /cts/tests/tests/util/src/android/util/cts/
HalfTest.java 19 import android.util.Half;
27 import static android.util.Half.*;
111 assertEquals("NaN", Half.toString(NaN));
112 assertEquals("Infinity", Half.toString(POSITIVE_INFINITY));
113 assertEquals("-Infinity", Half.toString(NEGATIVE_INFINITY));
114 assertEquals("0.0", Half.toString(POSITIVE_ZERO));
115 assertEquals("-0.0", Half.toString(NEGATIVE_ZERO));
116 assertEquals("1.0", Half.toString(toHalf(1.0f)));
117 assertEquals("-1.0", Half.toString(toHalf(-1.0f)));
118 assertEquals("2.0", Half.toString(toHalf(2.0f)))
    [all...]
  /external/google-breakpad/src/common/linux/
elfutils.h 50 typedef Elf32_Half Half;
63 typedef Elf64_Half Half;
  /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 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
188 /// \brief When true, print the half-precision floating-point type as 'half'
190 unsigned Half : 1;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
188 /// \brief When true, print the half-precision floating-point type as 'half'
190 unsigned Half : 1;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
188 /// \brief When true, print the half-precision floating-point type as 'half'
190 unsigned Half : 1;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
188 /// \brief When true, print the half-precision floating-point type as 'half'
190 unsigned Half : 1;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
188 /// \brief When true, print the half-precision floating-point type as 'half'
190 unsigned Half : 1;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
188 /// \brief When true, print the half-precision floating-point type as 'half'
190 unsigned Half : 1;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
188 /// \brief When true, print the half-precision floating-point type as 'half'
190 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;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
PrettyPrinter.h 52 Half(LO.Half), MSWChar(LO.MicrosoftExt && !LO.WChar),
189 /// \brief When true, print the half-precision floating-point type as 'half'
191 unsigned Half : 1;
  /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 91 Void, VarArg, MMX, Token, Metadata, Half, Float, Double,
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Intrinsics.h 100 Void, VarArg, MMX, Token, Metadata, Half, Float, Double,
  /external/tensorflow/tensorflow/go/
tensor.go 60 Half DataType = C.TF_HALF
485 case Float, Double, Int32, Uint8, Int16, Int8, Complex, Int64, Bool, Quint8, Qint32, Bfloat16, Qint16, Quint16, Uint16, Complex128, Half:
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Intrinsics.h 100 Void, VarArg, MMX, Token, Metadata, Half, Float, Double,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
Intrinsics.h 100 Void, VarArg, MMX, Token, Metadata, Half, Float, Double,

Completed in 605 milliseconds

1 2 3