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

  /external/llvm/lib/CodeGen/AsmPrinter/
ByteStreamer.h 41 AsmPrinter ≈
44 APByteStreamer(AsmPrinter &Asm) : AP(Asm) {}
46 AP.OutStreamer->AddComment(Comment);
47 AP.EmitInt8(Byte);
50 AP.OutStreamer->AddComment(Comment);
51 AP.EmitSLEB128(DWord);
54 AP.OutStreamer->AddComment(Comment);
55 AP.EmitULEB128(DWord);
DwarfExpression.h 123 const AsmPrinter ≈
128 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/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/eigen/blas/fortran/
chpmv.f 1 SUBROUTINE CHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY)
8 COMPLEX AP(*),X(*),Y(*)
27 * array AP as follows:
30 * supplied in AP.
33 * supplied in AP.
46 * AP - COMPLEX array of DIMENSION at least
48 * Before entry with UPLO = 'U' or 'u', the array AP must
50 * packed sequentially, column by column, so that AP( 1 )
51 * contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2
    [all...]
dspmv.f 1 SUBROUTINE DSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY)
8 DOUBLE PRECISION AP(*),X(*),Y(*)
27 * array AP as follows:
30 * supplied in AP.
33 * supplied in AP.
46 * AP - DOUBLE PRECISION array of DIMENSION at least
48 * Before entry with UPLO = 'U' or 'u', the array AP must
50 * packed sequentially, column by column, so that AP( 1 )
51 * contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2
    [all...]
sspmv.f 1 SUBROUTINE SSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY)
8 REAL AP(*),X(*),Y(*)
27 * array AP as follows:
30 * supplied in AP.
33 * supplied in AP.
46 * AP - REAL array of DIMENSION at least
48 * Before entry with UPLO = 'U' or 'u', the array AP must
50 * packed sequentially, column by column, so that AP( 1 )
51 * contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2
    [all...]
zhpmv.f 1 SUBROUTINE ZHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY)
8 DOUBLE COMPLEX AP(*),X(*),Y(*)
27 * array AP as follows:
30 * supplied in AP.
33 * supplied in AP.
46 * AP - COMPLEX*16 array of DIMENSION at least
48 * Before entry with UPLO = 'U' or 'u', the array AP must
50 * packed sequentially, column by column, so that AP( 1 )
51 * contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2
    [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 23 Returns the list of AP's from the corresponding configuration file.
27 @returns a list of AP objects.
34 {AP.CONF_RPM_MANAGED: 'False'})
44 aps.append(AP(bss, ap_config))
49 """ Exception raised when AP fails to power on. """
53 """ Exception raised when AP instance does not exist in the config. """
56 class AP(object):
57 """ An instance of an ap defined in the chaos config file.
60 about an AP in the chaos lab, and control its power.
99 """@return string ssid for AP from config file""
    [all...]
  /external/llvm/include/llvm/CodeGen/
FaultMaps.h 34 explicit FaultMaps(AsmPrinter &AP);
69 AsmPrinter &AP;
StackMaps.h 166 StackMaps(AsmPrinter &AP);
211 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...]
  /tools/test/connectivity/acts/framework/acts/controllers/
access_point.py 20 ACTS_CONTROLLER_CONFIG_NAME = "AP"
30 results.append(AP(addr, port))
45 class AP():
57 IFACE_DEFAULTS = {"mode": "ap", "disabled": "0",
129 """Executes a terminal command on the AP.
146 ap_config: A dict containing the configurations for the AP.
158 """Applies conigurations on a radio of the AP.
173 """Resets the AP to a clean state.
199 ClientError: If the radio specified does not exist on the AP.
303 ServerError: Something funny happened restarting wifi on the AP
    [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);
253 generateDeallocatorMismatchReport(const AllocationPair &AP,
257 State = State->remove<AllocatedData>(AP.first);
266 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx;
271 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first));
273 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/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 79 // address of the bottom of the stack, referred in the sources as AP (aligned
80 // pointer). The AP will be equal to "FP-p", where "p" is the smallest pad
81 // that aligns AP to the required boundary (a maximum of the alignments of
83 // then use AP as the base pointer.
89 // Illustration of the AP:
97 // stack alignment +-- AP
99 // The AP is set up at the beginning of the function. Since it is not a dedi-
103 // TFR_FI. To access local objects with the AP register present, a different
105 // argument compared to TFR_FI: the first input register is the AP register.
108 // The AP register is originally set up using pseudo-instruction ALIGNA
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-vax.c     [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 523 milliseconds