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

1 2 3 4 5 6 7 8

  /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...]
  /frameworks/compile/mclinker/lib/Support/
Target.cpp 1 //===- Target.cpp ---------------------------------------------------------===//
9 #include <mcld/Support/Target.h>
15 // Target
17 Target::Target()
26 unsigned int Target::getTripleQuality(const llvm::Triple& pTriple) const
34 Target::createTargetMachine(const std::string& pTriple,
35 const llvm::Target& pTarget,
43 /// createMCLinker - create target-specific MCLinker
45 Target::createMCLinker(const std::string &pTriple
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Target.js 12 * @param {function(?WebInspector.Target)=} callback
14 WebInspector.Target = function(name, connection, callback)
20 this._id = WebInspector.Target._nextId++;
27 this.pageAgent().canScreencast(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanScreencast, null));
28 this.pageAgent().canEmulate(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanEmulate, null));
30 this.powerAgent().canProfilePower(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanProfilePower, null));
31 this.workerAgent().canInspectWorkers(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanInspectWorkers, this._loadedWithCapabilities.bind(this, callback)));
39 WebInspector.Target.Capabilities = {
47 WebInspector.Target._nextId = 1;
49 WebInspector.Target.prototype =
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
math-cordic.js 52 var Target = 28.027;
54 function cordicsincos(Target) {
64 TargetAngle = FIXED(Target);
92 total += cordicsincos(Target);
  /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/bindings/ocaml/target/
llvm_target.mli 10 (** Target Information.
12 This interface provides an OCaml API for LLVM target information,
13 the classes in the Target library. *)
70 (** [add_to_pass_manager dl pm] adds the target data [dl] to
76 (** Returns the byte order of a target, either [Endian.Big] or
81 (** Returns the pointer size in bytes for a target.
85 (** Returns the integer type that is the same size as a pointer on a target.
89 (** Returns the pointer size in bytes for a target in a given address space.
93 (** Returns the integer type that is the same size as a pointer on a target
98 (** Computes the size of a type in bits for a target
    [all...]
  /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 = nullptr;
82 // Package up features to be passed to target/subtarget
99 // Allocate a target...
100 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
105 assert(Target && "Could not allocate target machine!")
    [all...]
  /libcore/luni/src/test/etc/loading-test-jar/
Target.java 22 public class Target {
26 public Target() {
  /external/chromium_org/content/browser/devtools/
devtools_tracing_handler.h 27 enum Target { Browser, Renderer };
28 explicit DevToolsTracingHandler(Target target);
58 Target target_;
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 57 const TargetInfo &Target = Context.getTargetInfo();
58 TargetInfo::IntType PtrDiff = Target.getPtrDiffType(0);
59 uint64_t Width = Target.getTypeWidth(PtrDiff);
60 unsigned Align = Target.getTypeAlign(PtrDiff);
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
Target.java 1 package com.bumptech.glide.request.target;
10 * @param <R> The type of resource the target can display.
12 public interface Target<R> {
15 * A callback that must be called when the target has determined its size. For fixed size targets it can
37 * A method to retrieve the size of this target
38 * @param cb The callback that must be called when the size of the target has been determined
  /external/llvm/lib/Support/
Unicode.cpp 352 UTF32 *Target = &buf[0];
353 if (conversionOK != ConvertUTF8toUTF32(&Start, Start + Length, &Target,
354 Target + 1, strictConversion))
  /external/llvm/tools/lli/
RemoteMemoryManager.h 48 // have allocated locally but have not yet remapped for the remote target.
50 // these sections into the remote target.
53 // This map tracks the sections we have remapped for the remote target
54 // but have not yet copied to the target.
59 // the generated code is moved to the remote target.
63 RemoteTarget *Target;
66 RemoteMemoryManager() : Target(nullptr) {}
95 void setRemoteTarget(RemoteTarget *T) { Target = T; }
  /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 */
  /frameworks/native/services/surfaceflinger/RenderEngine/
Texture.h 34 enum Target { TEXTURE_2D = 0x0DE1, TEXTURE_EXTERNAL = 0x8D65 };
37 Texture(Target textureTarget, uint32_t textureName);
40 void init(Target textureTarget, uint32_t textureName);
  /external/chromium_org/tools/gn/
target.cc 5 #include "tools/gn/target.h"
20 // Merges the public configs from the given target to the given config list.
21 void MergePublicConfigsFrom(const Target* from_target,
29 // target given in *all_dest.
30 void MergeAllDependentConfigsFrom(const Target* from_target,
41 Err MakeTestOnlyError(const Target* from, const Target* to) {
52 Err MakeStaticLibDepsError(const Target* from, const Target* to) {
67 Target::Target(const Settings* settings, const Label& label
    [all...]
  /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 41 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
51 IntrusiveRefCntPtr<TargetInfo> Target;
98 Target.get());
103 PP.Initialize(*Target);
  /external/llvm/test/Bindings/Ocaml/
target.ml 4 * RUN: %ocamlopt -g -warn-error A llvm.cmxa llvm_target.cmxa llvm_executionengine.cmxa %t.builddir/target.ml -o %t
38 let target = Target.by_triple (Target.default_triple ()) var
40 let machine = TargetMachine.create (Target.default_triple ()) target
69 (*===-- Target ------------------------------------------------------------===*)
72 let module T = Target in
73 ignore (T.succ target);
74 ignore (T.name target);
    [all...]
  /frameworks/base/libs/hwui/
Query.h 45 enum Target {
59 * Creates a new query with the specified target. The default
60 * target is kTargetSamples (of GL_ANY_SAMPLES_PASSED in OpenGL.)
62 Query(Target target = kTargetSamples): mActive(false), mTarget(target),
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 33 Target,

Completed in 2988 milliseconds

1 2 3 4 5 6 7 8