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

1 2 3

  /external/clang/test/SemaCXX/
empty-class-layout.cpp 4 #define SA(n, p) int a##n[(p) ? 1 : -1]
9 SA(0, sizeof(A) == 4);
12 SA(1, sizeof(B) == 1);
15 SA(2, sizeof(C) == 4);
22 SA(3, sizeof(G) == 2);
29 SA(4, sizeof(I) == 2);
34 SA(5, sizeof(J) == 3);
43 SA(6, sizeof(S1) == 24);
48 SA(7, sizeof(S2) == 24);
56 SA(8, sizeof(S4) == 2)
    [all...]
class-layout.cpp 5 #define SA(n, p) int a##n[(p) ? 1 : -1]
12 SA(0, sizeof(A) == 8);
18 SA(1, sizeof(B) == 12);
27 SA(2, sizeof(C) == 8);
33 SA(3, sizeof(D) == 8);
40 SA(4, sizeof(E) == 5);
46 SA(5, sizeof(F) == 6);
51 SA(6, sizeof(H) == 1);
58 SA(6_1, sizeof(I) == 5);
64 SA(7, sizeof(A) == 1);
    [all...]
  /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/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);
MachObjectWriter.cpp 663 // Is the variable is a symbol difference (SA - SB + C) expression,
706 const MCSymbol &SA = DataA.getSymbol().AliasedSymbol();
707 const MCSection &SecA = SA.getSection();
726 if (!SA.isInSection() || &SecA != &SecB ||
727 (!SA.isTemporary() &&
728 FB.getAtom() != Asm.getSymbolData(SA).getFragment()->getAtom() &&
740 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
748 const MCFragment *FA = Asm.getSymbolData(SA).getFragment();
    [all...]
  /ndk/sources/android/support/src/musl-multibyte/
mbrtowc.c 29 if (*s-SA > SB-SA) goto ilseq;
30 c = bittab[*s++-SA]; n--;
mbtowc.c 21 if (*s-SA > SB-SA) goto ilseq;
22 c = bittab[*s++-SA];
mbsrtowcs.c 39 if (*s-SA > SB-SA) break;
40 c = bittab[*s++-SA];
73 if (*s-SA > SB-SA) break;
74 c = bittab[*s++-SA];
internal.h 22 #define SA 0xc2u
  /external/lldb/test/lang/cpp/stl/
TestStdCXXDisassembly.py 89 # address to the 'disassemble -s SA -e LA' command.
90 SA = None
98 print "SA:", SA
99 if SA and LA:
100 if int(LA, 16) > int(SA, 16):
101 self.runCmd("disassemble -s %s -e %s" % (SA, LA))
102 SA = LA
104 # This entry is not a Code entry. Reset SA = None.
105 SA = Non
    [all...]
  /external/valgrind/main/none/tests/mips64/
rotate_swap.c 3 #define TESTINST_DROTR(instruction, in, SA) \
9 instruction" $t0, $t1, "#SA "\n\t" \
15 printf("%s :: in 0x%llx, out 0x%llx, SA %d\n", \
16 instruction, (long long) in, out, SA); \
19 #define TESTINST_DROTRV(instruction, in, SA) \
29 : "r" (in), "r" (SA) \
32 printf("%s :: in 0x%llx, out 0x%llx, SA %d\n", \
33 instruction, (long long) in, out, SA); \
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 62 const Value *SA = StripPointerCastsAndObjCCalls(LocA.Ptr);
65 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.TBAATag),
72 const Value *UA = GetUnderlyingObjCPtr(SA);
74 if (UA != SA || UB != SB) {
  /external/clang/tools/libclang/
IndexingContext.cpp 25 ScratchAlloc &SA) {
32 IdxCtx.getEntityInfo(PD, ProtEntities.back(), SA);
65 : SA(IdxCtx), ref_cnt(0) {
104 IdxCtx.getEntityInfo(InterD, IBInfo.ClassInfo, SA);
118 ScratchAlloc SA(IdxCtx);
119 AttrListInfo *attrs = SA.allocate<AttrListInfo>();
125 ScratchAlloc &SA) {
142 IdxCtx.getEntityInfo(BaseD, BaseEntities.back(), SA);
251 ScratchAlloc SA(*this);
253 SA.toCStr(filename)
    [all...]
IndexingContext.h 35 ScratchAlloc(const ScratchAlloc &SA);
238 ScratchAlloc SA;
311 ScratchAlloc &SA);
325 IndexingContext &IdxCtx, ScratchAlloc &SA);
488 ScratchAlloc &SA);
504 inline ScratchAlloc::ScratchAlloc(const ScratchAlloc &SA) : IdxCtx(SA.IdxCtx) {
  /external/mdnsresponder/mDNSShared/
CommonServices.h 498 #define SOCKADDR_IS_IP_LOOPBACK( SA ) \
499 ( ( (const struct sockaddr *)( SA ) )->sa_family == AF_INET ) \
500 ? ( ( (const struct sockaddr_in *)( SA ) )->sin_addr.s_addr == htonl( INADDR_LOOPBACK ) ) \
501 : ( ( (const struct sockaddr *)( SA ) )->sa_family == AF_INET6 ) \
502 ? IN6_IS_ADDR_LOOPBACK( &( (const struct sockaddr_in6 *)( SA ) )->sin6_addr ) \
505 #define SOCKADDR_IS_IP_LOOPBACK( SA ) \
506 ( ( (const struct sockaddr *)( SA ) )->sa_family == AF_INET ) \
507 ? ( ( (const struct sockaddr_in *)( SA ) )->sin_addr.s_addr == htonl( INADDR_LOOPBACK ) ) \
518 #define SOCKADDR_IS_IP_LINK_LOCAL( SA ) \
519 ( ( ( (const struct sockaddr *)( SA ) )->sa_family == AF_INET )
    [all...]
  /external/pcre/dist/sljit/
sljitNativeMIPS_64.c 38 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar);
41 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar);
45 return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SLJIT_SUCCESS;
81 FAIL_IF(push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(uimm >> 32), dst_ar));
89 return !(imm & 0xffff) ? SLJIT_SUCCESS : push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar);
114 FAIL_IF(push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(uimm >> 48), dst_ar));
118 return !(imm & 0xffff) ? SLJIT_SUCCESS : push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar);
228 return push_inst(compiler, XORI | SA(EQUAL_FLAG) | TA(EQUAL_FLAG) | IMM(1), EQUAL_FLAG);
234 FAIL_IF(push_inst(compiler, ORI | SA(0) | T(dst) | IMM((op & SLJIT_INT_OP) ? 32 : 64), UNMOVABLE_INS));
235 FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | SA(0) | T(dst) | IMM(-1), DR(dst)))
    [all...]
sljitNativeMIPS_32.c 32 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar);
35 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar);
38 return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SLJIT_SUCCESS;
136 return push_inst(compiler, XORI | SA(EQUAL_FLAG) | TA(EQUAL_FLAG) | IMM(1), EQUAL_FLAG);
142 FAIL_IF(push_inst(compiler, ORI | SA(0) | T(dst) | IMM(32), UNMOVABLE_INS));
143 FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(dst) | IMM(-1), DR(dst)));
167 FAIL_IF(push_inst(compiler, ADDIU | SA(0) | TA(ULESS_FLAG) | IMM(src2), ULESS_FLAG));
203 FAIL_IF(push_inst(compiler, ADDIU | SA(0) | TA(OVERFLOW_FLAG) | IMM(src2), OVERFLOW_FLAG));
224 return push_inst(compiler, OR | SA(ULESS_FLAG) | TA(OVERFLOW_FLAG) | DA(ULESS_FLAG), ULESS_FLAG);
228 FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(TMP_REG2) | IMM(src2), DR(TMP_REG2)))
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 236 std::unique_ptr<SplitAnalysis> SA;
    [all...]
SplitKit.h 212 SplitAnalysis &SA;
351 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
353 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
  /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...]
  /hardware/intel/img/psb_video/src/hwdefs/
dma_api.h 384 @Input SA : the host memory address to transfer to/from
389 #define DMA_LL_SET_WD6(pList, SA) \
391 MEMIO_WRITE_FIELD(pList, DMAC_LL_SA, SA); \
  /external/clang/test/CodeGen/
x86_64-arguments.c 304 } SA;
306 extern void func42(SA s);
307 void func43(SA s) {
  /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/eigen/blas/testing/
dblat1.f 136 DOUBLE PRECISION SA, SB, SC, SS, D12
219 SA = DA1(K)
221 CALL DROTG(SA,SB,SC,SS)
222 CALL STEST1(SA,DATRUE(K),DATRUE(K),SFAC)
255 + SA(10), STEMP(1), STRUE(8), SX(8)
268 DATA SA/0.3D0, -1.0D0, 0.0D0, 1.0D0, 0.3D0, 0.3D0,
320 CALL DSCAL(N,SA((INCX-1)*5+NP1),SX,INCX)
346 DOUBLE PRECISION SA
376 DATA SA/0.3D0/
618 CALL DAXPY(N,SA,SX,INCX,SY,INCY
    [all...]

Completed in 1045 milliseconds

1 2 3