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

  /external/swiftshader/third_party/LLVM/lib/Analysis/
MemoryBuiltins.cpp 105 // If malloc call's arg can be determined to be a multiple of ElementSize,
106 // return the multiple. Otherwise, return NULL.
108 Value *Multiple = NULL;
109 if (ComputeMultiple(MallocArg, ElementSize, Multiple,
111 return Multiple;
173 /// argument passed to malloc is a multiple of the size of the malloced type,
174 /// then return that multiple. For non-array mallocs, the multiple is
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/
MMCSDTransfer.c 394 UINT32 Multiple;
424 Multiple = 10;
428 Multiple = 12;
432 Multiple = 13;
436 Multiple = 15;
440 Multiple = 20;
445 Multiple = 26;
447 Multiple = 25;
452 Multiple = 30;
456 Multiple = 35;
    [all...]
  /external/clang/test/SemaCXX/
member-pointer-ms.cpp 11 // - single, multiple, and virtual inheritance (and unspecified for incomplete)
113 struct Multiple : B1, B2 { };
116 static_assert(sizeof(int Multiple::*) == kMultipleDataSize, "");
119 static_assert(sizeof(void (Multiple::*)()) == kMultipleFunctionSize, "");
146 static_assert(sizeof(int Y<Multiple>::*) == kMultipleDataSize, "");
149 static_assert(sizeof(void (Y<Multiple>::*)()) == kMultipleFunctionSize, "");
155 // A non-primary base class uses the multiple inheritance model for member
  /external/clang/test/CodeGenCXX/
microsoft-abi-member-pointers.cpp 53 struct Multiple : B1, B2 {
87 int Multiple ::*m_d_memptr;
105 void (Multiple::*m_f_memptr)();
112 struct Unspecified : Multiple, Virtual {
124 void (Multiple ::*m_f_mp)() = &B2::foo;
190 void (Multiple ::*m_f_memptr)() = &Multiple::foo;
201 // CHECK: { i8* bitcast (void (%{{.*}}*)* @"\01?foo@Multiple@@QAEXXZ" to i8*), i32 0 },
365 void callMemberPointerMultiple(Multiple *o, void (Multiple::*memptr)())
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 1130 MultipleSubst multiple; member in union:OT::SubstLookupSubTable::__anon19717
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 235 // If malloc call's arg can be determined to be a multiple of ElementSize,
236 // return the multiple. Otherwise, return NULL.
238 Value *Multiple = nullptr;
239 if (ComputeMultiple(MallocArg, ElementSize, Multiple, LookThroughSExt))
240 return Multiple;
289 /// argument passed to malloc is a multiple of the size of the malloced type,
290 /// then return that multiple. For non-array mallocs, the multiple is
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCISelLowering.cpp 672 // multiple elements of the buildvector are folded together into a single
676 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
678 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
687 if (UniquedVals[i&(Multiple-1)].getNode() == 0)
688 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
689 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
693 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
701 for (unsigned i = 0; i != Multiple-1; ++i) {
709 if (UniquedVals[Multiple-1].getNode() == 0
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 1883 milliseconds