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

  /external/clang/test/Preprocessor/
macro_paste_bad.c 32 #define VA __VA_ ## ARGS__
33 int VA; // expected-warning {{__VA_ARGS__ can only appear in the expansion of a C99 variadic macro}}
  /external/clang/test/Parser/
cxx-using-declaration.cpp 4 int VA;
9 using A::VA;
15 VA = 1;
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2.h 31 struct VA : SkOTTableOS2_VA { } vA;
45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68);
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 31 struct VA : SkOTTableOS2_VA { } vA;
45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68);
  /external/clang/test/CXX/special/class.dtor/
p3-0x.cpp 140 struct VA {
142 virtual ~VA() {}
145 struct VB : VA
149 struct TVB : VA
  /external/mksh/src/
shf.c 776 #define VA(type) va_arg(args, type)
825 tmp = VA(int);
886 lnum = (long)VA(ssize_t);
888 lnum = VA(long);
890 lnum = (long)(short)VA(int);
892 lnum = (long)VA(int);
899 lnum = VA(size_t);
901 lnum = VA(unsigned long);
903 lnum = (unsigned long)(unsigned short)VA(int);
905 lnum = (unsigned long)VA(unsigned int)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 322 CCValAssign &VA = RVLocs[i];
324 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
328 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
434 CCValAssign &VA = ArgLocs[i];
435 if (VA.isMemLoc()) {
458 CCValAssign &VA = ArgLocs[i];
463 switch (VA.getLocInfo()) {
470 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
473 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg)
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 337 CCValAssign &VA = ArgLocs[i];
338 if (VA.isRegLoc()) {
340 EVT RegVT = VA.getLocVT();
352 RegInfo.addLiveIn(VA.getLocReg(), VReg);
358 if (VA.getLocInfo() == CCValAssign::SExt)
360 DAG.getValueType(VA.getValVT()));
361 else if (VA.getLocInfo() == CCValAssign::ZExt)
363 DAG.getValueType(VA.getValVT()));
365 if (VA.getLocInfo() != CCValAssign::Full)
366 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue)
    [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
SIISelLowering.cpp 213 CCValAssign &VA = ArgLocs[ArgIdx++];
214 EVT VT = VA.getLocVT();
216 if (VA.isMemLoc()) {
220 36 + VA.getLocMemOffset());
224 assert(VA.isRegLoc() && "Parameter must be in a register!");
226 unsigned Reg = VA.getLocReg();
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 198 CCValAssign &VA = RVLocs[i];
199 assert(VA.isRegLoc() && "Can only return in registers!");
201 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(),
206 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
261 CCValAssign &VA = RVLocs[i];
262 assert(VA.isRegLoc() && "Can only return in registers!");
266 switch (VA.getLocInfo()) {
268 OutVal = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), OutVal);
271 OutVal = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), OutVal)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 530 // Value is a value that has been passed to us in the location described by VA
531 // (and so has type VA.getLocVT()). Convert Value to VA.getValVT(), chaining
534 CCValAssign &VA, SDValue Chain,
538 if (VA.getLocInfo() == CCValAssign::SExt)
539 Value = DAG.getNode(ISD::AssertSext, DL, VA.getLocVT(), Value,
540 DAG.getValueType(VA.getValVT()));
541 else if (VA.getLocInfo() == CCValAssign::ZExt)
542 Value = DAG.getNode(ISD::AssertZext, DL, VA.getLocVT(), Value,
543 DAG.getValueType(VA.getValVT()))
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 773 CCValAssign &VA = ValLocs[0];
776 if (VA.getLocInfo() != CCValAssign::Full)
779 if (!VA.isRegLoc())
784 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
787 unsigned SrcReg = Reg + VA.getValNo();
789 EVT DstVT = VA.getValVT();
813 unsigned DstReg = VA.getLocReg();
822 RetRegs.push_back(VA.getLocReg());
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/qemu/
ppc-dis.c 820 /* The VA field in a VA, VX or VXR form instruction. */
821 #define VA UI + 1
824 /* The VB field in a VA, VX or VXR form instruction. */
825 #define VB VA + 1
828 /* The VC field in a VA form instruction. */
832 /* The VD or VS field in a VA, VX, VXR or X form instruction. */
846 /* The SHB field in a VA form instruction. */
    [all...]

Completed in 699 milliseconds