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

1 2 3 4 5

  /frameworks/compile/mclinker/lib/Target/
Target.cpp 1 //===- Target.cpp ---------------------------------------------------------===//
10 #include <mcld/Target/TargetMachine.h>
12 #include <llvm/Target/TargetMachine.h>
16 mcld::Target::Target()
  /libcore/luni/src/main/java/java/lang/annotation/
Target.java 28 @Target(ElementType.ANNOTATION_TYPE)
29 public @interface Target {
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_VarSlope_SetTimeConstant.c 67 LVM_INT32 Target;
73 Target = LVC_Mixer_GetTarget( pStream );
75 if (Current != Target)
77 Tc_millisec = Tc_millisec * 32767 / (Current - Target);
LVC_Core_MixSoft_1St_D16C31_WRA.c 42 LVM_INT32 Target=pInstance->Target;
48 if(Current<Target){
52 if (Current > Target)
53 Current = Target;
65 if (Current > Target)
66 Current = Target;
79 if (Current < Target)
80 Current = Target;
91 if (Current < Target)
    [all...]
LVC_Mixer_Private.h 32 LVM_INT32 Target; /* 32 bit number specifying fractional value of Target Gain */
LVC_Core_MixInSoft_D16C31_SAT.c 42 LVM_INT32 Target=pInstance->Target;
48 if(Current<Target){
52 if (Current > Target)
53 Current = Target;
71 if (Current > Target)
72 Current = Target;
90 if (Current < Target)
91 Current = Target;
108 if (Current < Target)
    [all...]
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
69 void resetTarget(Target &targ);
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
10 // This just asks the TargetRegistry for the appropriate target to use, and
24 #include "llvm/Target/TargetMachine.h"
39 /// selectTarget - Pick a target either via -march or by guessing the native
50 const Target *TheTarget = 0;
82 // Package up features to be passed to target/subtarget
91 // Allocate a target...
92 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
97 assert(Target && "Could not allocate target machine!")
    [all...]
  /external/llvm/test/Bindings/Ocaml/
target.ml 33 (*===-- Target Data -------------------------------------------------------===*)
58 suite "target data" test_target_data;
  /libcore/luni/src/test/etc/loading-test-jar/
Target.java 22 public class Target {
26 public Target() {
TestMethods.java 87 new Target();
94 assertSame("blort", Target.blort());
101 Target.setStaticVariable(22);
102 assertSame(22, Target.staticVariable);
109 Target target = new Target(); local
110 assertSame("zorch", target.zorch());
117 Target target = new Target() local
165 Target2 target = new Target2(); local
173 Target2 target = new Target2(); local
    [all...]
  /external/llvm/include/llvm/ADT/
InMemoryStruct.h 32 /// \brief The smart pointer target.
33 value_type *Target;
35 /// \brief A temporary object which can be used as a target of the smart
42 InMemoryStruct() : Target(0) {}
43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {}
44 InMemoryStruct(pointer Value) : Target(Value) {}
48 if (Value.Target != &Value.Contents) {
49 Target = Value.Target;
51 Target = &Contents
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
AGC.h 46 LVM_INT32 Target; /* The target volume setting */
47 LVM_INT32 AGC_Target; /* AGC target level */
Mixer.h 36 LVM_INT32 Target; /* Target value. Set by calling application. Can be changed at any time */
38 LVM_INT16 CallbackSet; /* Boolean. Should be set by calling application each time the target value is updated */
  /external/clang/test/SemaCXX/
vtable-instantiation.cc 24 class Target
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/
PPConditionalDirectiveRecordTest.cpp 42 Target = TargetInfo::CreateTargetInfo(Diags, &*TargetOpts);
52 IntrusiveRefCntPtr<TargetInfo> Target;
93 Target.getPtr());
94 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts,Target.getPtr(),
LexerTest.cpp 42 Target = TargetInfo::CreateTargetInfo(Diags, &*TargetOpts);
52 IntrusiveRefCntPtr<TargetInfo> Target;
83 Target.getPtr());
84 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, Target.getPtr(),
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 36 Target,
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 76 if (const MemRegion *Target = Ctor->getCXXThisVal().getAsRegion())
77 recordFixedType(Target, Ctor->getDecl(), C);
89 const MemRegion *Target = Dtor->getCXXThisVal().getAsRegion();
90 if (!Target)
97 recordFixedType(Target, cast<CXXDestructorDecl>(D), C);
163 if (const MemRegion *Target = Ctor->getCXXThisVal().getAsRegion()) {
167 recordFixedType(Target, cast<CXXConstructorDecl>(D), C);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
PackedSwitchMethodItem.java 57 PackedSwitchDataPseudoInstruction.PackedSwitchTarget target = iterator.next(); local
61 LabelMethodItem label = new LabelMethodItem(baseCodeAddress + target.targetAddressOffset, "pswitch_");
63 packedSwitchLabelTarget.Target = label;
68 PackedSwitchDataPseudoInstruction.PackedSwitchTarget target = iterator.next(); local
72 packedSwitchOffsetTarget.Target = target.targetAddressOffset;
84 for (PackedSwitchTarget target: targets) {
85 target.writeTargetTo(writer);
98 public LabelMethodItem Target;
100 Target.writeTo(writer)
    [all...]
SparseSwitchMethodItem.java 56 SparseSwitchDataPseudoInstruction.SparseSwitchTarget target = iterator.next(); local
58 sparseSwitchLabelTarget.Key = target.key;
60 LabelMethodItem label = new LabelMethodItem(baseCodeAddress + target.targetAddressOffset, "sswitch_");
62 sparseSwitchLabelTarget.Target = label;
69 SparseSwitchDataPseudoInstruction.SparseSwitchTarget target = iterator.next(); local
71 sparseSwitchOffsetTarget.Key = target.key;
73 sparseSwitchOffsetTarget.Target = target.targetAddressOffset;
83 for (SparseSwitchTarget target: targets) {
84 IntegerRenderer.writeTo(writer, target.Key)
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
LDFileFormat.h 36 Target,
56 /// @param [in] pBitClass The bitclass of target backend.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 46 * The notion of a Code Generator target abstracts out the creation
48 * system, this target class may have to be altered to handle more
53 * Target base class is used. I am using a superclass rather than an
54 * interface for this target concept because I can add functionality
57 * target classes).
60 public class Target {
63 * it in the target language as a literal. Useful for dumping
66 * that the target language can hold them as a string.
69 * but your Target subclass is free to alter the translated chars or
70 * add more definitions. This is nonstatic so each target can hav
    [all...]
  /external/clang/include/clang/Lex/
ModuleMap.h 43 const TargetInfo *Target;
150 /// \param Target The target for this translation unit.
152 const LangOptions &LangOpts, const TargetInfo *Target,
159 /// \brief Set the target information.
160 void setTarget(const TargetInfo &Target);
  /external/clang/lib/CodeGen/
CodeGenTypes.h 64 const TargetInfo &Target;
114 const TargetInfo &getTarget() const { return Target; }
127 /// memory representation is usually i8 or i32, depending on the target.

Completed in 1574 milliseconds

1 2 3 4 5