Searched defs:Target (Results 1 - 25 of 144) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dmath-cordic.js52 var Target = 28.027; variable
54 function cordicsincos(Target) {
64 TargetAngle = FIXED(Target);
92 total += cordicsincos(Target);
/external/clang/include/clang/ARCMigrate/
H A DFileRemapper.h35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target; typedef in class:clang::arcmt::FileRemapper
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
68 void resetTarget(Target &targ);
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DAMDGPUELFObjectWriter.cpp22 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup, argument
/external/llvm/test/Bindings/Ocaml/
H A Dtarget.ml33 (*===-- Target Data -------------------------------------------------------===*)
0 (* RUN: %ocamlopt -warn-error A llvm.cmxa llvm_target.cmxa %s -o %t module
/external/chromium_org/tools/gn/
H A Dtarget.cc12 void TargetResolvedThunk(const base::Callback<void(const Target*)>& cb,
13 const Target* t) {
19 Target::Target(const Settings* settings, const Label& label) function in class:Target
27 Target::~Target() {
30 Target* Target::AsTarget() {
34 const Target* Target
[all...]
/external/chromium_org/content/browser/renderer_host/media/
H A Daudio_mirroring_manager.h91 typedef std::pair<int, int> Target; typedef in class:content::AudioMirroringManager
94 typedef std::multimap<Target, Diverter*> DiverterMap;
95 typedef std::map<Target, MirroringDestination*> SessionMap;
/external/chromium_org/third_party/skia/include/lazy/
H A DSkBitmapFactory.h27 struct Target { struct in class:SkBitmapFactory
42 typedef bool (*DecodeProc)(const void* data, size_t length, SkImage::Info*, const Target*);
/external/clang/lib/AST/
H A DItaniumCXXABI.cpp38 const TargetInfo &Target = Context.getTargetInfo(); local
39 TargetInfo::IntType PtrDiff = Target.getPtrDiffType(0);
40 uint64_t Width = Target.getTypeWidth(PtrDiff);
41 unsigned Align = Target.getTypeAlign(PtrDiff);
H A DMicrosoftCXXABI.cpp163 const TargetInfo &Target = Context.getTargetInfo(); local
164 assert(Target.getTriple().getArch() == llvm::Triple::x86 ||
165 Target.getTriple().getArch() == llvm::Triple::x86_64);
170 unsigned PtrSize = Target.getPointerWidth(0);
171 unsigned IntSize = Target.getIntWidth();
173 unsigned Align = Ptrs > 0 ? Target.getPointerAlign(0) : Target.getIntAlign();
/external/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
24 #include "llvm/Target/TargetMachine.h"
50 const Target *TheTarget = 0;
100 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(), local
105 assert(Target && "Could not allocate target machine!");
106 return Target;
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFObjectWriter.cpp31 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
46 unsigned AArch64ELFObjectWriter::GetRelocType(const MCValue &Target, argument
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFObjectWriter.cpp32 virtual unsigned getRelocType(const MCValue &Target,
45 unsigned X86WinCOFFObjectWriter::getRelocType(const MCValue &Target, argument
50 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
51 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
H A DX86ELFObjectWriter.cpp27 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
42 unsigned X86ELFObjectWriter::GetRelocType(const MCValue &Target, argument
49 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
50 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
/external/skia/include/lazy/
H A DSkBitmapFactory.h27 struct Target { struct in class:SkBitmapFactory
42 typedef bool (*DecodeProc)(const void* data, size_t length, SkImage::Info*, const Target*);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
H A DPackedSwitchMethodItem.java63 packedSwitchLabelTarget.Target = label;
72 packedSwitchOffsetTarget.Target = target.targetAddressOffset;
98 public LabelMethodItem Target; field in class:PackedSwitchMethodItem.PackedSwitchLabelTarget
100 Target.writeTo(writer);
105 public int Target; field in class:PackedSwitchMethodItem.PackedSwitchOffsetTarget
107 if (Target >= 0) {
110 writer.printSignedIntAsDec(Target);
H A DSparseSwitchMethodItem.java62 sparseSwitchLabelTarget.Target = label;
73 sparseSwitchOffsetTarget.Target = target.targetAddressOffset;
100 public LabelMethodItem Target; field in class:SparseSwitchMethodItem.SparseSwitchLabelTarget
102 Target.writeTo(writer);
107 public int Target; field in class:SparseSwitchMethodItem.SparseSwitchOffsetTarget
109 if (Target >= 0) {
112 writer.printSignedIntAsDec(Target);
/external/clang/lib/Basic/
H A DBuiltins.cpp43 void Builtin::Context::InitializeTarget(const TargetInfo &Target) { argument
45 Target.getTargetBuiltins(TSRecords, NumTSRecords);
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cc24 class Target class in namespace:PR9325
36 static Target<T> Instance;
40 Target<T> Provider<T>::Instance; // expected-note{{in instantiation of}}
44 Target<int*>* traits = &Provider<int*>::Instance;
/external/clang/unittests/Lex/
H A DPPConditionalDirectiveRecordTest.cpp42 Target = TargetInfo::CreateTargetInfo(Diags, &*TargetOpts);
52 IntrusiveRefCntPtr<TargetInfo> Target; member in class:__anon16680::PPConditionalDirectiveRecordTest
94 Target.getPtr());
95 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts,Target.getPtr(),
/external/llvm/include/llvm/MC/
H A DMCAsmBackend.h92 /// @name Target Fixup Interfaces
101 /// processFixupValue - Target hook to adjust the literal value of a fixup
107 MCValue &Target, uint64_t &Value,
120 /// @name Target Relaxation Interfaces
129 /// fixupNeedsRelaxation - Target specific predicate for whether a given
104 processFixupValue(const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFixup &Fixup, const MCFragment *DF, MCValue &Target, uint64_t &Value, bool &IsResolved) argument
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h34 static bool HandleDirective(MCAsmParserExtension *Target, argument
37 T *Obj = static_cast<T*>(Target);
/external/llvm/lib/MC/
H A DMCELFObjectTargetWriter.cpp1 //===-- MCELFObjectTargetWriter.cpp - ELF Target Writer Subclass ----------===//
28 const MCValue &Target,
35 const MCSymbol *MCELFObjectTargetWriter::undefinedExplicitRelSym(const MCValue &Target, argument
38 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
27 ExplicitRelSym(const MCAssembler &Asm, const MCValue &Target, const MCFragment &F, const MCFixup &Fixup, bool IsPCRel) const argument
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFObjectWriter.cpp27 unsigned GetRelocTypeInner(const MCValue &Target,
37 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
41 const MCValue &Target,
63 const MCValue &Target,
67 const MCSymbol &Symbol = Target.getSymA()->getSymbol().AliasedSymbol();
74 RelocType = GetRelocTypeInner(Target, Fixup, IsPCRel);
77 const MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
79 Kind2 = Target.getSymB() ? Target.getSymB()->getKind() :
145 unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target, argument
62 ExplicitRelSym(const MCAssembler &Asm, const MCValue &Target, const MCFragment &F, const MCFixup &Fixup, bool IsPCRel) const argument
153 GetRelocTypeInner(const MCValue &Target, const MCFixup &Fixup, bool IsPCRel) const argument
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp27 virtual unsigned getRelocTypeInner(const MCValue &Target,
30 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
34 const MCValue &Target,
38 virtual const MCSymbol *undefinedExplicitRelSym(const MCValue &Target,
52 unsigned PPCELFObjectWriter::getRelocTypeInner(const MCValue &Target, argument
56 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
57 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
357 unsigned PPCELFObjectWriter::GetRelocType(const MCValue &Target, argument
362 return getRelocTypeInner(Target, Fixup, IsPCRel);
366 const MCValue &Target,
365 ExplicitRelSym(const MCAssembler &Asm, const MCValue &Target, const MCFragment &F, const MCFixup &Fixup, bool IsPCRel) const argument
394 undefinedExplicitRelSym(const MCValue &Target, const MCFixup &Fixup, bool IsPCRel) const argument
[all...]
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCObjectWriter.cpp27 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
31 const MCValue &Target,
88 unsigned SystemZObjectWriter::GetRelocType(const MCValue &Target, argument
93 MCSymbolRefExpr::VariantKind Modifier = (Target.isAbsolute() ?
95 Target.getSymA()->getKind());
122 const MCValue &Target,
129 if (!Target.isAbsolute() &&
130 Target.getSymA()->getKind() != MCSymbolRefExpr::VK_None &&
132 return &Target.getSymA()->getSymbol().AliasedSymbol();
121 ExplicitRelSym(const MCAssembler &Asm, const MCValue &Target, const MCFragment &F, const MCFixup &Fixup, bool IsPCRel) const argument

Completed in 796 milliseconds

123456