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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/annotation/
Target.java 34 * <p>If an {@code @Target} meta-annotation is not present on an annotation type
38 * <p>If an {@code @Target} meta-annotation is present, the compiler will enforce
42 * <p>For example, this {@code @Target} meta-annotation indicates that the
46 * &#064;Target(ElementType.ANNOTATION_TYPE)
52 * <p>This {@code @Target} meta-annotation indicates that the declared type is
56 * &#064;Target({})
63 * appear more than once in an {@code @Target} annotation. For example, the
64 * following {@code @Target} meta-annotation is illegal:
66 * &#064;Target({ElementType.FIELD, ElementType.METHOD, ElementType.FIELD})
73 * @jls 9.6.4.1 @Target
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
TargetSelect.cpp 1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
20 #include "llvm/Target/TargetMachine.h"
27 /// selectTarget - Pick a target either via -march or by guessing the native
41 const Target *TheTarget = 0;
73 errs() << "WARNING: This target JIT is not designed for the host you are"
78 // Package up features to be passed to target/subtarget
87 // Allocate a target...
88 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
91 assert(Target && "Could not allocate target machine!")
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SubtargetEmitter.h 29 std::string Target;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_VarSlope_SetTimeConstant.c 82 LVM_FLOAT Target;
88 Target = pInstance->Target;
90 if (Current != Target)
92 Tc_millisec_float = (LVM_FLOAT)(Tc_millisec) / (Current - Target);
132 LVM_INT32 Target;
138 Target = LVC_Mixer_GetTarget( pStream );
140 if (Current != Target)
142 Tc_millisec = Tc_millisec * 32767 / (Current - Target);
LVC_Core_MixSoft_1St_D16C31_WRA.c 41 LVM_FLOAT Target= (LVM_FLOAT)pInstance->Target;
47 if(Current<Target){
57 if (Current > Target)
58 Current = Target;
75 if (Current > Target)
76 Current = Target;
87 if (Current < Target)
88 Current = Target;
97 if (Current < Target)
    [all...]
LVC_Mixer_Private.h 33 LVM_FLOAT Target; /*number specifying value of Target Gain */
41 LVM_INT32 Target; /* 32 bit number specifying fractional value of Target Gain */
  /external/skia/src/gpu/ops/
GrMeshDrawOp.h 29 class Target;
35 space for the vertices and flushes the draws to the GrMeshDrawOp::Target. */
41 void* init(Target*, size_t vertexStride, const GrBuffer*, int verticesPerRepetition,
44 /** Call after init() to issue draws to the GrMeshDrawOp::Target.*/
45 void recordDraw(Target*, const GrGeometryProcessor*, const GrPipeline*);
61 void* init(Target*, size_t vertexStride, int quadsToDraw);
72 virtual void onPrepareDraws(Target*) = 0;
76 class GrMeshDrawOp::Target {
78 virtual ~Target() {}
123 * Allocate space for a pipeline. The target ensures this pipeline lifetime is at leas
    [all...]
  /external/skqp/src/gpu/ops/
GrMeshDrawOp.h 27 class Target;
33 space for the vertices and flushes the draws to the GrMeshDrawOp::Target. */
39 void* init(Target*, size_t vertexStride, const GrBuffer*, int verticesPerRepetition,
42 /** Call after init() to issue draws to the GrMeshDrawOp::Target.*/
43 void recordDraw(Target*, const GrGeometryProcessor*, const GrPipeline*);
59 void* init(Target*, size_t vertexStride, int quadsToDraw);
70 virtual void onPrepareDraws(Target*) = 0;
74 class GrMeshDrawOp::Target {
76 virtual ~Target() {}
121 * Allocate space for a pipeline. The target ensures this pipeline lifetime is at leas
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
TargetTxtClassObject.py 2 # This file is used to define each component of Target.txt file
24 gDefaultTargetTxtFile = "target.txt"
28 # This class defined content used in file target.txt
31 # @param Filename: Input value for full path of target.txt
33 # @var TargetTxtDictionary: To store keys and values defined in target.txt
53 # Load target.txt file and parse it, return a set structure to store keys and values
55 # @param Filename: Input value for full path of target.txt
64 EdkLogger.error("Target.txt Parser", FILE_NOT_FOUND, ExtraData=Filename)
169 # Load target.txt in input Conf dir
173 # @retval Target An instance of TargetTxtClassObject() with loaded target.txt
    [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;
66 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
23 #include "llvm/Target/TargetMachine.h"
38 /// selectTarget - Pick a target either via -march or by guessing the native
49 const Target *TheTarget = nullptr;
53 [&](const Target &T) { return MArch == T.getName(); });
79 // Package up features to be passed to target/subtarget
95 // Allocate a target...
96 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
101 assert(Target && "Could not allocate target machine!")
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Target.cpp 1 //===- Target.cpp ---------------------------------------------------------===//
9 #include "mcld/Support/Target.h"
16 // Target
18 Target::Target()
27 unsigned int Target::getTripleQuality(const llvm::Triple& pTriple) const {
33 MCLDTargetMachine* Target::createTargetMachine(const std::string& pTriple,
34 const llvm::Target& pTarget,
41 /// createMCLinker - create target-specific MCLinker
42 MCLinker* Target::createMCLinker(const std::string& pTriple
    [all...]
  /libcore/luni/src/test/etc/loading-test-jar/
Target.java 22 public class Target {
26 public Target() {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);

Completed in 1103 milliseconds

1 2 3 4 5 6 7 8 91011>>