HomeSort by relevance Sort by last modified time
    Searched defs:VA (Results 1 - 25 of 25) 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 779 #define VA(type) va_arg(args, type)
828 tmp = VA(int);
889 lnum = (long)VA(ssize_t);
891 lnum = VA(long);
893 lnum = (long)(short)VA(int);
895 lnum = (long)VA(int);
902 lnum = VA(size_t);
904 lnum = VA(unsigned long);
906 lnum = (unsigned long)(unsigned short)VA(int);
908 lnum = (unsigned long)VA(unsigned int)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 336 CCValAssign &VA = RVLocs[i];
338 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
342 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
448 CCValAssign &VA = ArgLocs[i];
449 if (VA.isMemLoc()) {
473 CCValAssign &VA = ArgLocs[i];
478 switch (VA.getLocInfo()) {
485 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
488 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg)
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 451 CCValAssign &VA = ArgLocs[i];
452 if (VA.isRegLoc()) {
454 EVT RegVT = VA.getLocVT();
466 RegInfo.addLiveIn(VA.getLocReg(), VReg);
472 if (VA.getLocInfo() == CCValAssign::SExt)
474 DAG.getValueType(VA.getValVT()));
475 else if (VA.getLocInfo() == CCValAssign::ZExt)
477 DAG.getValueType(VA.getValVT()));
479 if (VA.getLocInfo() != CCValAssign::Full)
480 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue)
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
SIISelLowering.cpp 397 CCValAssign &VA = ArgLocs[ArgIdx++];
398 EVT VT = VA.getLocVT();
400 if (VA.isMemLoc()) {
406 36 + VA.getLocMemOffset(),
411 assert(VA.isRegLoc() && "Parameter must be in a register!");
413 unsigned Reg = VA.getLocReg();
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 206 CCValAssign &VA = RVLocs[i];
207 assert(VA.isRegLoc() && "Can only return in registers!");
209 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(),
214 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
268 CCValAssign &VA = RVLocs[i];
269 assert(VA.isRegLoc() && "Can only return in registers!");
273 switch (VA.getLocInfo()) {
276 OutVal = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), OutVal);
279 OutVal = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), OutVal)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 622 // Value is a value that has been passed to us in the location described by VA
623 // (and so has type VA.getLocVT()). Convert Value to VA.getValVT(), chaining
626 CCValAssign &VA, SDValue Chain,
630 if (VA.getLocInfo() == CCValAssign::SExt)
631 Value = DAG.getNode(ISD::AssertSext, DL, VA.getLocVT(), Value,
632 DAG.getValueType(VA.getValVT()));
633 else if (VA.getLocInfo() == CCValAssign::ZExt)
634 Value = DAG.getNode(ISD::AssertZext, DL, VA.getLocVT(), Value,
635 DAG.getValueType(VA.getValVT()))
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/qemu/disas/
ppc.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 2198 milliseconds