HomeSort by relevance Sort by last modified time
    Searched refs:Type1 (Results 1 - 25 of 50) sorted by null

1 2

  /hardware/qcom/display/msm8996/libgralloc1/
gr_utils.h 47 template <class Type1, class Type2>
48 inline Type1 ALIGN(Type1 x, Type2 align) {
49 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
  /hardware/qcom/display/msm8998/libgralloc1/
gr_utils.h 47 template <class Type1, class Type2>
48 inline Type1 ALIGN(Type1 x, Type2 align) {
49 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
  /hardware/qcom/display/msm8909/gralloc/
gr_utils.h 58 template <class Type1, class Type2>
59 inline Type1 ALIGN(Type1 x, Type2 align) {
60 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
  /hardware/qcom/display/msm8909w_3100/libgralloc1/
gr_utils.h 58 template <class Type1, class Type2>
59 inline Type1 ALIGN(Type1 x, Type2 align) {
60 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
  /external/libchrome/base/containers/
hash_tables.h 32 template <typename Type1, typename Type2>
33 struct hash<std::pair<Type1, Type2>> {
34 std::size_t operator()(std::pair<Type1, Type2> value) const {
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
smbios.c 52 CopyMem (SystemGuid, &Smbios.Type1->Uuid, sizeof(EFI_GUID));
53 *SystemSerialNumber = LibGetSmbiosString(&Smbios, Smbios.Type1->SerialNumber);
  /external/clang/test/Misc/
integer-literal-printing.cpp 4 template <short T> class Type1 {};
5 template <short T> void Function1(Type1<T>& x) {} // expected-note{{candidate function [with T = -42] not viable: expects an l-value for 1st argument}}
68 Function1(Type1<-42>()); // expected-error{{no matching function for call to 'Function1'}}
  /external/libchrome/base/
hash.h 109 template <typename Type1, typename Type2>
110 struct IntPairHash<std::pair<Type1, Type2>> {
111 size_t operator()(std::pair<Type1, Type2> value) const {
  /external/freetype/include/freetype/
ftmoderr.h 161 FT_MODERRDEF( Type1, 0x1300, "Type 1 module" )
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftmoderr.h 161 FT_MODERRDEF( Type1, 0x1300, "Type 1 module" )
  /external/syslinux/efi32/include/efi/
libsmbios.h 122 SMBIOS_TYPE1 *Type1;
  /external/syslinux/efi64/include/efi/
libsmbios.h 122 SMBIOS_TYPE1 *Type1;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
libsmbios.h 122 SMBIOS_TYPE1 *Type1;
  /external/eigen/unsupported/test/
matrix_function.cpp 17 template<typename Type1, typename Type2>
18 inline bool test_isApprox_abs(const Type1& a, const Type2& b)
20 return ((a-b).array().abs() < test_precision<typename Type1::RealScalar>()).all();
  /frameworks/native/headers/media_plugin/media/hardware/
VideoAPI.h 205 struct __attribute__ ((__packed__)) Type1 {
217 Type1 sType1;
222 static_assert(sizeof(HDRStaticInfo::Type1) == 24, "wrong struct size");
  /external/clang/test/Parser/
cxx-decl.cpp 122 typedef Class1<Class2> Type1;
  /device/linaro/bootloader/edk2/DuetPkg/SmbiosGenDxe/
SmbiosGen.c 169 AString = GetSmbiosString (SmbiosTable, SmbiosTable.Type1->ProductName);
185 LogSmbiosData(gSmbios, (UINT8*)SmbiosTable.Type1);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_runner.py 67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
68 self.assertEqual((test1, Type1, instance1), (test, Exception, exc1))
  /external/python/cpython2/Lib/unittest/test/
test_runner.py 68 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
69 self.assertEqual((test1, Type1, instance1), (test, Exception, exc1))
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_runner.py 67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
68 self.assertEqual((test1, Type1, instance1), (test, Exception, exc1))
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_runner.py 67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
68 self.assertEqual((test1, Type1, instance1), (test, Exception, exc1))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
68 self.assertEqual((test1, Type1, instance1), (test, Exception, exc1))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
68 self.assertEqual((test1, Type1, instance1), (test, Exception, exc1))
  /external/eigen/test/
main.h 468 template<typename Type1, typename Type2>
469 inline bool test_isApprox(const Type1& a, const Type2& b, typename Type1::Scalar* = 0) // Enabled for Eigen's type only
471 return a.isApprox(b, test_precision<typename Type1::Scalar>());
488 template<typename Type1, typename Type2>
489 inline bool verifyIsApprox(const Type1& a, const Type2& b)
  /external/python/cpython3/Lib/unittest/test/
test_runner.py 64 ((_, (Type1, instance1, _)),
66 self.assertEqual((Type1, instance1), (Exception, exc1))

Completed in 1301 milliseconds

1 2