Home
last modified time | relevance | path

Searched refs:AP (Results 1 – 25 of 208) sorted by relevance

123456789

/external/llvm/lib/CodeGen/AsmPrinter/
DOcamlGCPrinter.cpp37 void beginAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override;
38 void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override;
47 static void EmitCamlGlobal(const Module &M, AsmPrinter &AP, const char *Id) { in EmitCamlGlobal() argument
63 MCSymbol *Sym = AP.OutContext.getOrCreateSymbol(TmpStr); in EmitCamlGlobal()
65 AP.OutStreamer->EmitSymbolAttribute(Sym, MCSA_Global); in EmitCamlGlobal()
66 AP.OutStreamer->EmitLabel(Sym); in EmitCamlGlobal()
70 AsmPrinter &AP) { in beginAssembly() argument
71 AP.OutStreamer->SwitchSection(AP.getObjFileLowering().getTextSection()); in beginAssembly()
72 EmitCamlGlobal(M, AP, "code_begin"); in beginAssembly()
74 AP.OutStreamer->SwitchSection(AP.getObjFileLowering().getDataSection()); in beginAssembly()
[all …]
DDIE.cpp64 void DIEAbbrev::Emit(const AsmPrinter *AP) const { in Emit()
66 AP->EmitULEB128(Tag, dwarf::TagString(Tag)); in Emit()
69 AP->EmitULEB128((unsigned)Children, dwarf::ChildrenString(Children)); in Emit()
76 AP->EmitULEB128(AttrData.getAttribute(), in Emit()
80 AP->EmitULEB128(AttrData.getForm(), in Emit()
85 AP->EmitULEB128(0, "EOM(1)"); in Emit()
86 AP->EmitULEB128(0, "EOM(2)"); in Emit()
194 void DIEValue::EmitValue(const AsmPrinter *AP) const { in EmitValue()
200 getDIE##T().EmitValue(AP, Form); \ in EmitValue()
206 unsigned DIEValue::SizeOf(const AsmPrinter *AP) const { in SizeOf()
[all …]
DErlangGCPrinter.cpp39 void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override;
49 AsmPrinter &AP) { in finishAssembly() argument
50 MCStreamer &OS = *AP.OutStreamer; in finishAssembly()
55 AP.getObjFileLowering().getContext().getELFSection(".note.gc", in finishAssembly()
79 AP.EmitAlignment(IntPtrSize == 4 ? 2 : 3); in finishAssembly()
83 AP.EmitInt16(MD.size()); in finishAssembly()
91 AP.EmitLabelPlusOffset(Label /*Hi*/, 0 /*Offset*/, 4 /*Size*/); in finishAssembly()
100 AP.EmitInt16(MD.getFrameSize() / IntPtrSize); in finishAssembly()
108 AP.EmitInt16(StackArity); in finishAssembly()
112 AP.EmitInt16(MD.live_size(PI)); in finishAssembly()
[all …]
DAsmPrinter.cpp674 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) { in emitKill() argument
683 AP.MF->getSubtarget().getRegisterInfo()) in emitKill()
686 AP.OutStreamer->AddComment(Str); in emitKill()
687 AP.OutStreamer->AddBlankLine(); in emitKill()
693 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { in emitDebugValueComment() argument
725 AP.OutStreamer->emitRawComment(OS.str()); in emitDebugValueComment()
767 const TargetFrameLowering *TFI = AP.MF->getSubtarget().getFrameLowering(); in emitDebugValueComment()
768 Offset += TFI->getFrameIndexReference(*AP.MF, in emitDebugValueComment()
776 AP.OutStreamer->emitRawComment(OS.str()); in emitDebugValueComment()
781 OS << PrintReg(Reg, AP.MF->getSubtarget().getRegisterInfo()); in emitDebugValueComment()
[all …]
DByteStreamer.h41 AsmPrinter &AP;
44 APByteStreamer(AsmPrinter &Asm) : AP(Asm) {} in APByteStreamer()
46 AP.OutStreamer->AddComment(Comment); in EmitInt8()
47 AP.EmitInt8(Byte); in EmitInt8()
50 AP.OutStreamer->AddComment(Comment); in EmitSLEB128()
51 AP.EmitSLEB128(DWord); in EmitSLEB128()
54 AP.OutStreamer->AddComment(Comment); in EmitULEB128()
55 AP.EmitULEB128(DWord); in EmitULEB128()
/external/llvm/lib/Target/Hexagon/
DHexagonMCInstLower.cpp31 MCInst &MCB, HexagonAsmPrinter &AP);
74 MCInst &MCB, HexagonAsmPrinter &AP) { in HexagonLowerToMC() argument
83 MCInst *MCI = new (AP.OutContext) MCInst; in HexagonLowerToMC()
110 AP.OutContext)); in HexagonLowerToMC()
115 MCConstantExpr::create(MO.getImm(), AP.OutContext)); in HexagonLowerToMC()
120 AP.OutContext)); in HexagonLowerToMC()
123 MCO = GetSymbolRef(MO, AP.getSymbol(MO.getGlobal()), AP); in HexagonLowerToMC()
126 MCO = GetSymbolRef(MO, AP.GetExternalSymbolSymbol(MO.getSymbolName()), in HexagonLowerToMC()
127 AP); in HexagonLowerToMC()
130 MCO = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP); in HexagonLowerToMC()
[all …]
/external/llvm/lib/Target/PowerPC/
DPPCMCInstLower.cpp33 static MachineModuleInfoMachO &getMachOMMI(AsmPrinter &AP) { in getMachOMMI() argument
34 return AP.MMI->getObjFileInfo<MachineModuleInfoMachO>(); in getMachOMMI()
38 static MCSymbol *GetSymbolFromOperand(const MachineOperand &MO, AsmPrinter &AP){ in GetSymbolFromOperand() argument
39 const TargetMachine &TM = AP.TM; in GetSymbolFromOperand()
40 Mangler *Mang = AP.Mang; in GetSymbolFromOperand()
41 const DataLayout &DL = AP.getDataLayout(); in GetSymbolFromOperand()
42 MCContext &Ctx = AP.OutContext; in GetSymbolFromOperand()
76 getMachOMMI(AP).getFnStubEntry(Sym); in GetSymbolFromOperand()
83 StubValueTy(AP.getSymbol(MO.getGlobal()), in GetSymbolFromOperand()
96 MachineModuleInfoMachO &MachO = getMachOMMI(AP); in GetSymbolFromOperand()
[all …]
/external/llvm/lib/Target/Sparc/
DSparcMCInstLower.cpp33 AsmPrinter &AP) { in LowerSymbolOperand() argument
46 Symbol = AP.getSymbol(MO.getGlobal()); in LowerSymbolOperand()
50 Symbol = AP.GetBlockAddressSymbol(MO.getBlockAddress()); in LowerSymbolOperand()
54 Symbol = AP.GetExternalSymbolSymbol(MO.getSymbolName()); in LowerSymbolOperand()
58 Symbol = AP.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
63 AP.OutContext); in LowerSymbolOperand()
65 AP.OutContext); in LowerSymbolOperand()
71 AsmPrinter &AP) { in LowerOperand() argument
87 return LowerSymbolOperand(MI, MO, AP); in LowerOperand()
97 AsmPrinter &AP) in LowerSparcMachineInstrToMCInst() argument
[all …]
/external/eigen/blas/fortran/
Dchpmv.f1 SUBROUTINE CHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument
8 COMPLEX AP(*),X(*),Y(*) local
200 Y(I) = Y(I) + TEMP1*AP(K)
201 TEMP2 = TEMP2 + CONJG(AP(K))*X(I)
204 Y(J) = Y(J) + TEMP1*REAL(AP(KK+J-1)) + ALPHA*TEMP2
216 Y(IY) = Y(IY) + TEMP1*AP(K)
217 TEMP2 = TEMP2 + CONJG(AP(K))*X(IX)
221 Y(JY) = Y(JY) + TEMP1*REAL(AP(KK+J-1)) + ALPHA*TEMP2
235 Y(J) = Y(J) + TEMP1*REAL(AP(KK))
238 Y(I) = Y(I) + TEMP1*AP(K)
[all …]
Dzhpmv.f1 SUBROUTINE ZHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument
8 DOUBLE COMPLEX AP(*),X(*),Y(*) local
200 Y(I) = Y(I) + TEMP1*AP(K)
201 TEMP2 = TEMP2 + DCONJG(AP(K))*X(I)
204 Y(J) = Y(J) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2
216 Y(IY) = Y(IY) + TEMP1*AP(K)
217 TEMP2 = TEMP2 + DCONJG(AP(K))*X(IX)
221 Y(JY) = Y(JY) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2
235 Y(J) = Y(J) + TEMP1*DBLE(AP(KK))
238 Y(I) = Y(I) + TEMP1*AP(K)
[all …]
Dsspmv.f1 SUBROUTINE SSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument
8 REAL AP(*),X(*),Y(*) local
193 Y(I) = Y(I) + TEMP1*AP(K)
194 TEMP2 = TEMP2 + AP(K)*X(I)
197 Y(J) = Y(J) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2
209 Y(IY) = Y(IY) + TEMP1*AP(K)
210 TEMP2 = TEMP2 + AP(K)*X(IX)
214 Y(JY) = Y(JY) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2
228 Y(J) = Y(J) + TEMP1*AP(KK)
231 Y(I) = Y(I) + TEMP1*AP(K)
[all …]
Ddspmv.f1 SUBROUTINE DSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument
8 DOUBLE PRECISION AP(*),X(*),Y(*) local
193 Y(I) = Y(I) + TEMP1*AP(K)
194 TEMP2 = TEMP2 + AP(K)*X(I)
197 Y(J) = Y(J) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2
209 Y(IY) = Y(IY) + TEMP1*AP(K)
210 TEMP2 = TEMP2 + AP(K)*X(IX)
214 Y(JY) = Y(JY) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2
228 Y(J) = Y(J) + TEMP1*AP(KK)
231 Y(I) = Y(I) + TEMP1*AP(K)
[all …]
/external/llvm/lib/CodeGen/
DFaultMaps.cpp26 FaultMaps::FaultMaps(AsmPrinter &AP) : AP(AP) {} in FaultMaps() argument
30 MCContext &OutContext = AP.OutStreamer->getContext(); in recordFaultingOp()
33 AP.OutStreamer->EmitLabel(FaultingLabel); in recordFaultingOp()
37 MCSymbolRefExpr::create(AP.CurrentFnSymForSize, OutContext), OutContext); in recordFaultingOp()
41 MCSymbolRefExpr::create(AP.CurrentFnSymForSize, OutContext), OutContext); in recordFaultingOp()
43 FunctionInfos[AP.CurrentFnSym].emplace_back(FaultTy, FaultingOffset, in recordFaultingOp()
51 MCContext &OutContext = AP.OutStreamer->getContext(); in serializeToFaultMapSection()
52 MCStreamer &OS = *AP.OutStreamer; in serializeToFaultMapSection()
80 MCStreamer &OS = *AP.OutStreamer; in emitFunctionInfo()
/external/wpa_supplicant_8/hostapd/
DREADME-WPS5 configured and how an external component on an AP (e.g., web UI) is
30 addition of new devices); this may be either in the AP ("internal
35 It should also be noted that the AP and a client device may change
36 roles (i.e., AP acts as an Enrollee and client device as a Registrar)
79 # WPA2-Personal configuration for the AP
97 # WPS configuration (AP configured, do not allow external WPS Registrars)
103 device_name=Wireless AP
137 PINs on the AP for a set of Enrollee).
142 a new device. The AP could use, e.g., a web UI for showing active
146 the AP, but for which there was no PIN. Following information is
[all …]
/external/llvm/include/llvm/CodeGen/
DDIE.h101 void Emit(const AsmPrinter *AP) const;
141 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const;
142 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const;
160 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const;
161 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const;
179 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const;
180 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const;
195 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const;
196 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const;
213 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const;
[all …]
/external/autotest/server/site_tests/network_WiFi_ReconnectInDarkResume/
Dcontrol.DisconnectAfterSuspendDiffAP24 1) AP ("AP 1") is brought up, and DUT connects to it
25 2) AP 1 is brought down, disconnecting the DUT from it
26 3) Another AP ("AP 2") is brought up, and DUT connects to it
27 4) DUT suspends while connected to AP 2
28 5) AP 2 is brought down, disconnecting the DUT from it while suspended
29 6) AP 1 is brought up again
31 8) Verify that the DUT is connected to AP 1 upon resuming from suspend
Dcontrol.DisconnectAfterSuspendSameAP24 1) AP ("AP 1") is brought up, and DUT connects to it
25 2) AP 1 is brought down, disconnecting the DUT from it
26 3) Another AP ("AP 2") is brought up, and DUT connects to it
27 4) DUT suspends while connected to AP 2
28 5) AP 2 is brought down, disconnecting the DUT from it while suspended
29 6) AP 2 is brought up again
31 8) Verify that the DUT is connected to AP 2 upon resuming from suspend
Dcontrol.DisconnectBeforeSuspendSameAP21 1) AP ("AP 1") is brought up, and DUT connects to it
22 2) AP 1 is brought down, disconnecting the DUT from it
23 3) Another AP ("AP 2") is brought up, and DUT connects to it
24 4) AP 2 is brought down, disconnecting the DUT from it
26 6) AP 2 is brought up again
28 8) Verify that the DUT is connected to AP 2 upon resuming from suspend
Dcontrol.Stress20 1) AP ("AP 1") is brought up, and DUT connects to it
21 2) AP 1 is brought down, disconnecting the DUT from it
22 3) Another AP ("AP 2") is brought up, and DUT connects to it
23 4) DUT suspends while connected to AP 2
24 5) AP 2 is brought down, disconnecting the DUT from it while suspended
25 6) AP 2 is brought up again
28 9) Verify that the DUT is connected to AP 2 upon resuming from suspend
Dcontrol.DisconnectBeforeSuspendDiffAP21 1) AP ("AP 1") is brought up, and DUT connects to it
22 2) AP 1 is brought down, disconnecting the DUT from it
23 3) Another AP ("AP 2") is brought up, and DUT connects to it
24 4) AP 2 is brought down, disconnecting the DUT from it
26 6) AP 1 is brought up again
28 8) Verify that the DUT is connected to AP 1 upon resuming from suspend
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-WPS31 addition of new devices); this may be either in the AP ("internal
36 It should also be noted that the AP and a client device may change
37 roles (i.e., AP acts as an Enrollee and client device as a Registrar)
50 configure an AP.
119 AP to access the network.
132 When the wps_pin command is issued for an AP (including P2P GO) mode
147 a button is also pressed at the AP/Registrar at about the same time (2
153 At this point, the AP/Registrar has two minutes to complete WPS
159 current AP configuration and optionally, to configure an AP,
163 wpa_cli wps_reg <AP BSSID> <AP PIN>
[all …]
/external/cblas/testing/
Dc_dblas2.c364 double *A,*AP; in F77_dspmv() local
373 AP = ( double* )malloc( (((LDA+1)*LDA)/2)*sizeof( double ) ); in F77_dspmv()
380 AP[ k ]=A[ LDA*i+j ]; in F77_dspmv()
388 AP[ k ]=A[ LDA*i+j ]; in F77_dspmv()
390 cblas_dspmv( CblasRowMajor, uplo, *n, *alpha, AP, x, *incx, *beta, y, in F77_dspmv()
393 free(AP); in F77_dspmv()
402 double *A, *AP; in F77_dtpmv() local
415 AP = ( double* )malloc( (((LDA+1)*LDA)/2)*sizeof( double ) ); in F77_dtpmv()
422 AP[ k ]=A[ LDA*i+j ]; in F77_dtpmv()
430 AP[ k ]=A[ LDA*i+j ]; in F77_dtpmv()
[all …]
Dc_sblas2.c364 float *A,*AP; in F77_sspmv() local
373 AP = ( float* )malloc( (((LDA+1)*LDA)/2)*sizeof( float ) ); in F77_sspmv()
380 AP[ k ]=A[ LDA*i+j ]; in F77_sspmv()
388 AP[ k ]=A[ LDA*i+j ]; in F77_sspmv()
390 cblas_sspmv( CblasRowMajor, uplo, *n, *alpha, AP, x, *incx, *beta, y, in F77_sspmv()
392 free(A); free(AP); in F77_sspmv()
401 float *A, *AP; in F77_stpmv() local
414 AP = ( float* )malloc( (((LDA+1)*LDA)/2)*sizeof( float ) ); in F77_stpmv()
421 AP[ k ]=A[ LDA*i+j ]; in F77_stpmv()
429 AP[ k ]=A[ LDA*i+j ]; in F77_stpmv()
[all …]
Dc_cblas2.c243 CBLAS_TEST_COMPLEX *A, *AP; in F77_chpmv() local
255 AP = (CBLAS_TEST_COMPLEX* )malloc( (((LDA+1)*LDA)/2)* in F77_chpmv()
265 AP[ k ].real=A[ LDA*i+j ].real; in F77_chpmv()
266 AP[ k ].imag=A[ LDA*i+j ].imag; in F77_chpmv()
277 AP[ k ].real=A[ LDA*i+j ].real; in F77_chpmv()
278 AP[ k ].imag=A[ LDA*i+j ].imag; in F77_chpmv()
281 cblas_chpmv( CblasRowMajor, uplo, *n, alpha, AP, x, *incx, beta, y, in F77_chpmv()
284 free(AP); in F77_chpmv()
424 CBLAS_TEST_COMPLEX *A, *AP; in F77_ctpmv() local
440 AP=(CBLAS_TEST_COMPLEX*)malloc((((LDA+1)*LDA)/2)* in F77_ctpmv()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DMacOSKeychainAPIChecker.cpp98 void generateDeallocatorMismatchReport(const AllocationPair &AP,
107 const AllocationPair &AP, ExplodedNode *N, CheckerContext &C) const;
123 void markInteresting(BugReport *R, const AllocationPair &AP) const { in markInteresting()
124 R->markInteresting(AP.first); in markInteresting()
125 R->markInteresting(AP.second->Region); in markInteresting()
253 generateDeallocatorMismatchReport(const AllocationPair &AP, in generateDeallocatorMismatchReport() argument
257 State = State->remove<AllocatedData>(AP.first); in generateDeallocatorMismatchReport()
266 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx; in generateDeallocatorMismatchReport()
271 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport()
273 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport()
[all …]

123456789