Home
last modified time | relevance | path

Searched refs:Target (Results 1 – 25 of 201) sorted by relevance

123456789

/frameworks/base/core/java/com/android/internal/graphics/palette/
DTarget.java46 public final class Target { class
79 public static final Target LIGHT_VIBRANT;
84 public static final Target VIBRANT;
89 public static final Target DARK_VIBRANT;
94 public static final Target LIGHT_MUTED;
99 public static final Target MUTED;
104 public static final Target DARK_MUTED;
107 LIGHT_VIBRANT = new Target();
111 VIBRANT = new Target();
115 DARK_VIBRANT = new Target();
[all …]
DPalette.java151 private final List<Target> mTargets;
153 private final Map<Target, Palette.Swatch> mSelectedSwatches;
158 Palette(List<Palette.Swatch> swatches, List<Target> targets) { in Palette()
180 public List<Target> getTargets() { in getTargets()
191 return getSwatchForTarget(Target.VIBRANT); in getVibrantSwatch()
201 return getSwatchForTarget(Target.LIGHT_VIBRANT); in getLightVibrantSwatch()
211 return getSwatchForTarget(Target.DARK_VIBRANT); in getDarkVibrantSwatch()
221 return getSwatchForTarget(Target.MUTED); in getMutedSwatch()
231 return getSwatchForTarget(Target.LIGHT_MUTED); in getLightMutedSwatch()
241 return getSwatchForTarget(Target.DARK_MUTED); in getDarkMutedSwatch()
[all …]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
DLVC_MixSoft_1St_2i_D16C31_SAT.cpp102 if (pInstance1->Target <= LVM_VOL_BAL_THR || in LVC_MixSoft_1St_MC_float_SAT()
103 pInstance2->Target <= LVM_VOL_BAL_THR) in LVC_MixSoft_1St_MC_float_SAT()
105 Target_ctr.Target = 0.0f; in LVC_MixSoft_1St_MC_float_SAT()
131 if ((pInstance1->Current != pInstance1->Target) || in LVC_MixSoft_1St_MC_float_SAT()
132 (pInstance2->Current != pInstance2->Target)) in LVC_MixSoft_1St_MC_float_SAT()
136 || Abs_Float(pInstance1->Current - pInstance1->Target) < pInstance1->Delta) in LVC_MixSoft_1St_MC_float_SAT()
139 pInstance1->Current = pInstance1->Target; in LVC_MixSoft_1St_MC_float_SAT()
140 TargetGain = pInstance1->Target; in LVC_MixSoft_1St_MC_float_SAT()
152 || Abs_Float(pInstance2->Current - pInstance2->Target) < pInstance2->Delta) in LVC_MixSoft_1St_MC_float_SAT()
155 pInstance2->Current = pInstance2->Target; in LVC_MixSoft_1St_MC_float_SAT()
[all …]
DLVC_MixInSoft_D16C31_SAT.cpp51 if (pInstance->Current != pInstance->Target) in LVC_MixInSoft_D16C31_SAT()
54 pInstance->Current = pInstance->Target; in LVC_MixInSoft_D16C31_SAT()
55 TargetGain = pInstance->Target; in LVC_MixInSoft_D16C31_SAT()
57 }else if (Abs_Float(pInstance->Current - pInstance->Target) < pInstance->Delta){ in LVC_MixInSoft_D16C31_SAT()
58 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. \ in LVC_MixInSoft_D16C31_SAT()
60 TargetGain = pInstance->Target; in LVC_MixInSoft_D16C31_SAT()
74 if (pInstance->Target != 0){ /* Nothing to do in case Target = 0 */ in LVC_MixInSoft_D16C31_SAT()
75 if ((pInstance->Target) == 1.0f){ in LVC_MixInSoft_D16C31_SAT()
79 Mac3s_Sat_Float(src, (pInstance->Target), dst, n); in LVC_MixInSoft_D16C31_SAT()
81 pInstance->Current = pInstance->Target; in LVC_MixInSoft_D16C31_SAT()
[all …]
DLVC_MixSoft_1St_D16C31_SAT.cpp51 if (pInstance->Current != pInstance->Target) in LVC_MixSoft_1St_D16C31_SAT()
54 pInstance->Current = pInstance->Target; in LVC_MixSoft_1St_D16C31_SAT()
55 TargetGain = pInstance->Target; in LVC_MixSoft_1St_D16C31_SAT()
57 }else if (Abs_Float(pInstance->Current - pInstance->Target) < pInstance->Delta){ in LVC_MixSoft_1St_D16C31_SAT()
58 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. \ in LVC_MixSoft_1St_D16C31_SAT()
60 TargetGain = pInstance->Target; in LVC_MixSoft_1St_D16C31_SAT()
74 if (pInstance->Target == 0) in LVC_MixSoft_1St_D16C31_SAT()
77 if ((pInstance->Target) != 1.0f) in LVC_MixSoft_1St_D16C31_SAT()
78 Mult3s_Float(src, (pInstance->Target), dst, n); in LVC_MixSoft_1St_D16C31_SAT()
90 if (Abs_Float(pInstance->Current - pInstance->Target) < pInstance->Delta){ in LVC_MixSoft_1St_D16C31_SAT()
[all …]
DLVC_Core_MixSoft_1St_D16C31_WRA.cpp40 LVM_FLOAT Target= (LVM_FLOAT)pInstance->Target; in LVC_Core_MixSoft_1St_D16C31_WRA() local
46 if(Current<Target){ in LVC_Core_MixSoft_1St_D16C31_WRA()
56 if (Current > Target) in LVC_Core_MixSoft_1St_D16C31_WRA()
57 Current = Target; in LVC_Core_MixSoft_1St_D16C31_WRA()
74 if (Current > Target) in LVC_Core_MixSoft_1St_D16C31_WRA()
75 Current = Target; in LVC_Core_MixSoft_1St_D16C31_WRA()
86 if (Current < Target) in LVC_Core_MixSoft_1St_D16C31_WRA()
87 Current = Target; in LVC_Core_MixSoft_1St_D16C31_WRA()
96 if (Current < Target) in LVC_Core_MixSoft_1St_D16C31_WRA()
97 Current = Target; in LVC_Core_MixSoft_1St_D16C31_WRA()
[all …]
DLVC_Core_MixInSoft_D16C31_SAT.cpp40 LVM_FLOAT Target = pInstance->Target; in LVC_Core_MixInSoft_D16C31_SAT() local
46 if(Current < Target){ in LVC_Core_MixInSoft_D16C31_SAT()
50 if (Current > Target) in LVC_Core_MixInSoft_D16C31_SAT()
51 Current = Target; in LVC_Core_MixInSoft_D16C31_SAT()
67 if (Current > Target) in LVC_Core_MixInSoft_D16C31_SAT()
68 Current = Target; in LVC_Core_MixInSoft_D16C31_SAT()
84 if (Current < Target) in LVC_Core_MixInSoft_D16C31_SAT()
85 Current = Target; in LVC_Core_MixInSoft_D16C31_SAT()
100 if (Current < Target) in LVC_Core_MixInSoft_D16C31_SAT()
101 Current = Target; in LVC_Core_MixInSoft_D16C31_SAT()
[all …]
DMixInSoft_D32C31_SAT.cpp47 if (pInstance->Current != pInstance->Target) in MixInSoft_D32C31_SAT()
50 pInstance->Current = pInstance->Target; in MixInSoft_D32C31_SAT()
51 }else if ((pInstance->Current-pInstance->Target < POINT_ZERO_ONE_DB_FLOAT) && in MixInSoft_D32C31_SAT()
52 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB_FLOAT)){ in MixInSoft_D32C31_SAT()
53 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. \ in MixInSoft_D32C31_SAT()
67 if (pInstance->Target != 0){ /* Nothing to do in case Target = 0 */ in MixInSoft_D32C31_SAT()
68 if ((pInstance->Target) == 1.0f) in MixInSoft_D32C31_SAT()
72 pInstance->Current = pInstance->Target; /* In case the core function would \ in MixInSoft_D32C31_SAT()
85 if ((pInstance->Current - pInstance->Target < POINT_ZERO_ONE_DB_FLOAT) && in MixInSoft_D32C31_SAT()
86 (pInstance->Current - pInstance->Target > -POINT_ZERO_ONE_DB_FLOAT)){ in MixInSoft_D32C31_SAT()
[all …]
DMixSoft_1St_D32C31_WRA.cpp47 if (pInstance->Current != pInstance->Target) in MixSoft_1St_D32C31_WRA()
50 pInstance->Current = pInstance->Target; in MixSoft_1St_D32C31_WRA()
51 }else if ((pInstance->Current - pInstance->Target < POINT_ZERO_ONE_DB_FLOAT) && in MixSoft_1St_D32C31_WRA()
52 (pInstance->Current - pInstance->Target > -POINT_ZERO_ONE_DB_FLOAT)){ in MixSoft_1St_D32C31_WRA()
53 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. \ in MixSoft_1St_D32C31_WRA()
67 if (pInstance->Target == 0) in MixSoft_1St_D32C31_WRA()
69 else if ((pInstance->Target) == 1.0f){ in MixSoft_1St_D32C31_WRA()
82 if ((pInstance->Current - pInstance->Target < POINT_ZERO_ONE_DB_FLOAT) && in MixSoft_1St_D32C31_WRA()
83 (pInstance->Current - pInstance->Target > -POINT_ZERO_ONE_DB_FLOAT)){ in MixSoft_1St_D32C31_WRA()
84 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. \ in MixSoft_1St_D32C31_WRA()
DLVC_MixSoft_2St_D16C31_SAT.cpp44 if ((pInstance1->Current == pInstance1->Target) && (pInstance1->Current == 0)){ in LVC_MixSoft_2St_D16C31_SAT()
48 else if ((pInstance2->Current == pInstance2->Target) && (pInstance2->Current == 0)){ in LVC_MixSoft_2St_D16C31_SAT()
52 else if ((pInstance1->Current != pInstance1->Target) || \ in LVC_MixSoft_2St_D16C31_SAT()
53 (pInstance2->Current != pInstance2->Target)) in LVC_MixSoft_2St_D16C31_SAT()
106 if ((pInstance1->Current == pInstance1->Target) && (pInstance1->Current == 0)) { in LVC_MixSoft_2Mc_D16C31_SAT()
110 else if ((pInstance2->Current == pInstance2->Target) && (pInstance2->Current == 0)) { in LVC_MixSoft_2Mc_D16C31_SAT()
114 else if ((pInstance1->Current != pInstance1->Target) || \ in LVC_MixSoft_2Mc_D16C31_SAT()
115 (pInstance2->Current != pInstance2->Target)) in LVC_MixSoft_2Mc_D16C31_SAT()
DLVC_Mixer_VarSlope_SetTimeConstant.cpp70 LVM_FLOAT Target; in LVC_Mixer_VarSlope_SetTimeConstant() local
76 Target = pInstance->Target; in LVC_Mixer_VarSlope_SetTimeConstant()
78 if (Current != Target) in LVC_Mixer_VarSlope_SetTimeConstant()
80 Tc_millisec_float = (LVM_FLOAT)(Tc_millisec) / (Current - Target); in LVC_Mixer_VarSlope_SetTimeConstant()
DLVC_Core_MixSoft_1St_2i_D16C31_WRA.cpp57 LVM_FLOAT TargetL = pInstanceL->Target; in LVC_Core_MixSoft_1St_2i_D16C31_WRA()
61 LVM_FLOAT TargetR = pInstanceR->Target; in LVC_Core_MixSoft_1St_2i_D16C31_WRA()
169 const LVM_FLOAT Target = pInstance->Target; in LVC_Core_MixSoft_1St_MC_float_WRA() local
170 if (Current < Target) in LVC_Core_MixSoft_1St_MC_float_WRA()
174 if (Current > Target) in LVC_Core_MixSoft_1St_MC_float_WRA()
175 Current = Target; in LVC_Core_MixSoft_1St_MC_float_WRA()
180 if (Current < Target) in LVC_Core_MixSoft_1St_MC_float_WRA()
181 Current = Target; in LVC_Core_MixSoft_1St_MC_float_WRA()
/frameworks/compile/mclinker/include/mcld/Support/
DTargetRegistry.h32 typedef std::list<mcld::Target*> TargetListTy;
53 static void RegisterTarget(Target& pTarget,
55 Target::TripleMatchQualityFnTy pQualityFn);
62 static void RegisterEmulation(mcld::Target& T, in RegisterEmulation()
63 mcld::Target::EmulationFnTy Fn) { in RegisterEmulation()
73 static void RegisterTargetLDBackend(mcld::Target& T, in RegisterTargetLDBackend()
74 mcld::Target::TargetLDBackendCtorTy Fn) { in RegisterTargetLDBackend()
85 mcld::Target& T, in RegisterDiagnosticLineInfo()
86 mcld::Target::DiagnosticLineInfoCtorTy Fn) { in RegisterDiagnosticLineInfo()
95 static const mcld::Target* lookupTarget(const std::string& pTriple,
[all …]
DTarget.h14 class Target; variable
34 class Target {
41 typedef MCLDTargetMachine* (*TargetMachineCtorTy)(const llvm::Target&,
42 const mcld::Target&,
55 typedef DiagnosticLineInfo* (*DiagnosticLineInfoCtorTy)(const mcld::Target&,
59 Target();
68 const llvm::Target& pTarget,
86 const mcld::Target& pTarget,
/frameworks/compile/mclinker/lib/Support/
DTarget.cpp18 Target::Target() in Target() function in mcld::Target
27 unsigned int Target::getTripleQuality(const llvm::Triple& pTriple) const { in getTripleQuality()
33 MCLDTargetMachine* Target::createTargetMachine(const std::string& pTriple, in createTargetMachine()
34 const llvm::Target& pTarget, in createTargetMachine()
42 MCLinker* Target::createMCLinker(const std::string& pTriple, in createMCLinker()
53 bool Target::emulate(LinkerScript& pScript, LinkerConfig& pConfig) const { in emulate()
60 TargetLDBackend* Target::createLDBackend(const LinkerConfig& pConfig) const { in createLDBackend()
67 DiagnosticLineInfo* Target::createDiagnosticLineInfo( in createDiagnosticLineInfo()
68 const mcld::Target& pTarget, in createDiagnosticLineInfo()
DTargetRegistry.cpp18 void TargetRegistry::RegisterTarget(Target& pTarget, in RegisterTarget()
20 Target::TripleMatchQualityFnTy pQualityFn) { in RegisterTarget()
27 const Target* TargetRegistry::lookupTarget(const std::string& pTriple, in lookupTarget()
35 Target* best = NULL, * ambiguity = NULL; in lookupTarget()
65 const Target* TargetRegistry::lookupTarget(const std::string& pArchName, in lookupTarget()
68 const Target* result = NULL; in lookupTarget()
/frameworks/compile/mclinker/lib/Target/X86/
DX86.h14 class Target; variable
19 class Target; variable
22 extern mcld::Target TheX86_32Target;
23 extern mcld::Target TheX86_64Target;
25 TargetLDBackend* createX86LDBackend(const llvm::Target&, const std::string&);
/frameworks/compile/mclinker/lib/Target/ARM/
DARM.h14 class Target; variable
19 class Target; variable
22 extern mcld::Target TheARMTarget;
23 extern mcld::Target TheThumbTarget;
25 TargetLDBackend* createARMLDBackend(const llvm::Target&, const std::string&);
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagon.h14 class Target; variable
19 class Target; variable
22 extern mcld::Target TheHexagonTarget;
24 TargetLDBackend* createHexagonLDBackend(const llvm::Target&,
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64.h14 class Target; variable
19 class Target; variable
22 extern mcld::Target TheAArch64Target;
24 TargetLDBackend* createAArch64LDBackend(const llvm::Target&,
/frameworks/base/core/java/android/annotation/
DRequiresPermission.java26 import java.lang.annotation.Target;
80 @Target({ANNOTATION_TYPE,METHOD,CONSTRUCTOR,FIELD,PARAMETER})
119 @Target({FIELD, METHOD, PARAMETER})
132 @Target({FIELD, METHOD, PARAMETER})
/frameworks/compile/mclinker/lib/Target/Mips/
DMips.h14 class Target; variable
16 extern Target TheMipselTarget;
17 extern Target TheMips64elTarget;
/frameworks/base/core/java/android/view/inspector/
DInspectableProperty.java28 import java.lang.annotation.Target;
43 @Target({METHOD, FIELD})
113 @Target({TYPE})
138 @Target({TYPE})
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiAnnotations.java22 import java.lang.annotation.Target;
34 @Target({ElementType.METHOD, ElementType.FIELD})
44 @Target({ElementType.METHOD, ElementType.FIELD})
/frameworks/native/libs/renderengine/include/renderengine/
DTexture.h29 enum Target { TEXTURE_2D = 0x0DE1, TEXTURE_EXTERNAL = 0x8D65 }; enum
32 Texture(Target textureTarget, uint32_t textureName);
35 void init(Target textureTarget, uint32_t textureName);

123456789