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

  /external/llvm/lib/CodeGen/AsmPrinter/
ByteStreamer.h 40 AsmPrinter ≈
43 APByteStreamer(AsmPrinter &Asm) : AP(Asm) {}
45 AP.OutStreamer->AddComment(Comment);
46 AP.EmitInt8(Byte);
49 AP.OutStreamer->AddComment(Comment);
50 AP.EmitSLEB128(DWord);
53 AP.OutStreamer->AddComment(Comment);
54 AP.EmitULEB128(DWord);
DwarfExpression.h 138 const AsmPrinter ≈
143 DIEDwarfExpression(const AsmPrinter &AP, DwarfUnit &DU, DIELoc &DIE);
AsmPrinterInlineAsm.cpp 158 AsmPrinter *AP, unsigned LocCookie,
234 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant,
237 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant,
256 int AsmPrinterVariant, AsmPrinter *AP,
335 AP->PrintSpecial(MI, OS, Val.c_str());
402 Sym->print(OS, AP->MAI);
405 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant,
409 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant,
480 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
483 AP, LocCookie, OS)
    [all...]
DIEHash.h 85 DIEHash(AsmPrinter *A = nullptr) : AP(A) {}
154 AsmPrinter *AP;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 36 void beginAssembly(AsmPrinter &AP);
37 void finishAssembly(AsmPrinter &AP);
47 static void EmitCamlGlobal(const Module &M, AsmPrinter &AP, const char *Id) {
61 AP.Mang->getNameWithPrefix(TmpStr, SymName);
63 MCSymbol *Sym = AP.OutContext.GetOrCreateSymbol(TmpStr);
65 AP.OutStreamer.EmitSymbolAttribute(Sym, MCSA_Global);
66 AP.OutStreamer.EmitLabel(Sym);
69 void OcamlGCMetadataPrinter::beginAssembly(AsmPrinter &AP) {
70 AP.OutStreamer.SwitchSection(AP.getObjFileLowering().getTextSection())
    [all...]
AsmPrinterInlineAsm.cpp 339 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
341 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
345 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
  /external/cblas/testing/
c_cblas2.c 240 CBLAS_TEST_COMPLEX *ap, CBLAS_TEST_COMPLEX *x, int *incx,
243 CBLAS_TEST_COMPLEX *A, *AP;
250 cblas_chpmv(CblasRowMajor, UNDEFINED, *n, alpha, ap, x, *incx,
255 AP = (CBLAS_TEST_COMPLEX* )malloc( (((LDA+1)*LDA)/2)*
260 A[ LDA*i+j ].real=ap[ k ].real;
261 A[ LDA*i+j ].imag=ap[ k ].imag;
265 AP[ k ].real=A[ LDA*i+j ].real;
266 AP[ k ].imag=A[ LDA*i+j ].imag;
272 A[ LDA*i+j ].real=ap[ k ].real;
273 A[ LDA*i+j ].imag=ap[ k ].imag
    [all...]
c_dblas2.c 362 void F77_dspmv(int *order, char *uplow, int *n, double *alpha, double *ap,
364 double *A,*AP;
373 AP = ( double* )malloc( (((LDA+1)*LDA)/2)*sizeof( double ) );
377 A[ LDA*i+j ]=ap[ k ];
380 AP[ k ]=A[ LDA*i+j ];
385 A[ LDA*i+j ]=ap[ k ];
388 AP[ k ]=A[ LDA*i+j ];
390 cblas_dspmv( CblasRowMajor, uplo, *n, *alpha, AP, x, *incx, *beta, y,
393 free(AP);
396 cblas_dspmv( CblasColMajor, uplo, *n, *alpha, ap, x, *incx, *beta, y,
    [all...]
c_sblas2.c 362 void F77_sspmv(int *order, char *uplow, int *n, float *alpha, float *ap,
364 float *A,*AP;
373 AP = ( float* )malloc( (((LDA+1)*LDA)/2)*sizeof( float ) );
377 A[ LDA*i+j ]=ap[ k ];
380 AP[ k ]=A[ LDA*i+j ];
385 A[ LDA*i+j ]=ap[ k ];
388 AP[ k ]=A[ LDA*i+j ];
390 cblas_sspmv( CblasRowMajor, uplo, *n, *alpha, AP, x, *incx, *beta, y,
392 free(A); free(AP);
395 cblas_sspmv( CblasColMajor, uplo, *n, *alpha, ap, x, *incx, *beta, y,
    [all...]
c_zblas2.c 240 CBLAS_TEST_ZOMPLEX *ap, CBLAS_TEST_ZOMPLEX *x, int *incx,
243 CBLAS_TEST_ZOMPLEX *A, *AP;
250 cblas_zhpmv(CblasRowMajor, UNDEFINED, *n, alpha, ap, x, *incx,
255 AP = (CBLAS_TEST_ZOMPLEX* )malloc( (((LDA+1)*LDA)/2)*
260 A[ LDA*i+j ].real=ap[ k ].real;
261 A[ LDA*i+j ].imag=ap[ k ].imag;
265 AP[ k ].real=A[ LDA*i+j ].real;
266 AP[ k ].imag=A[ LDA*i+j ].imag;
272 A[ LDA*i+j ].real=ap[ k ].real;
273 A[ LDA*i+j ].imag=ap[ k ].imag
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.permissions/
permissions.pass.cpp 85 const perms AP = perms::add_perms;
96 {file, perms::group_all | AP, perms::owner_all | perms::group_all},
101 {dir, perms::group_all | AP, perms::owner_all | perms::group_all},
106 {sym, perms::group_all | AP, perms::owner_all | perms::group_all},
110 {file, perms::group_all | AP | NF, perms::owner_all | perms::group_all},
111 {dir, perms::group_all | AP | NF, perms::owner_all | perms::group_all}
  /frameworks/compile/mclinker/include/mcld/ADT/
StringHash.h 22 enum Type { RS, JS, PJW, ELF, BKDR, SDBM, DJB, DEK, BP, FNV, AP, ES };
220 /** \class StringHash<AP>
221 * \brief AP hash function
225 struct StringHash<AP>
  /external/autotest/server/cros/
ap_config.py 27 Returns the list of AP's from the corresponding configuration file.
31 @returns a list of AP objects.
38 {AP.CONF_RPM_MANAGED: 'False'})
48 aps.append(AP(bss, ap_config))
53 """ Exception raised when AP fails to power on. """
57 """ Exception raised when AP instance does not exist in the config. """
60 class AP(object):
61 """ An instance of an ap defined in the chaos config file.
64 about an AP in the chaos lab, and control its power.
104 """@return string ssid for AP from config file""
    [all...]
  /external/llvm/include/llvm/CodeGen/
FaultMaps.h 33 explicit FaultMaps(AsmPrinter &AP);
68 AsmPrinter &AP;
StackMaps.h 165 StackMaps(AsmPrinter &AP);
210 AsmPrinter &AP;
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 100 NVPTXAsmPrinter &AP;
104 AggBuffer(unsigned size, raw_ostream &O, NVPTXAsmPrinter &AP)
105 : size(size), buffer(size), O(O), AP(AP) {
108 EmitGeneric = AP.EmitGeneric;
151 if (static_cast<const NVPTXTargetMachine &>(AP.TM).is64Bit())
160 MCSymbol *Name = AP.getSymbol(GVar);
168 Name->print(O, AP.MAI);
171 Name->print(O, AP.MAI);
175 AP.lowerConstantForGV(cast<Constant>(CExpr), false)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 98 void generateDeallocatorMismatchReport(const AllocationPair &AP,
107 const AllocationPair &AP, ExplodedNode *N, CheckerContext &C) const;
123 void markInteresting(BugReport *R, const AllocationPair &AP) const {
124 R->markInteresting(AP.first);
125 R->markInteresting(AP.second->Region);
245 generateDeallocatorMismatchReport(const AllocationPair &AP,
249 State = State->remove<AllocatedData>(AP.first);
258 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx;
263 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first));
265 markInteresting(Report.get(), AP);
    [all...]
  /external/guice/core/test/com/google/inject/
CircularDependencyTest.java 79 @Inject Provider<A> ap;
81 return new BImpl(ap.get());
93 bind(A.class).toProvider(AP.class).in(Singleton.class);
140 static class AP implements Provider<A> {
183 Provider<A> ap; field in class:CircularDependencyTest.BP
184 @Inject BP(Provider<A> ap) {
185 this.ap = ap;
188 return new BImpl(ap.get());
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-vax.c     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 78 // address of the bottom of the stack, referred in the sources as AP (aligned
79 // pointer). The AP will be equal to "FP-p", where "p" is the smallest pad
80 // that aligns AP to the required boundary (a maximum of the alignments of
82 // then use AP as the base pointer.
88 // Illustration of the AP:
96 // stack alignment +-- AP
98 // The AP is set up at the beginning of the function. Since it is not a dedi-
102 // TFR_FI. To access local objects with the AP register present, a different
104 // argument compared to TFR_FI: the first input register is the AP register.
107 // The AP register is originally set up using pseudo-instruction ALIGNA
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/v8/src/s390/
constants-s390.h 209 AP = 0xFA, // Add Decimal
    [all...]
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 

Completed in 952 milliseconds