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

  /external/llvm/lib/MC/
MCObjectWriter.cpp 30 const MCSymbol &SA = A->getSymbol();
32 if (SA.AliasedSymbol().isUndefined() || SB.AliasedSymbol().isUndefined())
35 const MCSymbolData &DataA = Asm.getSymbolData(SA);
MCExpr.cpp 327 const MCSymbol &SA = A->getSymbol();
330 if (SA.isUndefined() || SB.isUndefined())
336 MCSymbolData &AD = Asm->getSymbolData(SA);
344 if (Asm->isThumbFunc(&SA))
370 if (Asm->isThumbFunc(&SA))
MCAssembler.cpp 266 const MCSymbol &SA = A->getSymbol();
268 SA.AliasedSymbol().isUndefined()) {
271 const MCSymbolData &DataA = getSymbolData(SA);
    [all...]
MachObjectWriter.cpp 588 const MCSymbol &SA = DataA.getSymbol().AliasedSymbol();
589 const MCSection &SecA = SA.getSection();
607 if (!SA.isInSection() || &SecA != &SecB ||
608 (!SA.isTemporary() &&
609 FB.getAtom() != Asm.getSymbolData(SA).getFragment()->getAtom() &&
621 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
629 const MCFragment *FA = Asm.getSymbolData(SA).getFragment();
  /external/clang/test/Parser/
cxx-using-declaration.cpp 6 struct SA { int V; };
11 using typename A::SA;
17 SA x; //Still needs handling.
  /external/clang/test/SemaCXX/
class-layout.cpp 3 #define SA(n, p) int a##n[(p) ? 1 : -1]
10 SA(0, sizeof(A) == 8);
16 SA(1, sizeof(B) == 12);
25 SA(2, sizeof(C) == 8);
31 SA(3, sizeof(D) == 8);
38 SA(4, sizeof(E) == 5);
44 SA(5, sizeof(F) == 6);
49 SA(6, sizeof(H) == 1);
56 SA(6_1, sizeof(I) == 5);
62 SA(7, sizeof(A) == 1);
    [all...]
empty-class-layout.cpp 3 #define SA(n, p) int a##n[(p) ? 1 : -1]
8 SA(0, sizeof(A) == 4);
11 SA(1, sizeof(B) == 1);
14 SA(2, sizeof(C) == 4);
21 SA(3, sizeof(G) == 2);
28 SA(4, sizeof(I) == 2);
33 SA(5, sizeof(J) == 3);
42 SA(6, sizeof(S1) == 24);
47 SA(7, sizeof(S2) == 24);
55 SA(8, sizeof(S4) == 2)
    [all...]
  /external/icu4c/test/intltest/
itspoof.cpp 148 const uint32_t SA = USPOOF_SINGLE_SCRIPT_CONFUSABLE | USPOOF_ANY_CASE;
174 // This mapping exists in the ML and MA tables, does not exist in SL, SA
177 CHECK_SKELETON(SA, "\\u0C83", "\\u0C83");
184 CHECK_SKELETON(SA, "\\u0391", "\\u0391");
193 CHECK_SKELETON(SA, "\\u13CF", "\\u13CF");
198 CHECK_SKELETON(SA, "\\u0022", "\\u0027\\u0027");
203 // This mapping exists in the SA and MA tables
205 CHECK_SKELETON(SA, "\\u017F", "f");
388 } else if (tableType.indexOf("SA") >= 0) {
  /external/llvm/lib/CodeGen/
SplitKit.h 211 SplitAnalysis &SA;
349 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
351 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
RegAllocGreedy.cpp 171 std::auto_ptr<SplitAnalysis> SA;
688 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
721 if (Intf.last() >= SA->getLastSplitPoint(BC.Number))
775 if (Intf.last() >= SA->getLastSplitPoint(Number))
794 BitVector Todo = SA->getThroughBlocks();
851 if (!SA->getNumThroughBlocks())
888 /// SA around all use blocks instead of forming bundle regions.
891 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
912 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks()
    [all...]
  /external/qemu/slirp/
ip_input.c 579 #define SA struct sockaddr *
580 if ((ia = (INA)ifa_ifwithdstaddr((SA)&ipaddr)) == 0)
581 ia = (INA)ifa_ifwithnet((SA)&ipaddr);
616 if ((ia = (INA)ifa_ifwithaddr((SA)&ipaddr)) == 0 &&
648 ia = (INA)ifaof_ i f p foraddr((SA)&ipaddr,
663 if (ifa_ifwithaddr((SA)&ipaddr) == 0)
  /external/qemu/slirp-android/
ip_input.c 579 #define SA struct sockaddr *
580 if ((ia = (INA)ifa_ifwithdstaddr((SA)&ipaddr)) == 0)
581 ia = (INA)ifa_ifwithnet((SA)&ipaddr);
616 if ((ia = (INA)ifa_ifwithaddr((SA)&ipaddr)) == 0 &&
648 ia = (INA)ifaof_ i f p foraddr((SA)&ipaddr,
663 if (ifa_ifwithaddr((SA)&ipaddr) == 0)
  /external/clang/test/CodeGen/
x86_64-arguments.c 304 } SA;
306 extern void func42(SA s);
307 void func43(SA s) {
  /external/clang/tools/libclang/
IndexingContext.h 35 ScratchAlloc(const ScratchAlloc &SA);
247 ScratchAlloc SA;
327 ScratchAlloc &SA);
341 IndexingContext &IdxCtx, ScratchAlloc &SA);
497 ScratchAlloc &SA);
513 inline ScratchAlloc::ScratchAlloc(const ScratchAlloc &SA) : IdxCtx(SA.IdxCtx) {
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
EventRecurrence.java 47 public static final int SA = 0x00400000;
135 sParseWeekdayMap.put("SA", SA);
185 return SA;
208 return SA;
229 case SA:
257 case SA:
288 case SA:
289 return "SA";
408 if (day == SU || day == SA) {
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 847 if (const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Op)) {
850 for (unsigned i = 0, e = SA->getNumOperands(); i != e && !hasTrunc; ++i) {
851 const SCEV *S = getTruncateExpr(SA->getOperand(i), Ty);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 730 const Value *SA = StripPointerCastsAndObjCCalls(LocA.Ptr);
733 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.TBAATag),
740 const Value *UA = GetUnderlyingObjCPtr(SA);
742 if (UA != SA || UB != SB) {
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /hardware/ti/wlan/wl1271/utils/
802_11Defs.h 267 TMacAddr SA;
329 0 0 DA SA BSSID N/A
330 0 1 DA BSSID SA N/A
331 1 0 BSSID SA DA N/A
332 1 1 RA TA DA SA
    [all...]

Completed in 506 milliseconds